[pypy-svn] r76224 - pypy/branch/unicode_filename-2/pypy/module/posix

afa at codespeak.net afa at codespeak.net
Thu Jul 15 07:07:35 CEST 2010


Author: afa
Date: Thu Jul 15 07:07:34 2010
New Revision: 76224

Modified:
   pypy/branch/unicode_filename-2/pypy/module/posix/interp_posix.py
Log:
Grrr. Run tests and 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 07:07:34 2010
@@ -321,7 +321,7 @@
 def _getfullpathname(space, w_path):
     """helper for ntpath.abspath """
     try:
-        dispatch_filename(rposix._getfullpathname)(space, w_path)
+        fullpath = dispatch_filename(rposix._getfullpathname)(space, w_path)
     except OSError, e:
         raise wrap_oserror2(space, e, w_path)
     else:



More information about the Pypy-commit mailing list