[pypy-svn] r76222 - pypy/branch/unicode_filename-2/pypy/module/posix
afa at codespeak.net
afa at codespeak.net
Thu Jul 15 06:50:36 CEST 2010
Author: afa
Date: Thu Jul 15 06:50:33 2010
New Revision: 76222
Modified:
pypy/branch/unicode_filename-2/pypy/module/posix/interp_posix.py
Log:
fix
Modified: pypy/branch/unicode_filename-2/pypy/module/posix/interp_posix.py
==============================================================================
--- pypy/branch/unicode_filename-2/pypy/module/posix/interp_posix.py (original)
+++ pypy/branch/unicode_filename-2/pypy/module/posix/interp_posix.py Thu Jul 15 06:50:33 2010
@@ -318,7 +318,7 @@
raise wrap_oserror2(space, e, w_path)
remove.unwrap_spec = [ObjSpace, W_Root]
-def _getfullpathname(space, path):
+def _getfullpathname(space, w_path):
"""helper for ntpath.abspath """
try:
dispatch_filename(rposix._getfullpathname)(space, w_path)
More information about the Pypy-commit
mailing list