summaryrefslogtreecommitdiff
path: root/dev-python/shiboken2/files/shiboken2-5.15.8-py-limited-api.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/shiboken2/files/shiboken2-5.15.8-py-limited-api.patch')
-rw-r--r--dev-python/shiboken2/files/shiboken2-5.15.8-py-limited-api.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/dev-python/shiboken2/files/shiboken2-5.15.8-py-limited-api.patch b/dev-python/shiboken2/files/shiboken2-5.15.8-py-limited-api.patch
deleted file mode 100644
index 143eb24a103a..000000000000
--- a/dev-python/shiboken2/files/shiboken2-5.15.8-py-limited-api.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/libshiboken/pep384impl.cpp 2022-09-23 08:47:20.000000000 +0200
-+++ b/libshiboken/pep384impl.cpp 2023-01-04 08:07:17.000000000 +0100
-@@ -751,7 +751,7 @@
- #endif // IS_PY2
- Shiboken::AutoDecRef privateobj(PyObject_GetAttr(
- reinterpret_cast<PyObject *>(Py_TYPE(self)), Shiboken::PyMagicName::name()));
--#ifndef Py_LIMITED_API
-+#if !defined(Py_LIMITED_API) && PY_VERSION_HEX < 0x03010000
- return _Py_Mangle(privateobj, name);
- #else
- // PYSIDE-1436: _Py_Mangle is no longer exposed; implement it always.