commit | eb9798892d7ed54762ae006e39db0a84f671cfd3 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Wed Feb 28 18:37:52 2007 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Wed Feb 28 18:37:52 2007 +0000 |
tree | 629823599716e83c322e7a9799a644d4a2b616a9 | |
parent | 3035d2397f4a6d028d7b1f87563c649457d5cbb4 [diff] [blame] |
Prepare collections module for pure python code entries.
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