Author: Antonio Cuni <[email protected]>
Branch: unicode-strategies
Changeset: r58465:ed283aa4800e
Date: 2012-10-26 16:47 +0200
http://bitbucket.org/pypy/pypy/changeset/ed283aa4800e/

Log:    bah, remove pdb

diff --git a/pypy/objspace/descroperation.py b/pypy/objspace/descroperation.py
--- a/pypy/objspace/descroperation.py
+++ b/pypy/objspace/descroperation.py
@@ -58,7 +58,6 @@
                               "'%s' object has no attribute '%s'",
                               typename, name)
     else:
-        import pdb;pdb.set_trace()
         raise operationerrfmt(space.w_AttributeError,
                               "'%s' object attribute '%s' is read-only",
                               typename, name)
diff --git a/pypy/objspace/std/test/test_dictmultiobject.py 
b/pypy/objspace/std/test/test_dictmultiobject.py
--- a/pypy/objspace/std/test/test_dictmultiobject.py
+++ b/pypy/objspace/std/test/test_dictmultiobject.py
@@ -3,7 +3,7 @@
 from pypy.interpreter.error import OperationError
 from pypy.objspace.std.dictmultiobject import \
      W_DictMultiObject, setitem__DictMulti_ANY_ANY, getitem__DictMulti_ANY, \
-     StringDictStrategy, ObjectDictStrategy
+     StringDictStrategy, ObjectDictStrategy, UnicodeDictStrategy
 
 from pypy.conftest import gettestobjspace
 from pypy.conftest import option
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to