mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +00:00
Merged revisions 65795 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r65795 | brett.cannon | 2008-08-17 17:46:22 -0700 (Sun, 17 Aug 2008) | 3 lines Update __all__ for cookielib, csv, os, and urllib2 for objects imported into the module but exposed as part of the API. ........
This commit is contained in:
parent
2f5cb3468e
commit
e8d0bf9160
3 changed files with 4 additions and 3 deletions
|
@ -14,7 +14,8 @@ from _csv import Dialect as _Dialect
|
||||||
from io import StringIO
|
from io import StringIO
|
||||||
|
|
||||||
__all__ = [ "QUOTE_MINIMAL", "QUOTE_ALL", "QUOTE_NONNUMERIC", "QUOTE_NONE",
|
__all__ = [ "QUOTE_MINIMAL", "QUOTE_ALL", "QUOTE_NONNUMERIC", "QUOTE_NONE",
|
||||||
"Error", "Dialect", "excel", "excel_tab", "reader", "writer",
|
"Error", "Dialect", "__doc__", "excel", "excel_tab",
|
||||||
|
"field_size_limit", "reader", "writer",
|
||||||
"register_dialect", "get_dialect", "list_dialects", "Sniffer",
|
"register_dialect", "get_dialect", "list_dialects", "Sniffer",
|
||||||
"unregister_dialect", "__version__", "DictReader", "DictWriter" ]
|
"unregister_dialect", "__version__", "DictReader", "DictWriter" ]
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@ import sys, errno
|
||||||
_names = sys.builtin_module_names
|
_names = sys.builtin_module_names
|
||||||
|
|
||||||
# Note: more names are added to __all__ later.
|
# Note: more names are added to __all__ later.
|
||||||
__all__ = ["altsep", "curdir", "pardir", "sep", "pathsep", "linesep",
|
__all__ = ["altsep", "curdir", "pardir", "sep", "extsep", "pathsep", "linesep",
|
||||||
"defpath", "name", "path", "devnull",
|
"defpath", "name", "path", "devnull",
|
||||||
"SEEK_SET", "SEEK_CUR", "SEEK_END"]
|
"SEEK_SET", "SEEK_CUR", "SEEK_END"]
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ from _weakrefset import WeakSet
|
||||||
ProxyTypes = (ProxyType, CallableProxyType)
|
ProxyTypes = (ProxyType, CallableProxyType)
|
||||||
|
|
||||||
__all__ = ["ref", "proxy", "getweakrefcount", "getweakrefs",
|
__all__ = ["ref", "proxy", "getweakrefcount", "getweakrefs",
|
||||||
"WeakKeyDictionary", "ReferenceType", "ProxyType",
|
"WeakKeyDictionary", "ReferenceError", "ReferenceType", "ProxyType",
|
||||||
"CallableProxyType", "ProxyTypes", "WeakValueDictionary",
|
"CallableProxyType", "ProxyTypes", "WeakValueDictionary",
|
||||||
"WeakSet"]
|
"WeakSet"]
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue