summaryrefslogtreecommitdiff
path: root/Lib/compileall.py
diff options
context:
space:
mode:
authorMatthias Klose <doko@ubuntu.com>2010-03-15 18:00:01 +0000
committerMatthias Klose <doko@ubuntu.com>2010-03-15 18:00:01 +0000
commitfae23dc9dc1b4e1b3138b1c933306869440408f2 (patch)
treed303a31ba5b0db97991ce9e0866adcb328f8e2c1 /Lib/compileall.py
parentb13d04c99143ea326d1c74ba537ff43cbd04175b (diff)
downloadcpython-git-fae23dc9dc1b4e1b3138b1c933306869440408f2.tar.gz
- Fix typo in Lib/compileall.py(__all__).
Diffstat (limited to 'Lib/compileall.py')
-rw-r--r--Lib/compileall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/compileall.py b/Lib/compileall.py
index 4995e2c674..f564abbd03 100644
--- a/Lib/compileall.py
+++ b/Lib/compileall.py
@@ -17,7 +17,7 @@ import py_compile
import struct
import imp
-__all__ = ["compile_dir","compile_files","compile_path"]
+__all__ = ["compile_dir","compile_file","compile_path"]
def compile_dir(dir, maxlevels=10, ddir=None,
force=0, rx=None, quiet=0):