[issue2636] Adding a new regex module (compatible with re)

2021-01-25 Thread STINNER Victor
STINNER Victor added the comment: It's now a third party project: https://pypi.org/project/regex/ If someone wants to move it into the Python stdlib, I suggest to start on the python-ideas list first. I close the issue as REJECTED. -- nosy: +vstinner resolution: -> rejected stage:

[issue2636] Adding a new regex module (compatible with re)

2020-01-10 Thread Brett Cannon
Change by Brett Cannon : -- nosy: -brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue2636] Adding a new regex module (compatible with re)

2017-12-09 Thread petros
Change by petros : -- nosy: +petros ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mai

[issue2636] Adding a new regex module (compatible with re)

2017-07-25 Thread Jonathan Halcrow
Changes by Jonathan Halcrow : -- nosy: -jhalcrow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue2636] Adding a new regex module (compatible with re)

2017-07-23 Thread Socob
Changes by Socob <206a8...@opayq.com>: -- nosy: +Socob ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue2636] Adding a new regex module (compatible with re)

2016-04-20 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue2636] Adding a new regex module (compatible with re)

2016-04-20 Thread Roman Evstifeev
Changes by Roman Evstifeev : -- nosy: +Roman.Evstifeev ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue2636] Adding a new regex module (compatible with re)

2015-12-10 Thread John Mark Vandenberg
Changes by John Mark Vandenberg : -- nosy: +jayvdb ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue2636] Adding a new regex module (compatible with re)

2015-11-08 Thread irdb
Changes by irdb : -- nosy: +irdb ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman

[issue2636] Adding a new regex module (compatible with re)

2015-03-18 Thread Evgeny Kapun
Changes by Evgeny Kapun : -- nosy: +abacabadabacaba ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue2636] Adding a new regex module (compatible with re)

2014-11-14 Thread Matthew Barnett
Matthew Barnett added the comment: The page on PyPI says where the project's homepage is located: Home Page: https://code.google.com/p/mrab-regex-hg/ The bug was fixed in the last release. -- ___ Python tracker __

[issue2636] Adding a new regex module (compatible with re)

2014-11-14 Thread Brett Cannon
Changes by Brett Cannon : -- nosy: +brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue2636] Adding a new regex module (compatible with re)

2014-11-14 Thread Mateon1
Mateon1 added the comment: Well, I am reporting it here, is this not the correct place? Sorry if it is. -- ___ Python tracker ___ ___ P

[issue2636] Adding a new regex module (compatible with re)

2014-11-13 Thread Matthew Barnett
Matthew Barnett added the comment: @Mateon1: "I hope it's fixed"? Did you report it? -- ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2014-11-13 Thread Mateon1
Mateon1 added the comment: Well, I found a bug with this module, on Python 2.7(.5), on Windows 7 64-bit when you try to compile a regex with the flags V1|DEBUG, the module crashes as if it wanted to call a builtin called "ascii". The bug happened to me several times, but this is the regexp whe

[issue2636] Adding a new regex module (compatible with re)

2014-11-09 Thread Jeffrey C. Jacobs
Jeffrey C. Jacobs added the comment: If I recall, I started this thread with a plan to update re itself with implementations of various features listed in the top post. If you look at the list of files uploaded by me there are seme complete patches for Re to add various features like Atomic G

[issue2636] Adding a new regex module (compatible with re)

2014-11-09 Thread Nick Coghlan
Nick Coghlan added the comment: Thanks for pushing this one forward Serhiy! Your approach sounds like a fine plan to me. -- ___ Python tracker ___

[issue2636] Adding a new regex module (compatible with re)

2014-11-08 Thread Ezio Melotti
Ezio Melotti added the comment: Ok, regardless of what will happen, increasing test coverage is a worthy goal. We might start by looking at the regex test suite to see if we can import some tests from there. -- ___ Python tracker

[issue2636] Adding a new regex module (compatible with re)

2014-11-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > So you are suggesting to fix bugs in re to make it closer to regex, and then > replace re with a forked subset of regex that doesn't include advanced > features, or just to fix/improve re until it matches the behavior of regex? Depends on what will be easier

[issue2636] Adding a new regex module (compatible with re)

2014-11-08 Thread Ezio Melotti
Ezio Melotti added the comment: So you are suggesting to fix bugs in re to make it closer to regex, and then replace re with a forked subset of regex that doesn't include advanced features, or just to fix/improve re until it matches the behavior of regex? If you are suggesting the former, I wou

[issue2636] Adding a new regex module (compatible with re)

2014-11-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > Exciting. Perhaps you should post your plan on python-dev. Thank you Antoine. I think all interested core developers are already aware about this issue. A disadvantage of posting on python-dev is that this would require manually copy links and may be title

[issue2636] Adding a new regex module (compatible with re)

2014-11-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Here is my (slowly implemented) plan: Exciting. Perhaps you should post your plan on python-dev. In any case, huge thanks for your work on the re module. -- ___ Python tracker _

[issue2636] Adding a new regex module (compatible with re)

2014-11-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is my (slowly implemented) plan: 0. Recommend regex as advanced replacement of re (issue22594). 1. Fix all obvious bugs in the re module if this doesn't break backward compatibility (issue12728, issue14260, and many already closed issues). 2. Deprecate

[issue2636] Adding a new regex module (compatible with re)

2014-06-26 Thread Nick Coghlan
Nick Coghlan added the comment: Even with in principle approval from Guido, this idea still depends on volunteers to actually write up a concrete proposal as a PEP (which shouldn't be too controversial, given Guido already OK'ed the idea) and then do the integration work to incorporate the code,

[issue2636] Adding a new regex module (compatible with re)

2014-06-26 Thread Mark Lawrence
Mark Lawrence added the comment: Will we actually get regex into the standard library on this pass? -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.4 ___ Python tracker ___

[issue2636] Adding a new regex module (compatible with re)

2012-11-27 Thread Mark Dickinson
Changes by Mark Dickinson : -- versions: +Python 3.4 -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2636] Adding a new regex module (compatible with re)

2012-11-05 Thread Nick Coghlan
Nick Coghlan added the comment: I've been working through the "known crashers" list in the stdlib. The recursive import one was fixed with the migration to importlib in 3.3, the compiler one will be fixed in 3.3.1 (with an enforced nesting limit). One of those remaining is actually a pathologi

[issue2636] Adding a new regex module (compatible with re)

2012-04-03 Thread Sandro Tosi
Sandro Tosi added the comment: I've just uploaded regex into Debian: this will hopefully gives some more eyes looking at the module and reporting some feedbacks. -- nosy: +sandro.tosi ___ Python tracker __

[issue2636] Adding a new regex module (compatible with re)

2012-02-11 Thread Tshepang Lekhonkhobe
Changes by Tshepang Lekhonkhobe : -- nosy: +tshepang ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue2636] Adding a new regex module (compatible with re)

2012-01-29 Thread Antoine Pitrou
Antoine Pitrou added the comment: > It'd be nice if we had some sort of representative benchmark for > real-world uses of Python regexps. The JS guys have all pitched in to > create such a thing for uses of regexps on thew web. I don't know of > any such thing for Python. See http://hg.python.o

[issue2636] Adding a new regex module (compatible with re)

2012-01-29 Thread Devin Jeanpierre
Devin Jeanpierre added the comment: It'd be nice if we had some sort of representative benchmark for real-world uses of Python regexps. The JS guys have all pitched in to create such a thing for uses of regexps on thew web. I don't know of any such thing for Python. I agree that a Python impl

[issue2636] Adding a new regex module (compatible with re)

2012-01-29 Thread Georg Brandl
Georg Brandl added the comment: Well, REs are very often used to process large chunks of text by repeated application. So if the whole operation takes 0.1 or 20 seconds you're going to notice :) -- ___ Python tracker

[issue2636] Adding a new regex module (compatible with re)

2012-01-29 Thread Devin Jeanpierre
Devin Jeanpierre added the comment: > In practice, I expect that a pure Python implementation of a regular > expression engine would only be fast enough to be usable on PyPy. Not sure why this is necessarily true. I'd expect a pure-Python implementation to be maybe 200 times as slow. Many que

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Nick Coghlan
Nick Coghlan added the comment: Alex has a valid point in relation to PEP 399, since, like lzma, regex will be coming in under the "special permission" clause that allows the addition of C extension modules without pure Python equivalents. Unlike lzma, though, the new regex engine isn't a rel

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: +akitada, akoumjian, alex, amaury.forgeotdarc, belopolsky, davide.rizzo, eric.snow, ezio.melotti, georg.brandl, giampaolo.rodola, gregory.p.smith, jacques, jaylogan, jhalcrow, jimjjewett, loewis, mark, mattchaput, moreati, mrabarnett, ncoghlan, nneon

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file20185/issue2636-20101229.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file20182/issue2636-20101228a.zip ___ Python tracker ___ ___ Python-bugs-list ma

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file20176/issue2636-20101228.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file20154/issue2636-20101224.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file20001/issue2636-20101210.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file19965/issue2636-20101207.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file19881/issue2636-20101130.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file19786/issue2636-20101123.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file19723/issue2636-20101121.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file19651/issue2636-20101120.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file19597/issue2636-20101113.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file19514/issue2636-20101106.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file19469/issue2636-20101102a.zip ___ Python tracker ___ ___ Python-bugs-list ma

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file19460/issue2636-20101102.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file19456/issue2636-20101101.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file19435/issue2636-20101030a.zip ___ Python tracker ___ ___ Python-bugs-list ma

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file19422/issue2636-20101030.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file19419/issue2636-20101029.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file19168/issue2636-20101009.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file18913/issue2636-20100918.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file18865/issue2636-20100913.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file18854/issue2636-20100912.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file18621/issue2636-20100824.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file21144/unnamed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file18541/issue2636-20100816.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file18532/issue2636-20100814.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file18192/issue2636-20100725.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file18054/issue2636-20100719.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file17912/issue2636-20100709.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file17877/issue2636-20100706.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file16916/issue2636-20100414.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file16914/build.log ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file16913/setup.py ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file16910/test_regex_20100413 ___ Python tracker ___ ___ Python-bugs-list mailin

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file16331/issue2636-20100223.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file16327/issue2636-20100222.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file16205/issue2636-20100211.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file16905/issue2636-20100413.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file16709/issue2636-20100331.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file16626/issue2636-20100323.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file16444/issue2636-20100305.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file16424/issue2636-20100304.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file16375/issue2636-20100226.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file16365/issue2636-20100225.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file16362/issue2636-20100224.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: -akitada, akoumjian, alex, amaury.forgeotdarc, belopolsky, davide.rizzo, eric.snow, ezio.melotti, georg.brandl, giampaolo.rodola, gregory.p.smith, jacques, jaylogan, jhalcrow, jimjjewett, loewis, mark, mattchaput, moreati, mrabarnett, ncoghlan, nneo

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file16278/Features-backslashes.patch ___ Python tracker ___ ___ Python-bugs-list

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file16255/issue2636-20100219.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file16247/issue2636-20100218.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file16243/issue2636-20100217.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file16195/issue2636-20100210.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file16122/issue2636-20100204.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file15901/issue2636-20100116.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file14733/issue2636-20090815.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file14687/issue2636-20090810#3.zip ___ Python tracker ___ ___ Python-bugs-list m

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file14683/issue2636-20090810#2.zip ___ Python tracker ___ ___ Python-bugs-list m

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file14682/issue2636-20090810.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file14642/issue2636-20090804.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file14594/issue2636-20090729.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file14576/issue2636-20090727.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file14570/issue2636-20090726.zip ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file13707/issue2636-patch-2.diff ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file13449/issue2636-patch-1.diff ___ Python tracker ___ ___ Python-bugs-list mai

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file13257/issue2636-features-6.diff ___ Python tracker ___ ___ Python-bugs-list

[issue2636] Adding a new regex module (compatible with re)

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file13216/issue2636-features-5.diff ___ Python tracker ___ ___ Python-bugs-list

  1   2   >