diff options
| author | Erik Bray <embray@stsci.edu> | 2012-09-06 15:51:09 -0400 |
|---|---|---|
| committer | Erik Bray <embray@stsci.edu> | 2012-09-06 15:51:09 -0400 |
| commit | d847dbfeee2b2c85d7bc0a66813c33836a9850fa (patch) | |
| tree | cf4b50b5a36018e59664e0a3b0ab6866db53c461 /setuptools/tests/__init__.py | |
| parent | 9ebbe014df37c19976a5a9cb0ac2fa228a03144a (diff) | |
| download | python-setuptools-git-d847dbfeee2b2c85d7bc0a66813c33836a9850fa.tar.gz | |
Adds a fix for issue #318, including a regression test. This also fixes another test that was passing trivially due to *bug* in yet another test, ugh
--HG--
branch : distribute
extra : rebase_source : 476550766b7b756dced040ad4356b7685d6f062a
Diffstat (limited to 'setuptools/tests/__init__.py')
| -rw-r--r-- | setuptools/tests/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/__init__.py b/setuptools/tests/__init__.py index eec76efd..b6988a08 100644 --- a/setuptools/tests/__init__.py +++ b/setuptools/tests/__init__.py @@ -38,7 +38,7 @@ def makeSetup(**args): try: return setuptools.setup(**args) finally: - distutils.core_setup_stop_after = None + distutils.core._setup_stop_after = None class DependsTests(unittest.TestCase): |
