aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2017-10-11 09:13:50 +0200
committerJason R. Coombs <jaraco@jaraco.com>2017-10-11 09:13:50 +0200
commit2a7ad18393a8cc8d7ebf5d0df77de0715c964acf (patch)
treeda2606e2031ad6cce62af5747bf9114e2481a889 /setuptools
parent14ea4d1487ec70efe31f34169b74347f50e0654a (diff)
downloadexternal_python_setuptools-2a7ad18393a8cc8d7ebf5d0df77de0715c964acf.tar.gz
external_python_setuptools-2a7ad18393a8cc8d7ebf5d0df77de0715c964acf.tar.bz2
external_python_setuptools-2a7ad18393a8cc8d7ebf5d0df77de0715c964acf.zip
Remove excess whitespace
Diffstat (limited to 'setuptools')
-rw-r--r--setuptools/pep517.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/pep517.py b/setuptools/pep517.py
index 5f6b992d..c8d4b493 100644
--- a/setuptools/pep517.py
+++ b/setuptools/pep517.py
@@ -12,7 +12,7 @@ than calling "setup.py" directly, the frontend should:
2. Import this module into a safe python interpreter (one in which
setuptools can potentially set global variables or crash hard).
3. Call one of the functions defined in PEP 517.
-
+
What each function does is defined in PEP 517. However, here is a "casual"
definition of the functions (this definition should not be relied on for
bug reports or API stability):
@@ -41,7 +41,7 @@ SETUPTOOLS_IMPLEMENTATION_REVISION = 0.1
def _run_setup(setup_script='setup.py'): #
# Note that we can reuse our build directory between calls
- # Correctness comes first, then optimization later
+ # Correctness comes first, then optimization later
__file__=setup_script
f=getattr(tokenize, 'open', open)(__file__)
code=f.read().replace('\\r\\n', '\\n')