[pypy-commit] pypy unicode-strategies: a branch to add unicode strategies to list/dict/etc., which will be useful for py3k as well

antocuni noreply at buildbot.pypy.org
Fri Oct 26 16:31:05 CEST 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: unicode-strategies
Changeset: r58457:01af5d1957f1
Date: 2012-10-26 15:19 +0200
http://bitbucket.org/pypy/pypy/changeset/01af5d1957f1/

Log:	a branch to add unicode strategies to list/dict/etc., which will be
	useful for py3k as well

diff --git a/pypy/objspace/descroperation.py b/pypy/objspace/descroperation.py
--- a/pypy/objspace/descroperation.py
+++ b/pypy/objspace/descroperation.py
@@ -58,6 +58,7 @@
                               "'%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)


More information about the pypy-commit mailing list