[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:

[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

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

2017-07-25 Thread Jonathan Halcrow
Changes by Jonathan Halcrow : -- nosy: -jhalcrow ___ Python tracker ___ ___

[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

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

2016-04-20 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___

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

2016-04-20 Thread Roman Evstifeev
Changes by Roman Evstifeev : -- nosy: +Roman.Evstifeev ___ Python tracker ___ ___

[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 ___ ___

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

2015-03-18 Thread Evgeny Kapun
Changes by Evgeny Kapun abacabadabac...@gmail.com: -- nosy: +abacabadabacaba ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2636 ___ ___

[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 rep...@bugs.python.org http://bugs.python.org/issue2636 ___

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

2014-11-14 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- nosy: +brett.cannon ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2636 ___ ___ Python-bugs-list

[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 rep...@bugs.python.org

[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 when

[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 rep...@bugs.python.org http://bugs.python.org/issue2636 ___ ___

[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 rep...@bugs.python.org http://bugs.python.org/issue2636 ___

[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

[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.

[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 rep...@bugs.python.org

[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

[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

[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: 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-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 rep...@bugs.python.org http://bugs.python.org/issue2636

[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)

2012-11-27 Thread Mark Dickinson
Changes by Mark Dickinson dicki...@gmail.com: -- versions: +Python 3.4 -Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2636 ___ ___

[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

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

2012-04-03 Thread Sandro Tosi
Sandro Tosi sandro.t...@gmail.com 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 rep...@bugs.python.org

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

2012-02-11 Thread Tshepang Lekhonkhobe
Changes by Tshepang Lekhonkhobe tshep...@gmail.com: -- nosy: +tshepang ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2636 ___ ___ Python-bugs-list

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

2012-01-29 Thread Devin Jeanpierre
Devin Jeanpierre jeanpierr...@gmail.com 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

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

2012-01-29 Thread Georg Brandl
Georg Brandl ge...@python.org 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 jeanpierr...@gmail.com 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

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

2012-01-29 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr 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

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

2012-01-28 Thread Nick Coghlan
Nick Coghlan ncogh...@gmail.com added the comment: As part of the PEP 408 discussions, Guido approved the addition of 'regex' in 3.3 (using that name, rather than as a drop-in replacement for re) [1,2] That should greatly ease the backwards compatibility concerns, even if it isn't as

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

2012-01-28 Thread Alex Gaynor
Alex Gaynor alex.gay...@gmail.com added the comment: So, to my reading of teh compatibility PEP this cannot be added wholesale, unless there is a pure Python version as well. However, if it replaced re (read: patched) it would be valid. On Sun, Jan 29, 2012 at 1:26 AM, Nick Coghlan

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

2012-01-28 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: I created a new sandbox branch to integrate regex into CPython, see remote repo field. I mainly had to adapt the test suite to use unittest. -- hgrepos: +108 ___ Python tracker rep...@bugs.python.org

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

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: Removed file: http://bugs.python.org/file10645/issue2636-patches.tar.bz2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2636 ___

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

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: Removed file: http://bugs.python.org/file10647/issue2636-02.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2636 ___

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

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: Removed file: http://bugs.python.org/file11657/issue2636-01+09-02+17_backport.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2636 ___

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

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: Removed file: http://bugs.python.org/file11669/issue2636+01+09-02+17+18+19+20+21+24+26_speedup.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2636 ___

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

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: Removed file: http://bugs.python.org/file12932/issue2636-features.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2636 ___

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

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: Removed file: http://bugs.python.org/file12974/issue2636-features-2.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2636 ___

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

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: Removed file: http://bugs.python.org/file13165/issue2636-features-3.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2636 ___

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

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: Removed file: http://bugs.python.org/file13185/issue2636-features-4.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2636 ___

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: -- 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,

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: Removed file: http://bugs.python.org/file16910/test_regex_20100413 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2636 ___

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

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: Removed file: http://bugs.python.org/file16913/setup.py ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2636 ___

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

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: Removed file: http://bugs.python.org/file16914/build.log ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2636 ___

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

2012-01-28 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: Removed file: http://bugs.python.org/file21144/unnamed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2636 ___

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  1   2   >