diff options
| author | Tim Peters <tim.peters@gmail.com> | 2006-04-18 17:32:12 (GMT) |
|---|---|---|
| committer | Tim Peters <tim.peters@gmail.com> | 2006-04-18 17:32:12 (GMT) |
| commit | 584b0e0c3d27dc6b576366368bf7ca2f60e69e7c (patch) | |
| tree | f2e33dbae88a59b367819920a5c4a2260f080788 /Lib/setuptools/__init__.py | |
| parent | 17a35f906c29e71510d749283b381d95a5de0316 (diff) | |
| download | cpython-584b0e0c3d27dc6b576366368bf7ca2f60e69e7c.zip cpython-584b0e0c3d27dc6b576366368bf7ca2f60e69e7c.tar.gz cpython-584b0e0c3d27dc6b576366368bf7ca2f60e69e7c.tar.bz2 | |
Whilespace normalization (reindint.py).
Diffstat (limited to 'Lib/setuptools/__init__.py')
| -rw-r--r-- | Lib/setuptools/__init__.py | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/Lib/setuptools/__init__.py b/Lib/setuptools/__init__.py index 57e364e..3921ce2 100644 --- a/Lib/setuptools/__init__.py +++ b/Lib/setuptools/__init__.py @@ -40,7 +40,7 @@ def find_packages(where='.', exclude=()): return out setup = distutils.core.setup - + _Command = _get_unpatched(_Command) class Command(_Command): @@ -53,7 +53,7 @@ class Command(_Command): _Command.__init__(self,dist) for k,v in kw.items(): setattr(self,k,v) - + def reinitialize_command(self, command, reinit_subcommands=0, **kw): cmd = _Command.reinitialize_command(self, command, reinit_subcommands) for k,v in kw.items(): @@ -62,21 +62,3 @@ class Command(_Command): import distutils.core distutils.core.Command = Command # we can't patch distutils.cmd, alas - - - - - - - - - - - - - - - - - - |
