Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Doc/library/functions.rst
Original file line numberDiff line numberDiff line change
Expand Up@@ -575,7 +575,7 @@ are always available. They are listed here in alphabetical order.

.. _func-eval:

.. function:: eval(source, /, globals=None, locals=None)
.. function:: eval(source, globals=None, locals=None, /)

:param source:
A Python expression.
Expand DownExpand Up@@ -651,7 +651,7 @@ are always available. They are listed here in alphabetical order.

.. index:: pair: built-in function; exec

.. function:: exec(source, /, globals=None, locals=None, *, closure=None)
.. function:: exec(source, globals=None, locals=None, /, *, closure=None)

.. warning::

Expand Down
Loading