We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc01d60 commit 488d248Copy full SHA for 488d248
collections/collections/__init__.py
@@ -3,3 +3,11 @@
3
# CPython implementation brings in metaclasses and other bloat.
4
# This is going to be just import-all for other modules in a namespace package
5
from _collections import *
6
+try:
7
+ from .defaultdict import defaultdict
8
+except ImportError:
9
+ pass
10
11
+ from .deque import deque
12
13
0 commit comments