summaryrefslogtreecommitdiffstats
path: root/Lib/collections.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2007-02-28 18:37:52 (GMT)
committerRaymond Hettinger <python@rcn.com>2007-02-28 18:37:52 (GMT)
commiteb9798892d7ed54762ae006e39db0a84f671cfd3 (patch)
tree629823599716e83c322e7a9799a644d4a2b616a9 /Lib/collections.py
parent3035d2397f4a6d028d7b1f87563c649457d5cbb4 (diff)
downloadcpython-eb9798892d7ed54762ae006e39db0a84f671cfd3.zip
cpython-eb9798892d7ed54762ae006e39db0a84f671cfd3.tar.gz
cpython-eb9798892d7ed54762ae006e39db0a84f671cfd3.tar.bz2
Prepare collections module for pure python code entries.
Diffstat (limited to 'Lib/collections.py')
-rw-r--r--Lib/collections.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/collections.py b/Lib/collections.py
new file mode 100644
index 0000000..0d9254c
--- /dev/null
+++ b/Lib/collections.py
@@ -0,0 +1,3 @@
+__all__ = ['deque', 'defaultdict']
+
+from _collections import deque, defaultdict