- Fix typo in Lib/compileall.py(__all__).

This commit is contained in:
Matthias Klose 2010-03-15 18:00:01 +00:00
parent b13d04c991
commit fae23dc9dc
1 changed files with 1 additions and 1 deletions

View File

@ -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):