diff options
author | Guido van Rossum <guido@python.org> | 1994-08-29 10:52:58 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-08-29 10:52:58 (GMT) |
commit | 3bb54487675cd28166fc7271b5788b185bcc1b63 (patch) | |
tree | 4dd685744d72cedf72db3194a8ffc8f0846d0cfb /Lib/importall.py | |
parent | 7b1e974b4bd7c17cd90a6d03bab0aaa079d78d29 (diff) | |
download | cpython-3bb54487675cd28166fc7271b5788b185bcc1b63.zip cpython-3bb54487675cd28166fc7271b5788b185bcc1b63.tar.gz cpython-3bb54487675cd28166fc7271b5788b185bcc1b63.tar.bz2 |
New way of generating .pyc files, thanks to Sjoerd.
urllib.py: '+' is not always safe (even though the RFC says so :-( )
whrandom.py: throw away top bits of time to avoid overflow on Mac
(where times can be negative)
Diffstat (limited to 'Lib/importall.py')
-rwxr-xr-x | Lib/importall.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/importall.py b/Lib/importall.py index 1d20377..1383e80 100755 --- a/Lib/importall.py +++ b/Lib/importall.py @@ -1,3 +1,5 @@ +# THIS IS OBSOLETE -- USE MODULE 'compileall' INSTEAD! + # Utility module to import all modules in the path, in the hope # that this will update their ".pyc" files. |