From 099ec33b1ca220f835b5b11b72ff727bdf6afb7c Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Mon, 2 May 2016 14:07:23 +0300 Subject: [PATCH] collections: Update for underlying module renaming to "ucollections". --- collections/collections/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collections/collections/__init__.py b/collections/collections/__init__.py index faf61a81..d152a984 100644 --- a/collections/collections/__init__.py +++ b/collections/collections/__init__.py @@ -2,7 +2,7 @@ # Reason: # CPython implementation brings in metaclasses and other bloat. # This is going to be just import-all for other modules in a namespace package -from _collections import * +from ucollections import * try: from .defaultdict import defaultdict except ImportError: