3.23 codeop -- Compile Python code

The codeop module provides a function to compile Python code with hints on whether it is certainly complete, possibly complete or definitely incomplete. This is used by the code module and should not normally be used directly.

The codeop module defines the following function:

compile_command(source[, filename[, symbol]])
Tries to compile source, which should be a string of Python code and return a code object if source is valid Python code. In that case, the filename attribute of the code object will be filename, which defaults to '<input>'. Returns None if source is not valid Python code, but is a prefix of valid Python code.

If there is a problem with source, an exception will be raised. SyntaxError is raised if there is invalid Python syntax, and OverflowError if there is an invalid numeric constant.

The symbol argument determines whether source is compiled as a statement ('single', the default) or as an expression ('eval'). Any other value will cause ValueError to be raised.

Caveat: It is possible (but not likely) that the parser stops parsing with a successful outcome before reaching the end of the source; in this case, trailing symbols may be ignored instead of causing an error. For example, a backslash followed by two newlines may be followed by arbitrary garbagedule and alt="Next Page" width="32"> Python Library Reference Contents Module Index Index Previous: 3.21.1 Examples Up: 3. Python Runtime Services Next: 3.22.1 Interactive Interpreter Objects


Release 2.1.3+, documentation updated on February 9, 2005.
See About this document... for information on suggesting changes.
./usr/share/doc/python2.1/html/lib/module-codecs.html0000644000000000000000000002352210202370651022516 0ustar r