summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2001-09-27 04:18:36 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2001-09-27 04:18:36 (GMT)
commit264e8186d551647d4583f592e44b2d7a64e61096 (patch)
treecae4f65f966bdc4929470a589add3b8b42e5e94b
parent3fc291a1d751fd5242a12a3634a4d30f1ee5688b (diff)
downloadcpython-264e8186d551647d4583f592e44b2d7a64e61096.zip
cpython-264e8186d551647d4583f592e44b2d7a64e61096.tar.gz
cpython-264e8186d551647d4583f592e44b2d7a64e61096.tar.bz2
Fix comment typo
-rw-r--r--Lib/compiler/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/compiler/__init__.py b/Lib/compiler/__init__.py
index 97d9c76..1267b0c 100644
--- a/Lib/compiler/__init__.py
+++ b/Lib/compiler/__init__.py
@@ -18,7 +18,7 @@ compile(source, filename, mode, flags=None, dont_inherit=None)
Returns a code object. A replacement for the builtin compile() function.
compileFile(filename)
- Generates a .pyc file by compilining filename.
+ Generates a .pyc file by compiling filename.
"""
from transformer import parse, parseFile