This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients amaury.forgeotdarc, belopolsky, benjamin.peterson, ezio.melotti, ghaering, lemburg, meador.inge, pitrou, serhiy.storchaka, vstinner
Date 2013-08-10.10:21:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1376130113.84.0.145821919316.issue18701@psf.upfronthosting.co.za>
In-reply-to
Content
Here is a patch which removes PY_VERSION_HEX checks in Modules/_ctypes/_ctypes.c, Modules/_sre.c, Objects/stringlib/unicodedefs.h and removes the Modules/_sqlite/sqlitecompat.h file.

_sre.c checks support Python versions <2.2, <2.2 or <1.6 which doesn't made sense because the code overall uses Unicode object API available only in Python >=3.3.

unicodedefs.h contains code to support Python <3.0, but stringlib code can't be shared with Python <3.3.

_ctypes.c and sqlitecompat.h contain code to support Python <2.5 which is not supported version.
History
Date User Action Args
2013-08-10 10:21:54serhiy.storchakasetrecipients: + serhiy.storchaka, lemburg, ghaering, amaury.forgeotdarc, belopolsky, pitrou, vstinner, benjamin.peterson, ezio.melotti, meador.inge
2013-08-10 10:21:53serhiy.storchakasetmessageid: <1376130113.84.0.145821919316.issue18701@psf.upfronthosting.co.za>
2013-08-10 10:21:53serhiy.storchakalinkissue18701 messages
2013-08-10 10:21:53serhiy.storchakacreate