Commit db484c9c authored by Guido van Rossum's avatar Guido van Rossum

Typo (coestring -> codestring) discovered by Mark Hammond.

parent 1301211b
......@@ -50,7 +50,7 @@ def compile(file, cfile=None, dfile=None):
codestring = f.read()
f.close()
if codestring and codestring[-1] != '\n':
coestring = codestring + '\n'
codestring = codestring + '\n'
codeobject = __builtin__.compile(codestring, dfile or file, 'exec')
if not cfile:
cfile = file + (__debug__ and 'c' or 'o')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment