[pypy-svn] r73164 - pypy/trunk/pypy/objspace/std

benjamin at codespeak.net benjamin at codespeak.net
Tue Mar 30 15:57:45 CEST 2010


Author: benjamin
Date: Tue Mar 30 15:57:43 2010
New Revision: 73164

Modified:
   pypy/trunk/pypy/objspace/std/dicttype.py
Log:
kill import

Modified: pypy/trunk/pypy/objspace/std/dicttype.py
==============================================================================
--- pypy/trunk/pypy/objspace/std/dicttype.py	(original)
+++ pypy/trunk/pypy/objspace/std/dicttype.py	Tue Mar 30 15:57:43 2010
@@ -142,7 +142,6 @@
 
 @gateway.unwrap_spec(ObjSpace, W_Root, W_Root, W_Root)
 def descr_fromkeys(space, w_type, w_keys, w_fill=None):
-    from pypy.objspace.std.dictmultiobject import W_DictMultiObject
     if w_fill is None:
         w_fill = space.w_None
     w_dict = space.call_function(w_type)



More information about the Pypy-commit mailing list