Skip to content

[3.15] gh-123011: Fix warn_explicit() with the globals of the __main__ module (GH-155318) - #155989

Open
miss-islington wants to merge 1 commit into
python:3.15from
miss-islington:backport-f2eaf17-3.15
Open

[3.15] gh-123011: Fix warn_explicit() with the globals of the __main__ module (GH-155318)#155989
miss-islington wants to merge 1 commit into
python:3.15from
miss-islington:backport-f2eaf17-3.15

Conversation

@miss-islington

@miss-islington miss-islington commented Aug 18, 2026

Copy link
Copy Markdown
Contributor

The main module executed as a script or a command has spec set to
None, so warn_explicit(module_globals=globals()) emitted a spurious
DeprecationWarning. It also raised ImportError when the loader was unable
to provide the source of the module: when the module was executed with -m
(the loader can only handle its own module name) or as a command (the
built-in importer has no source).
(cherry picked from commit f2eaf17)

Co-authored-by: Serhiy Storchaka storchaka@gmail.com

… module (pythonGH-155318)

The __main__ module executed as a script or a command has __spec__ set to
None, so warn_explicit(module_globals=globals()) emitted a spurious
DeprecationWarning.  It also raised ImportError when the loader was unable
to provide the source of the module: when the module was executed with -m
(the loader can only handle its own module name) or as a command (the
built-in importer has no source).
(cherry picked from commit f2eaf17)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants