[pypy-svn] r16583 - pypy/dist/pypy/rpython/module

arigo at codespeak.net arigo at codespeak.net
Fri Aug 26 11:58:18 CEST 2005


Author: arigo
Date: Fri Aug 26 11:58:17 2005
New Revision: 16583

Modified:
   pypy/dist/pypy/rpython/module/ll_os.py
Log:
Typos


Modified: pypy/dist/pypy/rpython/module/ll_os.py
==============================================================================
--- pypy/dist/pypy/rpython/module/ll_os.py	(original)
+++ pypy/dist/pypy/rpython/module/ll_os.py	Fri Aug 26 11:58:17 2005
@@ -128,8 +128,8 @@
 
 def ll_os_mkdir(path, mode):
     os.mkdir(from_rstr(path), mode)
-ll_os_chdir.suggested_primitive = True
+ll_os_mkdir.suggested_primitive = True
 
 def ll_os_rmdir(path):
     os.rmdir(from_rstr(path))
-ll_os_chdir.suggested_primitive = True
+ll_os_rmdir.suggested_primitive = True



More information about the Pypy-commit mailing list