summaryrefslogtreecommitdiff
path: root/Lib/weakref.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2004-08-31 11:38:12 +0000
committerAndrew M. Kuchling <amk@amk.ca>2004-08-31 11:38:12 +0000
commit33ad28b68dd6caadc1e6cb8f917665d6270e7b25 (patch)
treea190b6c2a5ba3cf6f8585fc00b1e0e0725c440c5 /Lib/weakref.py
parent3294e9d2e73b19a28a450ca7a7f47ece30272a46 (diff)
downloadcpython-git-33ad28b68dd6caadc1e6cb8f917665d6270e7b25.tar.gz
Use multi-line import
Diffstat (limited to 'Lib/weakref.py')
-rw-r--r--Lib/weakref.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/Lib/weakref.py b/Lib/weakref.py
index 77a41b109c..c0669b0317 100644
--- a/Lib/weakref.py
+++ b/Lib/weakref.py
@@ -11,14 +11,14 @@ http://python.sourceforge.net/peps/pep-0205.html
import UserDict
-from _weakref import \
- getweakrefcount, \
- getweakrefs, \
- ref, \
- proxy, \
- CallableProxyType, \
- ProxyType, \
- ReferenceType
+from _weakref import (
+ getweakrefcount,
+ getweakrefs,
+ ref,
+ proxy,
+ CallableProxyType,
+ ProxyType,
+ ReferenceType)
from exceptions import ReferenceError