summaryrefslogtreecommitdiffstats
path: root/Lib/compiler/__init__.py
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2001-04-09 04:23:55 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2001-04-09 04:23:55 (GMT)
commita384f737cc4f7cd90b5e2df8ac99d458522be156 (patch)
treee0b7557562d29ef6292581449ab73b45c92e99e7 /Lib/compiler/__init__.py
parentf0e717bdb1729ba93f8f2524962ee95ab1d7d425 (diff)
downloadcpython-a384f737cc4f7cd90b5e2df8ac99d458522be156.zip
cpython-a384f737cc4f7cd90b5e2df8ac99d458522be156.tar.gz
cpython-a384f737cc4f7cd90b5e2df8ac99d458522be156.tar.bz2
typo
Diffstat (limited to 'Lib/compiler/__init__.py')
-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 5c65eca..13855f9 100644
--- a/Lib/compiler/__init__.py
+++ b/Lib/compiler/__init__.py
@@ -4,7 +4,7 @@ There are several functions defined at the top level that are imported
from modules contained in the package.
parse(buf) -> AST
- Donverts a string containing Python source code to an abstract
+ Converts a string containing Python source code to an abstract
syntax tree (AST). The AST is defined in compiler.ast.
parseFile(path) -> AST