From: Neal Norwitz Date: Sun, 25 Feb 2007 15:02:38 +0000 (+0000) Subject: Fix typo X-Git-Tag: v3.0a1~1191 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=88470ec3483fb1337f4e7c3feaea5ca0deb193ca;p=thirdparty%2FPython%2Fcpython.git Fix typo --- diff --git a/Lib/xreload.py b/Lib/xreload.py index ba5370e7f003..360dc673a2e6 100644 --- a/Lib/xreload.py +++ b/Lib/xreload.py @@ -55,7 +55,7 @@ def xreload(mod): 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