Commit 4df30687 authored by Walter Dörwald's avatar Walter Dörwald

Fix typo fix.

parent 6402357d
r"""Utilities to compile possibly incomplete Python source code.
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:
- Returns code object if the command is complete and valid
- Returns None if the command is incomplete
- Raises SyntaxError, ValueError or OverflowError if the command is a
- Return code object if the command is complete and valid
- Return None if the command is incomplete
- Raise SyntaxError, ValueError or OverflowError if the command is a
syntax error (OverflowError and ValueError can be produced by
malformed literals).
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment