[pypy-svn] r56101 - pypy/dist/pypy/module/select

fijal at codespeak.net fijal at codespeak.net
Thu Jun 26 22:57:04 CEST 2008


Author: fijal
Date: Thu Jun 26 22:57:03 2008
New Revision: 56101

Modified:
   pypy/dist/pypy/module/select/interp_select.py
Log:
typo


Modified: pypy/dist/pypy/module/select/interp_select.py
==============================================================================
--- pypy/dist/pypy/module/select/interp_select.py	(original)
+++ pypy/dist/pypy/module/select/interp_select.py	Thu Jun 26 22:57:03 2008
@@ -130,7 +130,7 @@
             iwtd, owtd, ewtd = rpoll.select(iwtd, owtd, ewtd)
         else:
             iwtd, owtd, ewtd = rpoll.select(iwtd, owtd, ewtd, space.float_w(w_timeout))
-    except rpoll.SelectErorr, s:
+    except rpoll.SelectError, s:
         w_module = space.getbuiltinmodule('select')
         w_errortype = space.getattr(w_module, space.wrap('error'))
         raise OperationError(w_errortype, space.newtuple(



More information about the Pypy-commit mailing list