]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-126807: pygettext: Do not attempt to extract messages from function definitions...
authorTomas R. <tomas.roun8@gmail.com>
Thu, 14 Nov 2024 22:17:42 +0000 (23:17 +0100)
committerGitHub <noreply@github.com>
Thu, 14 Nov 2024 22:17:42 +0000 (22:17 +0000)
commit9a456383bed52010b90bd491277ea855626a7bba
treef91dbcd12969b9c9b9c4ae2ded757bcfd49abf9a
parentcae9d9d20f61cdbde0765efa340b6b596c31b67f
gh-126807: pygettext: Do not attempt to extract messages from function definitions. (GH-126808)

Fixes a bug where pygettext would attempt
to extract a message from a code like this:

def _(x): pass

This is because pygettext only looks at one
token at a time and '_(x)' looks like a
function call.

However, since 'x' is not a string literal,
it would erroneously issue a warning.
Lib/test/test_tools/test_i18n.py
Misc/NEWS.d/next/Tools-Demos/2024-11-13-22-23-36.gh-issue-126807.vpaWuN.rst [new file with mode: 0644]
Tools/i18n/pygettext.py