diff options
Diffstat (limited to 'Lib/codeop.py')
-rw-r--r-- | Lib/codeop.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/codeop.py b/Lib/codeop.py index 080e00b..46926b5 100644 --- a/Lib/codeop.py +++ b/Lib/codeop.py @@ -4,6 +4,8 @@ import sys import string import traceback +__all__ = ["compile_command"] + def compile_command(source, filename="<input>", symbol="single"): r"""Compile a command and determine whether it is incomplete. |