From: Matthias Klose Date: Mon, 15 Mar 2010 18:00:01 +0000 (+0000) Subject: - Fix typo in Lib/compileall.py(__all__). X-Git-Tag: v2.7b1~346 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fae23dc9dc1b4e1b3138b1c933306869440408f2;p=thirdparty%2FPython%2Fcpython.git - Fix typo in Lib/compileall.py(__all__). --- diff --git a/Lib/compileall.py b/Lib/compileall.py index 4995e2c6742a..f564abbd0362 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):