summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2007-02-25 15:02:38 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2007-02-25 15:02:38 (GMT)
commit88470ec3483fb1337f4e7c3feaea5ca0deb193ca (patch)
treefbd2c163b8be14588af735220631b2adcebb34ac /Lib
parentebbc01ef505d4c2f694fb72c7880b8bad0102e4a (diff)
downloadcpython-88470ec3483fb1337f4e7c3feaea5ca0deb193ca.zip
cpython-88470ec3483fb1337f4e7c3feaea5ca0deb193ca.tar.gz
cpython-88470ec3483fb1337f4e7c3feaea5ca0deb193ca.tar.bz2
Fix typo
Diffstat (limited to 'Lib')
-rw-r--r--Lib/xreload.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/xreload.py b/Lib/xreload.py
index ba5370e..360dc67 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