Mercurial > public > mercurial-scm > hg-stable
diff setup.py @ 41768:aaad36b88298
cleanup: use () to wrap long lines instead of \
This is a little less brittle, and often helps indentation. In a
surprising number of cases the entire cleanup was deleting the \, as
the expression was *already* parenthesized in a workable way.
Differential Revision: https://phab.mercurial-scm.org/D5993
author | Augie Fackler <augie@google.com> |
---|---|
date | Wed, 20 Feb 2019 19:28:51 -0500 |
parents | 0f64091cc851 |
children | d80d48928eb1 |
line wrap: on
line diff
--- a/setup.py Sun Jan 13 20:13:22 2019 -0500 +++ b/setup.py Wed Feb 20 19:28:51 2019 -0500 @@ -437,10 +437,9 @@ pure = False cffi = ispypy - global_options = Distribution.global_options + \ - [('pure', None, "use pure (slow) Python " - "code instead of C extensions"), - ] + global_options = Distribution.global_options + [ + ('pure', None, "use pure (slow) Python code instead of C extensions"), + ] def has_ext_modules(self): # self.ext_modules is emptied in hgbuildpy.finalize_options which is