bpo-40703: Let PyType_FromSpec() set "type.__module__" only if it is not set yet. (GH-20273)

This commit is contained in:
scoder 2020-06-10 18:09:01 +02:00 committed by GitHub
parent ec88e1bca8
commit 24b8bad6d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 15 deletions

View file

@ -0,0 +1,2 @@
The PyType_FromSpec*() functions no longer overwrite the type's "__module__" attribute
if it is set via "Py_tp_members" or "Py_tp_getset".