diff options
| author | Christian Tismer <tismer@stackless.com> | 2024-09-12 11:58:15 +0200 |
|---|---|---|
| committer | Christian Tismer <tismer@stackless.com> | 2024-09-12 12:20:13 +0200 |
| commit | a83d8c8b086ab3d84638c941d64249d9561ce915 (patch) | |
| tree | 06396904e306565557f62e4612323d4be8d89a01 | |
| parent | ace0e0ec01ade09e338a2eb204963b89ae44f82b (diff) | |
Do the transition to Python 3.13, GIL-part, amended
Python 3.13.0rc1 does not stand PyType_Modified of a builtin type.
Since the change is no longer relevant after __signature__
was removed, we can safely ignore this.
Task-number: PYSIDE-2751
Change-Id: I56b3b3b686b291d1bfce94cba0c5f133c61403ea
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
| -rw-r--r-- | sources/shiboken6/libshiboken/signature/signature_helper.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sources/shiboken6/libshiboken/signature/signature_helper.cpp b/sources/shiboken6/libshiboken/signature/signature_helper.cpp index 9aab7a6a9..e3a4b168a 100644 --- a/sources/shiboken6/libshiboken/signature/signature_helper.cpp +++ b/sources/shiboken6/libshiboken/signature/signature_helper.cpp @@ -80,7 +80,6 @@ int add_more_getsets(PyTypeObject *type, PyGetSetDef *gsp, PyObject **doc_descr) if (PyDict_SetItemString(dict, gsp->name, descr) < 0) return -1; } - PyType_Modified(type); return 0; } |
