summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorPhillip J. Eby <pje@telecommunity.com>2006-04-24 20:53:13 (GMT)
committerPhillip J. Eby <pje@telecommunity.com>2006-04-24 20:53:13 (GMT)
commit0a07ab97c5e62fd1ebbea44bc81f55113dec7080 (patch)
treef0a9064d4a3be45e0f6566519d9f22095ccf0ccb /Lib/test
parent0a7ed8c2d393e695fcb5a010926fa71eaca6c042 (diff)
downloadcpython-0a07ab97c5e62fd1ebbea44bc81f55113dec7080.zip
cpython-0a07ab97c5e62fd1ebbea44bc81f55113dec7080.tar.gz
cpython-0a07ab97c5e62fd1ebbea44bc81f55113dec7080.tar.bz2
Revert addition of setuptools
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_setuptools.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/Lib/test/test_setuptools.py b/Lib/test/test_setuptools.py
deleted file mode 100644
index a988303..0000000
--- a/Lib/test/test_setuptools.py
+++ /dev/null
@@ -1,16 +0,0 @@
-"""Tests for setuptools.
-
-The tests for setuptools are defined in the setuptools.tests package;
-this runs them from there.
-"""
-
-import test.test_support
-from setuptools.command.test import ScanningLoader
-
-def test_main():
- test.test_support.run_suite(
- ScanningLoader().loadTestsFromName('setuptools.tests')
- )
-
-if __name__ == "__main__":
- test_main()