Prepare collections module for pure python code entries.

This commit is contained in:
Raymond Hettinger 2007-02-28 18:37:52 +00:00
parent 3035d2397f
commit eb9798892d
6 changed files with 10 additions and 7 deletions

3
Lib/collections.py Normal file
View file

@ -0,0 +1,3 @@
__all__ = ['deque', 'defaultdict']
from _collections import deque, defaultdict