| Commit message (Expand) | Author | Age | Files | Lines |
* | #16304: clarify match objects docs. Initial patch by Jan Duzinkiewicz. | Ezio Melotti | 2012-11-04 | 1 | -3/+10 |
|
|
* | #14519: fix the regex used in the scanf example. | Ezio Melotti | 2012-04-29 | 1 | -2/+2 |
|
|
* | #14461: fix wording. | Ezio Melotti | 2012-04-29 | 1 | -1/+1 |
|
|
* | #14155: add a note about \b. | Ezio Melotti | 2012-04-29 | 1 | -0/+3 |
|
|
* | Closes #14250: regex.flags has not only explicit flags but also implicit flag... | Georg Brandl | 2012-03-17 | 1 | -2/+3 |
|
|
* | Closes #14343: avoid shadowing builtin input() in example code. | Georg Brandl | 2012-03-17 | 1 | -2/+2 |
|
|
* | Closes #14342: remove out-of-date section about avoiding recursion errors. | Georg Brandl | 2012-03-17 | 1 | -22/+0 |
|
|
* | Closes #14283: match() and search() are regex methods, not match methods. | Georg Brandl | 2012-03-14 | 1 | -5/+4 |
|
|
* | #14155: remove duplication about search vs match in re doc. | Ezio Melotti | 2012-02-29 | 1 | -52/+28 |
|
|
* | #10713: Improve documentation for \b and \B and add a few tests. Initial pat... | Ezio Melotti | 2012-02-29 | 1 | -8/+14 |
|
|
* | Issue #13690: add re.DEBUG; patch by Filip GruszczyĆski | Sandro Tosi | 2012-01-01 | 1 | -0/+5 |
|
|
* | #13613: fix example in re doc. | Ezio Melotti | 2011-12-16 | 1 | -6/+6 |
|
|
* | #13219: clarify section about character sets in the re documentation. | Ezio Melotti | 2011-10-20 | 1 | -24/+30 |
|
|
* | Issue 11931: Minor punctuation/grammar/wording fixups to the regex docs | Raymond Hettinger | 2011-10-19 | 1 | -12/+11 |
|
|
* | fix description of \r; thanks to Thomas Waldmann from docs@ | Sandro Tosi | 2011-08-19 | 1 | -1/+1 |
|
|
* | Clean-up example. | Raymond Hettinger | 2011-05-23 | 1 | -31/+41 |
|
|
* | Further beautification of the example | Raymond Hettinger | 2011-05-13 | 1 | -3/+6 |
|
|
* | Neaten up example so it can be cut and pasted. | Raymond Hettinger | 2011-05-13 | 1 | -2/+2 |
|
|
* | Fix unbound local error in RE tokenizer example. Thanks to Herman L. Jackson. | Georg Brandl | 2011-05-13 | 1 | -1/+2 |
|
|
* | forward merge from 3.1 | Senthil Kumaran | 2011-03-12 | 1 | -5/+6 |
|\ |
|
| * | Fix issue11283 - Clarifying a re pattern in the re module docs for conditiona... | Senthil Kumaran | 2011-03-12 | 1 | -5/+6 |
|
|
| * | Merged revisions 85820,85823,85825,85840,85843-85845,85849-85851,85855,85867,... | Georg Brandl | 2010-11-26 | 1 | -1/+1 |
|
|
| * | Merged revisions 82832,82834 via svnmerge from | Georg Brandl | 2010-08-01 | 1 | -2/+2 |
|
|
| * | Merged revisions 83217 via svnmerge from | Georg Brandl | 2010-08-01 | 1 | -7/+4 |
|
|
| * | Merged revisions 82301 via svnmerge from | Georg Brandl | 2010-07-11 | 1 | -25/+33 |
|
|
| * | Merged revisions 82771 via svnmerge from | R. David Murray | 2010-07-10 | 1 | -0/+5 |
|
|
| * | Merged revisions 79434 via svnmerge from | Brian Curtin | 2010-03-26 | 1 | -170/+175 |
|
|
| * | Merged revisions 77457 via svnmerge from | Ezio Melotti | 2010-01-13 | 1 | -5/+5 |
|
|
| * | Merged revisions 73941-73943,74076,74094,74186,74211-74214,74247,74254,74262,... | Georg Brandl | 2009-08-13 | 1 | -26/+27 |
|
|
* | | Make the example a little more interesting and useful. | Raymond Hettinger | 2010-12-07 | 1 | -0/+3 |
|
|
* | | Note improvements to the docs. | Raymond Hettinger | 2010-12-06 | 1 | -2/+4 |
|
|
* | | (?:...) is a non-capturing, but still grouping construct. | Georg Brandl | 2010-10-29 | 1 | -1/+1 |
|
|
* | | Migrate to Sphinx 1.0 C language constructs. | Georg Brandl | 2010-10-06 | 1 | -5/+5 |
|
|
* | | Fix typo in example regular expression. | Raymond Hettinger | 2010-09-17 | 1 | -1/+1 |
|
|
* | | Add tokenizer example to regex docs. | Raymond Hettinger | 2010-09-16 | 1 | -0/+63 |
|
|
* | | #6538: fix regex documentation again -- use fictional class names "regex" and... | Georg Brandl | 2010-07-29 | 1 | -200/+198 |
|
|
* | | Remove Python 1.5 compatibility note. | Georg Brandl | 2010-07-29 | 1 | -7/+4 |
|
|
* | | Use raw string literals for regexes containing backlash. | Georg Brandl | 2010-07-12 | 1 | -2/+2 |
|
|
* | | Add missing docs for re module 'purge' function. | R. David Murray | 2010-07-10 | 1 | -0/+5 |
|
|
* | | Merged revisions 80605-80609,80642-80646,80651-80652,80674,80684-80686,80748,... | Benjamin Peterson | 2010-06-27 | 1 | -25/+33 |
|
|
* | | Add MatchObject.groups which got messed up during a merge. | Brian Curtin | 2010-04-08 | 1 | -0/+3 |
|
|
* | | Merged revisions 79430 via svnmerge from | Brian Curtin | 2010-03-26 | 1 | -171/+174 |
|
|
* | | Merged revisions 77455 via svnmerge from | Ezio Melotti | 2010-01-13 | 1 | -5/+5 |
|
|
* | | Switch more function arguments docs to new-style. | Georg Brandl | 2009-09-02 | 1 | -16/+15 |
|
|
* | | Merged revisions 74328,74332-74333,74365 via svnmerge from | Georg Brandl | 2009-08-13 | 1 | -3/+1 |
|
|
* | | Issue #6561: '\d' in a regular expression should match only Unicode | Mark Dickinson | 2009-07-28 | 1 | -5/+6 |
|
|
* | | Merged revisions 74205 via svnmerge from | Georg Brandl | 2009-07-26 | 1 | -23/+26 |
|/ |
|
* | #6235: ASCII also affects \[dD] escapes. | Georg Brandl | 2009-06-08 | 1 | -3/+3 |
|
|
* | Remove duplicated sentence. Remove duplicated sentence. | Georg Brandl | 2009-06-08 | 1 | -2/+1 |
|
|
* | Typo fix; constant name is uppercase | Andrew M. Kuchling | 2009-06-01 | 1 | -1/+1 |
|
|