mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
merge 3.3 (#19910)
This commit is contained in:
commit
d45a46b60d
2 changed files with 4 additions and 4 deletions
|
@ -193,9 +193,9 @@ are always available. They are listed here in alphabetical order.
|
|||
.. function:: compile(source, filename, mode, flags=0, dont_inherit=False, optimize=-1)
|
||||
|
||||
Compile the *source* into a code or AST object. Code objects can be executed
|
||||
by :func:`exec` or :func:`eval`. *source* can either be a string or an AST
|
||||
object. Refer to the :mod:`ast` module documentation for information on how
|
||||
to work with AST objects.
|
||||
by :func:`exec` or :func:`eval`. *source* can either be a normal string, a
|
||||
byte string, or an AST object. Refer to the :mod:`ast` module documentation
|
||||
for information on how to work with AST objects.
|
||||
|
||||
The *filename* argument should give the file from which the code was read;
|
||||
pass some recognizable value if it wasn't read from a file (``'<string>'`` is
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue