summaryrefslogtreecommitdiffstats
path: root/Lib/py_compile.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/py_compile.py')
-rw-r--r--Lib/py_compile.py2
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))