Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
allendowney
GitHub Repository: allendowney/cpython
Path: blob/main/Lib/codeop.py
12 views
1
r"""Utilities to compile possibly incomplete Python source code.
2
3
This module provides two interfaces, broadly similar to the builtin
4
function compile(), which take program text, a filename and a 'mode'
5
and:
6
7
- Return code object if the command is complete and valid
8
- Return None if the command is incomplete
9
- Raise SyntaxError, ValueError or OverflowError if the command is a
10
syntax error (OverflowError and ValueError can be produced by
11
malformed literals).
12
13
The two interfaces are:
14
15
compile_command(source, filename, symbol):
16
17
Compiles a single command in the manner described above.
18
19
CommandCompiler():
20
21
Instances of this class have __call__ methods identical in
22
signature to compile_command; the difference is that if the
23
instance compiles program text containing a __future__ statement,
24
the instance 'remembers' and compiles all subsequent program texts
25
with the statement in force.
26
27
The module also provides another class:
28
29
Compile():
30
31
Instances of this class act like the built-in function compile,
32
but with 'memory' in the sense described above.
33
"""
34
35
import __future__
36
import warnings
37
38
_features = [getattr(__future__, fname)
39
for fname in __future__.all_feature_names]
40
41
__all__ = ["compile_command", "Compile", "CommandCompiler"]
42
43
# The following flags match the values from Include/cpython/compile.h
44
# Caveat emptor: These flags are undocumented on purpose and depending
45
# on their effect outside the standard library is **unsupported**.
46
PyCF_DONT_IMPLY_DEDENT = 0x200
47
PyCF_ALLOW_INCOMPLETE_INPUT = 0x4000
48
49
def _maybe_compile(compiler, source, filename, symbol):
50
# Check for source consisting of only blank lines and comments.
51
for line in source.split("\n"):
52
line = line.strip()
53
if line and line[0] != '#':
54
break # Leave it alone.
55
else:
56
if symbol != "eval":
57
source = "pass" # Replace it with a 'pass' statement
58
59
# Disable compiler warnings when checking for incomplete input.
60
with warnings.catch_warnings():
61
warnings.simplefilter("ignore", (SyntaxWarning, DeprecationWarning))
62
try:
63
compiler(source, filename, symbol)
64
except SyntaxError: # Let other compile() errors propagate.
65
try:
66
compiler(source + "\n", filename, symbol)
67
return None
68
except SyntaxError as e:
69
if "incomplete input" in str(e):
70
return None
71
# fallthrough
72
73
return compiler(source, filename, symbol)
74
75
def _compile(source, filename, symbol):
76
return compile(source, filename, symbol, PyCF_DONT_IMPLY_DEDENT | PyCF_ALLOW_INCOMPLETE_INPUT)
77
78
def compile_command(source, filename="<input>", symbol="single"):
79
r"""Compile a command and determine whether it is incomplete.
80
81
Arguments:
82
83
source -- the source string; may contain \n characters
84
filename -- optional filename from which source was read; default
85
"<input>"
86
symbol -- optional grammar start symbol; "single" (default), "exec"
87
or "eval"
88
89
Return value / exceptions raised:
90
91
- Return a code object if the command is complete and valid
92
- Return None if the command is incomplete
93
- Raise SyntaxError, ValueError or OverflowError if the command is a
94
syntax error (OverflowError and ValueError can be produced by
95
malformed literals).
96
"""
97
return _maybe_compile(_compile, source, filename, symbol)
98
99
class Compile:
100
"""Instances of this class behave much like the built-in compile
101
function, but if one is used to compile text containing a future
102
statement, it "remembers" and compiles all subsequent program texts
103
with the statement in force."""
104
def __init__(self):
105
self.flags = PyCF_DONT_IMPLY_DEDENT | PyCF_ALLOW_INCOMPLETE_INPUT
106
107
def __call__(self, source, filename, symbol):
108
codeob = compile(source, filename, symbol, self.flags, True)
109
for feature in _features:
110
if codeob.co_flags & feature.compiler_flag:
111
self.flags |= feature.compiler_flag
112
return codeob
113
114
class CommandCompiler:
115
"""Instances of this class have __call__ methods identical in
116
signature to compile_command; the difference is that if the
117
instance compiles program text containing a __future__ statement,
118
the instance 'remembers' and compiles all subsequent program texts
119
with the statement in force."""
120
121
def __init__(self,):
122
self.compiler = Compile()
123
124
def __call__(self, source, filename="<input>", symbol="single"):
125
r"""Compile a command and determine whether it is incomplete.
126
127
Arguments:
128
129
source -- the source string; may contain \n characters
130
filename -- optional filename from which source was read;
131
default "<input>"
132
symbol -- optional grammar start symbol; "single" (default) or
133
"eval"
134
135
Return value / exceptions raised:
136
137
- Return a code object if the command is complete and valid
138
- Return None if the command is incomplete
139
- Raise SyntaxError, ValueError or OverflowError if the command is a
140
syntax error (OverflowError and ValueError can be produced by
141
malformed literals).
142
"""
143
return _maybe_compile(self.compiler, source, filename, symbol)
144
145