[pypy-commit] pypy py3k: fix translation (for now)

pjenvey noreply at buildbot.pypy.org
Mon Jan 7 21:54:13 CET 2013


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r59852:85478a2805be
Date: 2013-01-07 12:34 -0800
http://bitbucket.org/pypy/pypy/changeset/85478a2805be/

Log:	fix translation (for now)

diff --git a/pypy/module/imp/importing.py b/pypy/module/imp/importing.py
--- a/pypy/module/imp/importing.py
+++ b/pypy/module/imp/importing.py
@@ -896,7 +896,7 @@
               ext + PYC_TAG + '.pyc')
     return result
 
- at signature(types.str0(), returns=types.str0())
+#@signature(types.str0(), returns=types.str0())
 def make_source_pathname(pathname):
     "Given the path to a .pyc file, return the path to its .py file."
     # (...)/__pycache__/foo.<tag>.pyc -> (...)/foo.py


More information about the pypy-commit mailing list