summaryrefslogtreecommitdiff
path: root/singledispatch.py
diff options
context:
space:
mode:
author?ukasz Langa <lukasz@langa.pl>2013-05-25 23:46:41 +0200
committer?ukasz Langa <lukasz@langa.pl>2013-05-25 23:46:41 +0200
commit166a442bd7fc983ecb5cb49aa68dce2a17855d1b (patch)
treef59809c11ea9d5b3beafb0a5b7c0d2f960ecac9f /singledispatch.py
parent608f97f22cb57c6f96efa9c19e27e400cb6b289e (diff)
downloadsingledispatch-166a442bd7fc983ecb5cb49aa68dce2a17855d1b.tar.gz
bootstrap updates necessary for 3.2 - 3.3 compatibility
Diffstat (limited to 'singledispatch.py')
-rw-r--r--singledispatch.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/singledispatch.py b/singledispatch.py
index e0de4ca..5093904 100644
--- a/singledispatch.py
+++ b/singledispatch.py
@@ -8,11 +8,9 @@ from __future__ import unicode_literals
__all__ = ['singledispatch']
-from abc import get_cache_token
from functools import update_wrapper
-from types import MappingProxyType
from weakref import WeakKeyDictionary
-
+from singledispatch_helpers import MappingProxyType, get_cache_token
################################################################################
### singledispatch() - single-dispatch generic function decorator