diff options
author | Skip Montanaro <skip@pobox.com> | 2001-02-12 02:00:42 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2001-02-12 02:00:42 (GMT) |
commit | c62c81e013fbc9a726493870c3624b60ae63a757 (patch) | |
tree | 877ed808aa0af2b40e4f4385f1d8d28c1019fb05 /Lib/py_compile.py | |
parent | 81b6ae7ef71c2701a75773674e96829415e1a1d8 (diff) | |
download | cpython-c62c81e013fbc9a726493870c3624b60ae63a757.zip cpython-c62c81e013fbc9a726493870c3624b60ae63a757.tar.gz cpython-c62c81e013fbc9a726493870c3624b60ae63a757.tar.bz2 |
__all__ for several more modules
Diffstat (limited to 'Lib/py_compile.py')
-rw-r--r-- | Lib/py_compile.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/py_compile.py b/Lib/py_compile.py index da3bdaf..48c4afc 100644 --- a/Lib/py_compile.py +++ b/Lib/py_compile.py @@ -6,6 +6,8 @@ This module has intimate knowledge of the format of .pyc files. import imp MAGIC = imp.get_magic() +__all__ = ["compile"] + def wr_long(f, x): """Internal; write a 32-bit int to a file in little-endian order.""" f.write(chr( x & 0xff)) |