You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The check should be against .modules, not .classes:
diff --git a/Tools/clinic/clinic.py b/Tools/clinic/clinic.py
index 1bcdb6b1c3..dc4a7f9318 100755
--- a/Tools/clinic/clinic.py+++ b/Tools/clinic/clinic.py@@ -4478,7 +4478,7 @@ def directive_module(self, name: str) -> None:
if cls:
fail("Can't nest a module inside a class!")
- if name in module.classes:+ if name in module.modules:
fail("Already defined module " + repr(name) + "!")
m = Module(name, module)
…nGH-107610)
Also remove duplicate module def from _testcapi.
(cherry picked from commit a443c31)
Co-authored-by: Erlend E. Aasland <[email protected]>
The following code is silently accepted by Argument Clinic:
The duplicate
module m
should have been caught by Argument Clinic, but the guard is faulty:cpython/Tools/clinic/clinic.py
Lines 4481 to 4482 in 9e6590b
The check should be against
.modules
, not.classes
:See also the
Module
class:cpython/Tools/clinic/clinic.py
Lines 2384 to 2392 in 9e6590b
Linked PRs
The text was updated successfully, but these errors were encountered: