From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 1 Jan 2023 01:06:31 +0000 (-0800) Subject: gh-100546: Remove incorrect positional-only marker from eval (GH-100547) X-Git-Tag: v3.11.2~115 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7ed71278768f2646af0a74caef6648c385d9f334;p=thirdparty%2FPython%2Fcpython.git gh-100546: Remove incorrect positional-only marker from eval (GH-100547) All the arguments are positional-only. The current status after GH-99476 seems to be to not use positional-only markers in documentation, hence I've simply removed it. (cherry picked from commit 71159a8e078bda0c9a39c6cd0980b7ba238dc582) Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com> --- diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index c71ebd235cf3..e9e3177a99c7 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -512,7 +512,7 @@ are always available. They are listed here in alphabetical order. .. _func-eval: -.. function:: eval(expression, /, globals=None, locals=None) +.. function:: eval(expression, globals=None, locals=None) The arguments are a string and optional globals and locals. If provided, *globals* must be a dictionary. If provided, *locals* can be any mapping