summaryrefslogtreecommitdiff
path: root/Lib/test/test___all__.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-11-16 16:17:49 +0000
committerRaymond Hettinger <python@rcn.com>2003-11-16 16:17:49 +0000
commit7fe2418a28fa9ae9163ed79cfd9c65bd3ab55f1d (patch)
treea202c820cddb022ecc66257bfc0352bc053bc4fb /Lib/test/test___all__.py
parent60da9c3cbdef6f198a525b5b3dac33449e0442c7 (diff)
downloadcpython-7fe2418a28fa9ae9163ed79cfd9c65bd3ab55f1d.tar.gz
* Migrate set() and frozenset() from the sandbox.
* Install the unittests, docs, newsitem, include file, and makefile update. * Exercise the new functions whereever sets.py was being used. Includes the docs for libfuncs.tex. Separate docs for the types are forthcoming.
Diffstat (limited to 'Lib/test/test___all__.py')
-rw-r--r--Lib/test/test___all__.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/test/test___all__.py b/Lib/test/test___all__.py
index 99eaa591ba..0370c1a397 100644
--- a/Lib/test/test___all__.py
+++ b/Lib/test/test___all__.py
@@ -2,7 +2,6 @@ import unittest
from test import test_support
from test.test_support import verify, verbose
-from sets import Set
import sys
import warnings
@@ -43,8 +42,8 @@ class AllTest(unittest.TestCase):
exec "from %s import *" % modname in names
if names.has_key("__builtins__"):
del names["__builtins__"]
- keys = Set(names)
- all = Set(sys.modules[modname].__all__)
+ keys = set(names)
+ all = set(sys.modules[modname].__all__)
verify(keys==all, "%s != %s" % (keys, all))
def test_all(self):