diff options
-rw-r--r-- | setuptools/command/build_py.py | 2 | ||||
-rw-r--r-- | setuptools/msvc.py | 1 | ||||
-rwxr-xr-x | setuptools/sandbox.py | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/setuptools/command/build_py.py b/setuptools/command/build_py.py index b5de9bda..289e6fb8 100644 --- a/setuptools/command/build_py.py +++ b/setuptools/command/build_py.py @@ -14,8 +14,8 @@ from setuptools.extern.six.moves import map, filter, filterfalse try: from setuptools.lib2to3_ex import Mixin2to3 except ImportError: - class Mixin2to3: + class Mixin2to3: def run_2to3(self, files, doctests=True): "do nothing" diff --git a/setuptools/msvc.py b/setuptools/msvc.py index ef85f64a..447ddb38 100644 --- a/setuptools/msvc.py +++ b/setuptools/msvc.py @@ -761,6 +761,7 @@ class EnvironmentInfo: vc_min_ver: float Minimum Microsoft Visual C++ version. """ + # Variables and properties in this class use originals CamelCase variables # names from Microsoft source files for more easy comparaison. diff --git a/setuptools/sandbox.py b/setuptools/sandbox.py index 53ce1551..39afd57e 100755 --- a/setuptools/sandbox.py +++ b/setuptools/sandbox.py @@ -290,6 +290,7 @@ class AbstractSandbox: if self._active: src, dst = self._remap_pair(name, src, dst, *args, **kw) return original(src, dst, *args, **kw) + return wrap for name in ["rename", "link", "symlink"]: |