Author: Antonio Cuni <[email protected]>
Branch: py3k
Changeset: r52698:a92e756eead4
Date: 2012-02-20 22:48 +0100
http://bitbucket.org/pypy/pypy/changeset/a92e756eead4/

Log:    s/__builtin__/builtins

diff --git a/pypy/interpreter/test/test_module.py 
b/pypy/interpreter/test/test_module.py
--- a/pypy/interpreter/test/test_module.py
+++ b/pypy/interpreter/test/test_module.py
@@ -19,7 +19,7 @@
 
 class AppTest_ModuleObject: 
     def test_attr(self):
-        m = __import__('__builtin__')
+        m = __import__('builtins')
         m.x = 15
         assert m.x == 15
         assert getattr(m, 'x') == 15
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to