removed __all__ from several modules

This commit is contained in:
Skip Montanaro 2001-02-18 03:30:53 +00:00
parent 1ca2ed35e0
commit 78349072f7
16 changed files with 0 additions and 63 deletions

View file

@ -1,7 +1,5 @@
"""A multi-producer, multi-consumer queue."""
__all__ = ["Queue","Empty","Full"]
class Empty(Exception):
"Exception raised by Queue.get(block=0)/get_nowait()."
pass

View file

@ -1,7 +1,5 @@
"""A more or less complete user-defined wrapper around dictionary objects."""
__all__ = ["UserDict"]
class UserDict:
def __init__(self, dict=None):
self.data = {}

View file

@ -1,7 +1,5 @@
"""A more or less complete user-defined wrapper around list objects."""
__all__ = ["UserList"]
class UserList:
def __init__(self, initlist=None):
self.data = []

View file

@ -42,8 +42,6 @@
"""
__all__ = ["error","open"]
try:
class error(Exception):
pass

View file

@ -1,7 +1,5 @@
"""Bisection algorithms."""
__all__ = ["bisect_right","insort_right","bisect_left","insort_left"]
def insort_right(a, x, lo=0, hi=None):
"""Insert item x in list a, and keep it sorted assuming a is sorted.

View file

@ -48,8 +48,6 @@
default is 1, i.e. aligned.
"""
__all__ = ["Chunk"]
class Chunk:
def __init__(self, file, align = 1, bigendian = 1, inclheader = 0):
import struct

View file

@ -24,8 +24,6 @@
_os = __import__('os')
import __builtin__
__all__ = ["open"]
_open = __builtin__.open
_BLOCKSIZE = 512

View file

@ -1,7 +1,5 @@
"""HTML character entity references."""
__all__ = ["entitydefs"]
entitydefs = {
'AElig': '\306', # latin capital letter AE = latin capital ligature AE, U+00C6 ISOlat1
'Aacute': '\301', # latin capital letter A with acute, U+00C1 ISOlat1

View file

@ -12,8 +12,6 @@
for lock, where a function is called once the lock is aquired.
"""
__all__ = ["mutex"]
class mutex:
def __init__(self):
"""Create a new mutex -- initially unlocked."""

View file

@ -1,7 +1,5 @@
"""Convert a NT pathname to a file URL and vice versa."""
__all__ = ["url2pathname"]
def url2pathname(url):
r"""Convert a URL to a DOS path.

View file

@ -53,8 +53,6 @@
query only
"""
__all__ = ["open","fileopen","SEEK_SET","SEEK_CUR","SEEK_END"]
class _posixfile_:
"""File wrapper class that provides extra POSIX file routines."""

View file

@ -51,9 +51,3 @@
RE_SYNTAX_EMACS = 0
# (Python's obsolete "regexp" module used a syntax similar to awk.)
__all__ = locals().keys()
for _i in range(len(__all__)-1,-1,-1):
if __all__[_i][0] == "_":
del __all__[_i]
del _i

View file

@ -84,9 +84,3 @@ def S_ISSOCK(mode):
S_IROTH = 00004
S_IWOTH = 00002
S_IXOTH = 00001
__all__ = locals().keys()
for _i in range(len(__all__)-1,-1,-1):
if __all__[_i][0] == "_":
del __all__[_i]
del _i

View file

@ -13,9 +13,3 @@
F_FAVAIL = 7 # Free nodes available to non-superuser
F_FLAG = 8 # Flags (see your local statvfs man page)
F_NAMEMAX = 9 # Maximum file name length
__all__ = locals().keys()
for _i in range(len(__all__)-1,-1,-1):
if __all__[_i][0] == "_":
del __all__[_i]
del _i

View file

@ -379,9 +379,3 @@ def replace(s, old, new, maxsplit=-1):
letters = lowercase + uppercase
except ImportError:
pass # Use the original versions
__all__ = locals().keys()
for _i in range(len(__all__)-1,-1,-1):
if __all__[_i][0] == "_":
del __all__[_i]
del _i

View file

@ -39,29 +39,22 @@ def check_all(modname):
verify(keys==all, "%s != %s" % (keys, all))
check_all("BaseHTTPServer")
check_all("Bastion")
check_all("CGIHTTPServer")
check_all("ConfigParser")
check_all("Cookie")
check_all("MimeWriter")
check_all("Queue")
check_all("SimpleHTTPServer")
check_all("SocketServer")
check_all("StringIO")
check_all("UserDict")
check_all("UserList")
check_all("UserString")
check_all("aifc")
check_all("anydbm")
check_all("atexit")
check_all("audiodev")
check_all("base64")
check_all("bdb")
check_all("binhex")
check_all("bisect")
check_all("calendar")
check_all("cgi")
check_all("chunk")
check_all("cmd")
check_all("code")
check_all("codecs")
@ -76,7 +69,6 @@ def check_all(modname):
check_all("dis")
check_all("doctest")
check_all("dospath")
check_all("dumbdbm")
check_all("filecmp")
check_all("fileinput")
check_all("fnmatch")
@ -88,7 +80,6 @@ def check_all(modname):
check_all("glob")
check_all("gopherlib")
check_all("gzip")
check_all("htmlentitydefs")
check_all("htmllib")
check_all("httplib")
check_all("ihooks")
@ -106,18 +97,15 @@ def check_all(modname):
check_all("mimetypes")
check_all("mimify")
check_all("multifile")
check_all("mutex")
check_all("netrc")
check_all("nntplib")
check_all("ntpath")
check_all("nturl2path")
check_all("os")
check_all("pdb")
check_all("pickle")
check_all("pipes")
check_all("popen2")
check_all("poplib")
check_all("posixfile")
check_all("posixpath")
check_all("pprint")
check_all("pre")
@ -130,7 +118,6 @@ def check_all(modname):
check_all("random")
check_all("re")
check_all("reconvert")
check_all("regex_syntax")
check_all("regsub")
check_all("repr")
check_all("rexec")
@ -148,9 +135,5 @@ def check_all(modname):
check_all("socket")
check_all("sre")
check_all("sre_compile")
check_all("sre_constants")
check_all("sre_parse")
check_all("stat")
check_all("stat_cache")
check_all("statvfs")
check_all("string")