remove unused python<3.6 code

This commit is contained in:
andrea
2022-06-18 13:17:54 +02:00
committed by Uwe
parent a4a8acd445
commit 0a6d271121
2 changed files with 5 additions and 13 deletions

View File

@@ -1912,11 +1912,8 @@ private:
if (!p) {
throw Py::TypeError("** makeWireString can't convert PyString.");
}
#if PY_VERSION_HEX >= 0x03030000
pysize = PyUnicode_GetLength(p);
#else
pysize = PyUnicode_GetSize(p);
#endif
#if PY_VERSION_HEX < 0x03090000
unichars = PyUnicode_AS_UNICODE(p);
#else
@@ -1924,11 +1921,8 @@ private:
#endif
}
else if (PyUnicode_Check(intext)) {
#if PY_VERSION_HEX >= 0x03030000
pysize = PyUnicode_GetLength(intext);
#else
pysize = PyUnicode_GetSize(intext);
#endif
#if PY_VERSION_HEX < 0x03090000
unichars = PyUnicode_AS_UNICODE(intext);
#else