[issue22584] Get rid of SRE character tables

2014-10-10 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- assignee: - serhiy.storchaka ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22584 ___ ___

[issue22584] Get rid of SRE character tables

2014-10-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 07b7b587837f by Serhiy Storchaka in branch 'default': Issue #22584: Got rid of character tables in _sre.c and use standard macros https://hg.python.org/cpython/rev/07b7b587837f -- nosy: +python-dev ___

[issue22584] Get rid of SRE character tables

2014-10-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your review Antoine. -- resolution: - fixed stage: patch review - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22584

[issue22584] Get rid of SRE character tables

2014-10-09 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Currently the SRE regular expression engine uses internal tables to implement ASCII-only character predicates and converting. Proposed patch get rid of these tables and reuse standard Python macros Py_ISSPACE, Py_TOLOWER, etc. -- components: