File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 11r"""Utilities to compile possibly incomplete Python source code.
22
33This module provides two interfaces, broadly similar to the builtin
4- function compile(), that take progam text, a filename and a 'mode'
4+ function compile(), that takes program text, a filename and a 'mode'
55and:
66
7- - Return a 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
7+ - Returns code object if the command is complete and valid
8+ - Returns None if the command is incomplete
9+ - Raises SyntaxError, ValueError or OverflowError if the command is a
1010 syntax error (OverflowError and ValueError can be produced by
1111 malformed literals).
1212
You can’t perform that action at this time.
0 commit comments