diff options
| author | Christian Heimes <christian@cheimes.de> | 2013-10-13 02:04:50 +0200 |
|---|---|---|
| committer | Christian Heimes <christian@cheimes.de> | 2013-10-13 02:04:50 +0200 |
| commit | 52c5e57dbcbc875ef74f58a3e12b45f0821fdf9c (patch) | |
| tree | 365c07b881def274b53c37e59f727dc594cf614b /Lib/collections/abc.py | |
| parent | f1dc3ee16dbc81d7f91fd844c5dfcb0fd1a06500 (diff) | |
| download | cpython-git-52c5e57dbcbc875ef74f58a3e12b45f0821fdf9c.tar.gz | |
Issue #19218: Add facade collections.abc
Diffstat (limited to 'Lib/collections/abc.py')
| -rw-r--r-- | Lib/collections/abc.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/collections/abc.py b/Lib/collections/abc.py new file mode 100644 index 0000000000..5393810ea5 --- /dev/null +++ b/Lib/collections/abc.py @@ -0,0 +1,3 @@ +from _collections_abc import * +from _collections_abc import __all__ + |
