[pypy-svn] r76247 - pypy/branch/unicode_filename-2/pypy/rpython/module

afa at codespeak.net afa at codespeak.net
Fri Jul 16 00:20:02 CEST 2010


Author: afa
Date: Fri Jul 16 00:20:00 2010
New Revision: 76247

Modified:
   pypy/branch/unicode_filename-2/pypy/rpython/module/ll_os.py
Log:
Typo


Modified: pypy/branch/unicode_filename-2/pypy/rpython/module/ll_os.py
==============================================================================
--- pypy/branch/unicode_filename-2/pypy/rpython/module/ll_os.py	(original)
+++ pypy/branch/unicode_filename-2/pypy/rpython/module/ll_os.py	Fri Jul 16 00:20:00 2010
@@ -909,7 +909,7 @@
                 raise OSError(rposix.get_errno(), "os_open failed")
             return result
 
-        def os_open_oofakeimpl(o_path, flags, mode):
+        def os_open_oofakeimpl(path, flags, mode):
             return os.open(OOSupport.from_rstr(path), flags, mode)
 
         return extdef([ttypes.str, int, int], int, ttypes.ll_os_name('open'),



More information about the Pypy-commit mailing list