Author: Antonio Cuni <[email protected]>
Branch: py3k
Changeset: r52939:3133f7b5d52b
Date: 2012-02-27 16:37 +0100
http://bitbucket.org/pypy/pypy/changeset/3133f7b5d52b/

Log:    forgot to fix the invocation of _testfile after I changed its
        signature

diff --git a/pypy/module/imp/test/test_import.py 
b/pypy/module/imp/test/test_import.py
--- a/pypy/module/imp/test/test_import.py
+++ b/pypy/module/imp/test/test_import.py
@@ -737,7 +737,7 @@
         space = self.space
         mtime = 12345
         co = compile('x = 42', '?', 'exec')
-        cpathname = _testfile(importing.get_pyc_magic(space), mtime, co)
+        cpathname = _testfile(space, importing.get_pyc_magic(space), mtime, co)
         w_modulename = space.wrap('somemodule')
         stream = streamio.open_file_as_stream(cpathname, "rb")
         try:
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to