[Python-checkins] r78985 - python/trunk/Lib/compileall.py

matthias.klose python-checkins at python.org
Mon Mar 15 19:00:02 CET 2010


Author: matthias.klose
Date: Mon Mar 15 19:00:01 2010
New Revision: 78985

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


Modified:
   python/trunk/Lib/compileall.py

Modified: python/trunk/Lib/compileall.py
==============================================================================
--- python/trunk/Lib/compileall.py	(original)
+++ python/trunk/Lib/compileall.py	Mon Mar 15 19:00:01 2010
@@ -17,7 +17,7 @@
 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):


More information about the Python-checkins mailing list