[pypy-svn] r14822 - pypy/dist/pypy/module/posix

ale at codespeak.net ale at codespeak.net
Wed Jul 20 17:04:02 CEST 2005


Author: ale
Date: Wed Jul 20 17:04:00 2005
New Revision: 14822

Modified:
   pypy/dist/pypy/module/posix/interp_posix.py
Log:
Oops - typos

Modified: pypy/dist/pypy/module/posix/interp_posix.py
==============================================================================
--- pypy/dist/pypy/module/posix/interp_posix.py	(original)
+++ pypy/dist/pypy/module/posix/interp_posix.py	Wed Jul 20 17:04:00 2005
@@ -1,4 +1,4 @@
-from pypy.interpreter.baseobjspace import ObjSpace,W_Root
+from pypy.interpreter.baseobjspace import ObjSpace
 
 import os
 from os import *
@@ -18,7 +18,7 @@
 
 def isatty(space, fd):
     return os.isatty(w_fd)
-lseek.unwrap_spec = [ObjSpace, int]
+isatty.unwrap_spec = [ObjSpace, int]
 
 def read(space, fd, buffersize):
     return os.read(fd,buffersize)



More information about the Pypy-commit mailing list