Author: Brian Kearns <[email protected]>
Branch: 
Changeset: r63291:28b8773e4b91
Date: 2013-04-12 15:56 -0400
http://bitbucket.org/pypy/pypy/changeset/28b8773e4b91/

Log:    which makes this workaround unnecessary

diff --git a/pypy/module/_minimal_curses/__init__.py 
b/pypy/module/_minimal_curses/__init__.py
--- a/pypy/module/_minimal_curses/__init__.py
+++ b/pypy/module/_minimal_curses/__init__.py
@@ -27,7 +27,6 @@
     }
 
 for i in dir(_curses):
-    i = str(i)     # workaround for pypy 2.0-beta2
     val = getattr(_curses, i)
     if i.isupper() and type(val) is int:
         Module.interpleveldefs[i] = "space.wrap(%s)" % val
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to