Message10325

Author zyasoft
Recipients zyasoft
Date 2015-10-07.23:04:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1444259047.0.0.412735713558.issue2408@psf.upfronthosting.co.za>
In-reply-to
Content
CPython and Jython both share the same implementation of the sre regex engine, which the re module uses by compiling to sre bytecodes.

Our current port of sre dates back to CPython 2.1, then subsequently updated. However, there are enough subtle differences - missing sre bytecodes, unimplemented optimzations for unicode, direct use of the Java stack, and for complex REs, divergent performance - that we should revisit.

Also, this will be a good opportunity to stop expanding unicode into codepoint arrays.
History
Date User Action Args
2015-10-07 23:04:07zyasoftsetrecipients: + zyasoft
2015-10-07 23:04:07zyasoftsetmessageid: <1444259047.0.0.412735713558.issue2408@psf.upfronthosting.co.za>
2015-10-07 23:04:06zyasoftlinkissue2408 messages
2015-10-07 23:04:06zyasoftcreate