Fix typo fix.
This commit is contained in:
parent
6402357d40
commit
4df306879b
|
@ -1,12 +1,12 @@
|
||||||
r"""Utilities to compile possibly incomplete Python source code.
|
r"""Utilities to compile possibly incomplete Python source code.
|
||||||
|
|
||||||
This module provides two interfaces, broadly similar to the builtin
|
This module provides two interfaces, broadly similar to the builtin
|
||||||
function compile(), that takes program text, a filename and a 'mode'
|
function compile(), which take program text, a filename and a 'mode'
|
||||||
and:
|
and:
|
||||||
|
|
||||||
- Returns code object if the command is complete and valid
|
- Return code object if the command is complete and valid
|
||||||
- Returns None if the command is incomplete
|
- Return None if the command is incomplete
|
||||||
- Raises SyntaxError, ValueError or OverflowError if the command is a
|
- Raise SyntaxError, ValueError or OverflowError if the command is a
|
||||||
syntax error (OverflowError and ValueError can be produced by
|
syntax error (OverflowError and ValueError can be produced by
|
||||||
malformed literals).
|
malformed literals).
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue