[Python-3000-checkins] r53898 - python/branches/p3yk/Lib/xreload.py

neal.norwitz python-3000-checkins at python.org
Sun Feb 25 16:02:39 CET 2007


Author: neal.norwitz
Date: Sun Feb 25 16:02:38 2007
New Revision: 53898

Modified:
   python/branches/p3yk/Lib/xreload.py
Log:
Fix typo

Modified: python/branches/p3yk/Lib/xreload.py
==============================================================================
--- python/branches/p3yk/Lib/xreload.py	(original)
+++ python/branches/p3yk/Lib/xreload.py	Sun Feb 25 16:02:38 2007
@@ -55,7 +55,7 @@
     finally:
         if stream:
             stream.close()
-    # Execute the code im a temporary namespace; if this fails, no changes
+    # Execute the code in a temporary namespace; if this fails, no changes
     tmpns = {}
     exec(code, tmpns)
     # Now we get to the hard part


More information about the Python-3000-checkins mailing list