Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-33892: Doc: Use gender neutral words (GH-7770) | Andrés Delfino | 2018-06-18 | 1 | -4/+4 |
| | | | | | (cherry picked from commit 5092439c2cb32112a5869b138011d38491db90a9) Co-authored-by: Andrés Delfino <adelfino@gmail.com> | ||||
* | [2.7] bpo-33503: Fix the broken pypi link in the source and the ↵ | Stéphane Wirtel | 2018-05-16 | 1 | -1/+1 |
| | | | | | | | documentation (GH-6814). (GH-6905) (cherry picked from commit 19177fbd5d6d9b29ccc302d65f9d9417ece082ce) Co-authored-by: Stéphane Wirtel <stephane@wirtel.be> | ||||
* | [2.7] bpo-32211: Document the existing bug in re.findall() and ↵ | Serhiy Storchaka | 2018-01-04 | 1 | -4/+10 |
| | | | | | re.finditer(). (GH-4695). (#5096) (cherry picked from commit 1e6d8525f9dd3dcdc83adb93b164082c8b95d17a) | ||||
* | bpo-15606: Improve the re.VERBOSE documentation. (GH-4366) (#4395) | Miss Islington (bot) | 2017-11-14 | 1 | -1/+2 |
| | | | (cherry picked from commit b0b44b4b3337297007f5ef87220a75df204399f8) | ||||
* | added re.UNICODE effects to insensitive flags (#1781) | Brian Ward | 2017-05-24 | 1 | -3/+6 |
| | |||||
* | bpo-30021: Add examples for re.escape(). (#1048) (#1118) | Serhiy Storchaka | 2017-04-13 | 1 | -4/+15 |
| | | | | | And fix the parameter name. (cherry picked from commit 8fc7bc2b7631ee819ee614e47b6f44bacebe1574) | ||||
* | bpo-22594: Add a link to the regex module in re documentation (GH-241) (GH-321) | Mariatta | 2017-02-26 | 1 | -0/+6 |
| | | | (cherry picked from commit ed6795e46f7653e23b862efad240a93453e7df97) | ||||
* | Issue #27800: Document limitation and workaround for multiple RE repetitions | Martin Panter | 2016-10-15 | 1 | -0/+6 |
| | |||||
* | Issue #23921: Standardized documentation whitespace formatting. | Serhiy Storchaka | 2016-05-10 | 1 | -7/+7 |
| | | | | Original patch by James Edwards. | ||||
* | Clarify greedy-qualifier example, avoid HTML. | Georg Brandl | 2016-04-12 | 1 | -4/+4 |
| | |||||
* | Rewrite re.VERBOSE section. | Zachary Ware | 2015-11-12 | 1 | -7/+9 |
| | | | | | | | It now has slightly better rationale and a less awkward wording in the explanation. Inspired by a report of a neither/or conflict by 'animalize' on docs@. | ||||
* | Issues #814253, #9179: Warnings now are raised when group references and | Serhiy Storchaka | 2015-02-21 | 1 | -2/+5 |
| | | | | | conditional group references are used in lookbehind assertions in regular expressions. | ||||
* | remove incorrect plural | Benjamin Peterson | 2014-11-25 | 1 | -1/+1 |
| | |||||
* | Closes #22736: move seealso to the bottom of the section about RE syntax. | Georg Brandl | 2014-10-28 | 1 | -7/+8 |
| | |||||
* | Fix a typo caught by Gabriella Capone on docs@ | Zachary Ware | 2014-10-19 | 1 | -1/+1 |
| | |||||
* | #21690: fix a couple of links in the docs of the re module. Noticed by ↵ | Ezio Melotti | 2014-06-19 | 1 | -2/+2 |
| | | | | Julian Gilbey. | ||||
* | Issue #21593: (from StackOverflow) minor doc clarification for re.search. | Terry Jan Reedy | 2014-05-30 | 1 | -1/+1 |
| | |||||
* | Fix example in backreference description. Found by Alexander Heger on docs@. | Georg Brandl | 2013-10-06 | 1 | -1/+1 |
| | |||||
* | Closes #15956: improve documentation of named groups and how to reference them. | Georg Brandl | 2013-10-06 | 1 | -15/+28 |
| | |||||
* | #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 |
| | |||||
* | Fix closes Issue14258 - Clarify the re.LOCALE and re.UNICODE flags for \S ↵ | Senthil Kumaran | 2012-04-10 | 1 | -12/+12 |
| | | | | class | ||||
* | Closes #14250: regex.flags has not only explicit flags but also those from ↵ | Georg Brandl | 2012-03-17 | 1 | -2/+2 |
| | | | | the pattern | ||||
* | 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 |
| | |||||
* | Fix closes issue14258 - added clarification to \W and \S flags | Senthil Kumaran | 2012-03-12 | 1 | -8/+12 |
| | |||||
* | #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 ↵ | Ezio Melotti | 2012-02-29 | 1 | -5/+10 |
| | | | | patch and tests by Martin Pool. | ||||
* | update to new C roles and directives | Sandro Tosi | 2012-01-14 | 1 | -5/+5 |
| | |||||
* | 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 |
| | |||||
* | Normalize the keyword arguments documentation notation in re.rst. Closes ↵ | Eli Bendersky | 2011-11-13 | 1 | -11/+11 |
| | | | | issue #12875 | ||||
* | Issue #12875: explicitly specify default value of the optional 'flags' ↵ | Eli Bendersky | 2011-11-11 | 1 | -7/+7 |
| | | | | argument to re.* functions. Closes #12875 | ||||
* | #13219: clarify section about character sets in the re documentation. | Ezio Melotti | 2011-10-20 | 1 | -24/+30 |
| | |||||
* | fix description of \r; thanks to Thomas Waldmann from docs@ | Sandro Tosi | 2011-08-19 | 1 | -1/+1 |
| | |||||
* | Remove 3.1 from versionchanged | Ezio Melotti | 2010-11-26 | 1 | -3/+3 |
| | |||||
* | Merged revisions ↵ | Georg Brandl | 2010-11-26 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 85843,85849-85850,85867,85907,85914,86134,86187,86315-86316,86390,86424-86425,86428 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85843 | georg.brandl | 2010-10-26 08:59:23 +0200 (Di, 26 Okt 2010) | 1 line Markup fix. ........ r85849 | georg.brandl | 2010-10-26 21:31:06 +0200 (Di, 26 Okt 2010) | 1 line #10200: typo. ........ r85850 | georg.brandl | 2010-10-26 21:58:11 +0200 (Di, 26 Okt 2010) | 1 line #10200: typo. ........ r85867 | georg.brandl | 2010-10-27 22:01:51 +0200 (Mi, 27 Okt 2010) | 1 line Add David. ........ r85907 | georg.brandl | 2010-10-29 06:54:13 +0200 (Fr, 29 Okt 2010) | 1 line #10222: fix for overzealous AIX compiler. ........ r85914 | georg.brandl | 2010-10-29 08:17:38 +0200 (Fr, 29 Okt 2010) | 1 line (?:...) is a non-capturing, but still grouping construct. ........ r86134 | georg.brandl | 2010-11-03 08:41:00 +0100 (Mi, 03 Nov 2010) | 1 line A newline in lineno output breaks pyframe output. ........ r86187 | georg.brandl | 2010-11-05 08:10:41 +0100 (Fr, 05 Nov 2010) | 1 line Move glossary entry to the right position and fix link. ........ r86315 | georg.brandl | 2010-11-08 12:05:18 +0100 (Mo, 08 Nov 2010) | 1 line Fix latex conversion glitch in property/feature descriptions. ........ r86316 | georg.brandl | 2010-11-08 12:08:35 +0100 (Mo, 08 Nov 2010) | 1 line Fix typo. ........ r86390 | georg.brandl | 2010-11-10 08:57:10 +0100 (Mi, 10 Nov 2010) | 1 line Fix typo. ........ r86424 | georg.brandl | 2010-11-12 07:19:48 +0100 (Fr, 12 Nov 2010) | 1 line Build a PDF of the FAQs too. ........ r86425 | georg.brandl | 2010-11-12 07:20:12 +0100 (Fr, 12 Nov 2010) | 1 line #10008: Fix duplicate index entry. ........ r86428 | georg.brandl | 2010-11-12 09:09:26 +0100 (Fr, 12 Nov 2010) | 1 line Fix weird line block in table. ........ | ||||
* | Merged revisions 82832,82834 via svnmerge from | Georg Brandl | 2010-08-01 | 1 | -2/+2 |
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82832 | georg.brandl | 2010-07-12 11:00:29 +0200 (Mo, 12 Jul 2010) | 1 line Take care of duplicate target name warnings. ........ r82834 | georg.brandl | 2010-07-12 11:06:13 +0200 (Mo, 12 Jul 2010) | 1 line Use raw string literals for regexes containing backlash. ........ | ||||
* | Merged revisions 82771 via svnmerge from | R. David Murray | 2010-07-10 | 1 | -0/+5 |
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82771 | r.david.murray | 2010-07-10 10:23:36 -0400 (Sat, 10 Jul 2010) | 2 lines Add missing docs for re module 'purge' function. ........ | ||||
* | Put docs for RegexObject.search() before RegexObject.match() to mirror ↵ | Georg Brandl | 2010-06-01 | 1 | -23/+27 |
| | | | | re.search() and re.match() order. | ||||
* | #8785: less confusing description of regex.find*. | Georg Brandl | 2010-05-22 | 1 | -2/+6 |
| | |||||
* | Issue 8671: Whitespace fix. | Eric Smith | 2010-05-09 | 1 | -1/+1 |
| | |||||
* | Fix #6538. Markup RegexObject and MatchObject as classes. Patch by Ryan Arana. | Brian Curtin | 2010-03-25 | 1 | -173/+176 |
| | |||||
* | #7685: typo | Ezio Melotti | 2010-01-13 | 1 | -5/+5 |
| | |||||
* | #6679: Remove mention that sub supports no flags. | Georg Brandl | 2009-08-13 | 1 | -3/+1 |
| | |||||
* | Issue #6561: '\d' regular expression should not match characters of | Mark Dickinson | 2009-07-28 | 1 | -1/+2 |
| | | | | | category [No]; only those of category [Nd]. (Backport of r74237 from py3k.) | ||||
* | #6576: fix cross-refs in re docs. | Georg Brandl | 2009-07-26 | 1 | -23/+26 |
| | |||||
* | #4882: document named group behavior a bit better. | Georg Brandl | 2009-03-31 | 1 | -7/+9 |
| |