summaryrefslogtreecommitdiffstats
path: root/Lib/csv.py
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2008-08-18 00:46:22 (GMT)
committerBrett Cannon <bcannon@gmail.com>2008-08-18 00:46:22 (GMT)
commit88f801d40944960f5bc7e0b8631674371a100f90 (patch)
treef6801baf4ede43d10780aa970bb764ff60b6d57d /Lib/csv.py
parent7b96f07febba594609ea4a0272fa55c4c330ee93 (diff)
downloadcpython-88f801d40944960f5bc7e0b8631674371a100f90.zip
cpython-88f801d40944960f5bc7e0b8631674371a100f90.tar.gz
cpython-88f801d40944960f5bc7e0b8631674371a100f90.tar.bz2
Update __all__ for cookielib, csv, os, and urllib2 for objects imported into
the module but exposed as part of the API.
Diffstat (limited to 'Lib/csv.py')
-rw-r--r--Lib/csv.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/csv.py b/Lib/csv.py
index 4f6e5c0..ff51a86 100644
--- a/Lib/csv.py
+++ b/Lib/csv.py
@@ -18,7 +18,8 @@ except ImportError:
from StringIO import StringIO
__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",
"unregister_dialect", "__version__", "DictReader", "DictWriter" ]