[issue19329] Faster compiling of charset regexpes

2014-10-31 Thread Roundup Robot
Roundup Robot added the comment: New changeset ebd48b4f650d by Serhiy Storchaka in branch '2.7': Backported the optimization of compiling charsets in regular expressions https://hg.python.org/cpython/rev/ebd48b4f650d -- ___ Python tracker

[issue19329] Faster compiling of charset regexpes

2013-10-26 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Antoine for your review. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker __

[issue19329] Faster compiling of charset regexpes

2013-10-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset d5498d9d9bb0 by Serhiy Storchaka in branch 'default': Issue #19329: Optimized compiling charsets in regular expressions. http://hg.python.org/cpython/rev/d5498d9d9bb0 -- nosy: +python-dev ___ Python track

[issue19329] Faster compiling of charset regexpes

2013-10-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Updated patch addresses Antoine's comments. One my bug fixed. -- Added file: http://bugs.python.org/file32364/re_optimize_charset_2.patch ___ Python tracker _

[issue19329] Faster compiling of charset regexpes

2013-10-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a more complex patch which optimizes charset compiling. It affects small charsets too. Big charsets now supports same optimizations as small charsets. Optimized bitmap now can be used even if the charset contains category items or non-bmp characters.