[pypy-svn] r10165 - pypy/dist/pypy/module/sys2

tismer at codespeak.net tismer at codespeak.net
Tue Mar 29 20:57:20 CEST 2005


Author: tismer
Date: Tue Mar 29 20:57:20 2005
New Revision: 10165

Modified:
   pypy/dist/pypy/module/sys2/app.py
Log:
fixed a typo

Modified: pypy/dist/pypy/module/sys2/app.py
==============================================================================
--- pypy/dist/pypy/module/sys2/app.py	(original)
+++ pypy/dist/pypy/module/sys2/app.py	Tue Mar 29 20:57:20 2005
@@ -14,7 +14,7 @@
 def exit(exitcode=0):
     # note that we cannot use SystemExit(exitcode) here.
     # The comma version leads to an extra de-tupelizing
-    # in normalize_exception, which is exactlylike CPython.
+    # in normalize_exception, which is exactly like CPython's.
     raise SystemExit, exitcode
 
 #import __builtin__



More information about the Pypy-commit mailing list