- f13c4ba [ 1243192 ] Incorrect documentation of re.UNICODE by Georg Brandl · 20 years ago
- 6880431 SF Patch #1093896: miscellaneous doc typos by Raymond Hettinger · 21 years ago
- 758f5ea Replace last two uses of the "list" environment with "description" environments. by Fred Drake · 21 years ago
- 1793dd3 Fixed minor typo in interactive example (extra '.'s in '...' prompts) by Edward Loper · 21 years ago
- 596ba4d Granted Noam Raphael's request for minor improvements to the re module and by Raymond Hettinger · 21 years ago
- a01a2ee Applying modified version of patch #1018386, which fixes by Gustavo Niemeyer · 21 years ago
- d969775 Fixed \versionadded for the (?(id/name)yes|no) expression support. by Gustavo Niemeyer · 22 years ago
- ad3fc44 Implemented non-recursive SRE matching. by Gustavo Niemeyer · 22 years ago
- 5bcc933 SF bug #803842: Wrong description of regexp concatenation by Raymond Hettinger · 22 years ago
- bed92ee SF patch #800899: Making "|" directive from REs a bit clearer. by Raymond Hettinger · 22 years ago
- dfa7bd9 SF #801306: Bad RE in scanf example by Raymond Hettinger · 22 years ago
- 2f3e548 SF bug #732120:An extended definition of "non-overlapping" would save time. by Raymond Hettinger · 22 years ago
- f17d65d SF patch#786531 'the the' typo. Contributed by George Yoshida by Raymond Hettinger · 22 years ago
- 788617f Remove \versionchanged; the text was too complex for the GNU info by Fred Drake · 22 years ago
- c85bf58 [Bug #732124] Clarify .pos, .endpos by saying 'method' instead of 'function' by Andrew M. Kuchling · 22 years ago
- ec31047 Use \versionchanged, not \versionadded. by Martin v. Löwis · 22 years ago
- 7829e56 Patch #731514: Update recursion documentation to mention simple recursion. by Martin v. Löwis · 22 years ago
- cf146d3 - Included examples documenting how the lastindex member of by Gustavo Niemeyer · 22 years ago
- 69700ef Weaken recommendation of Friedl book; fix reference by Andrew M. Kuchling · 22 years ago
- 02a0b3b [bug #692016] update description of {m,n} modifier; you can omit the lower bound by Andrew M. Kuchling · 22 years ago
- 85f3227 [bug #696771] Remove misleading parenthetical aside by Andrew M. Kuchling · 22 years ago
- 7af24bd Fix example regular expressions that simulate scanf() constructs. by Fred Drake · 23 years ago
- a5a173e Fix broken markup. Closes SF bug #637807. by Fred Drake · 23 years ago
- 3d03968 Clarified meaning of \w and \W with respect to the UNICODE and LOCALE flags. by Fred Drake · 23 years ago
- 3adefcc Use personal e-mail address by Andrew M. Kuchling · 23 years ago
- e7c38d4 fixed the mail address in the documentation, too... by Fredrik Lundh · 23 years ago
- 2c0d322 tightened up the definition of \b and \B some more based upon discussion by Skip Montanaro · 23 years ago
- 2c51998 update docs to reflect that \b considers underscore to be part of a word. by Skip Montanaro · 23 years ago
- ffefb1d Clarify the endpos argument to the rx.match() method. Closes SF bug #597177. by Fred Drake · 23 years ago
- 5b11bdd SF patch #581414: info reader bug by Fred Drake · 23 years ago
- 53540ab Correct the RE equivalent of scanf()'s %x and %X patterns. by Fred Drake · 23 years ago
- 81bdc93 Explain octal escapes. Fixes #542226. by Martin v. Löwis · 23 years ago
- 2854c47 Remove mention of 'pre' module by Andrew M. Kuchling · 23 years ago
- 57f8e06 Document the finditer() function and method. This closes SF bug #520904. by Fred Drake · 23 years ago
- a8b6638 Remove extra verb; reported by Detlef Lannert. by Fred Drake · 23 years ago
- 8e0c82a Fix stupid typo in example. by Fred Drake · 23 years ago
- f275803 Clarify the descriptions of the positive and negative lookbehind assertions. by Fred Drake · 23 years ago
- 9479c95 Remove extra indenatation from sample interpreter session. by Fred Drake · 23 years ago
- a8e1d81 add simple example of avoiding backtracking by Skip Montanaro · 23 years ago
- b6b2aa6 Fix error in explanation of the interaction between $ and MULTILINE mode. by Fred Drake · 23 years ago
- 7bc6f7a Consistently use \textasciicircum to produce a ^ character. by Fred Drake · 23 years ago
- ed0a719 Neil Schemenauer suggested a small improvement to one of the example REs. by Fred Drake · 24 years ago
- 1cec7fa New section of regular expression examples contributed by Skip Montanaro, by Fred Drake · 24 years ago
- 1f774b0 Update obsolete e-mail address, and remove myself as a module author by Andrew M. Kuchling · 24 years ago
- 7533587 Improved error msg when a symbolic group name is redefined. Added docs by Tim Peters · 24 years ago
- 0aa811c Use the \note and \warning macros where appropriate. by Fred Drake · 24 years ago
- 9835206 A regexp example was rendered as by Tim Peters · 24 years ago
- 46ccd1d Plant a mention in the description of backreferences of the fact that by Eric S. Raymond · 24 years ago
- 51629c2 Add a caveat about boundary conditions and RE concatenation, so that the by Fred Drake · 24 years ago
- e74f8de Added an example of a string value for the replacement parameter to by Fred Drake · 24 years ago
- c547b46 Be more specific about corner cases in the description of the $ RE syntax, by Fred Drake · 24 years ago
- f4bdb57 Fix return value for m.group() for groups not in the part of the RE that by Fred Drake · 24 years ago
- 907e76b Fix up a few style nits -- avoid "e.g." and "i.e." -- these make by Fred Drake · 24 years ago
- 895aa9d Suggestion from Keith Briggs: refer to RE objects consistently instead of by Fred Drake · 24 years ago
- e20bd19 Convert several \seetext references to \seerfc and \seetitle versions. by Fred Drake · 24 years ago
- 75afc0b Document the .lastindex and .lastgroup attributes of MatchObject by Andrew M. Kuchling · 25 years ago
- 2c4f554 Fixed a large number of small problems, mostly noted by Detlef Lannert by Fred Drake · 25 years ago
- 062ea2e Made a number of revisions suggested by Fredrik Lundh. by Fred Drake · 25 years ago
- 9351dd2 Document the lookbehind assertions (closing bug#115119) by Andrew M. Kuchling · 25 years ago
- 7a90db6 Document expand() method of MatchObjects by Andrew M. Kuchling · 25 years ago
- e53793b Updates from Fredrik Lundh <effbot@telia.com> about Unicode-related behavior. by Fred Drake · 25 years ago
- 77a6c9e Minor markup nits around use of \optional. by Fred Drake · 25 years ago
- af5b766 Changed obsolete e-mail alias by Andrew M. Kuchling · 25 years ago
- 356d0ce Use \citetitle in one place. by Fred Drake · 26 years ago
- 3d0971e For "Matching vs. Searching", remove comment that the section is by Fred Drake · 26 years ago
- bfb092e Misspellling: "occurance" --> "occurrence" by Fred Drake · 26 years ago
- dda199b Moved \versionadded to end of description sections. by Fred Drake · 27 years ago
- a7998f6 Revised comments on null bytes in pattern string. by Fred Drake · 27 years ago
- cd05853 Adjust a few niggles that affected the HTML conversion (a couple of by Fred Drake · 27 years ago
- 768ac6b Start of text that describes differences between match and search. by Fred Drake · 27 years ago
- 1e270f0 Nits to support conversions. by Fred Drake · 27 years ago
- c1cea20 Added URL to HOWTO page, with reference to Regex HOWTO. by Andrew M. Kuchling · 27 years ago
- 7d447aa Moved search and match around so that search is documented first. by Guido van Rossum · 27 years ago
- 5fb2631 Explicitly document the fact that the search method returns a MatchObject. by Guido van Rossum · 27 years ago
- 10a7985 re.findall(): Mark as added in 1.5.2. by Fred Drake · 27 years ago
- d16d498 Markup nits. by Fred Drake · 27 years ago
- d22e250 Clarify wording in the description of re.split by Andrew M. Kuchling · 27 years ago
- 295da24 New section header style. by Fred Drake · 27 years ago
- 66da9d6 re is standard, not built-in. by Fred Drake · 27 years ago
- b91e934 Adjusted to use the new module synopsis support macros. by Fred Drake · 27 years ago
- 6c373f7 Document new default arg to groups() and new functions/methods by Guido van Rossum · 27 years ago
- 65b7863 Fix unclear wording pointed out by Tim Peters, about the interaction between by Andrew M. Kuchling · 27 years ago
- 42de185 Added \label to subsections which didn't have one, since this module has by Fred Drake · 27 years ago
- 2533281 Many markup changes (to \regexp, mostly) by Andrew M. Kuchling · 27 years ago
- 3a0351c Remove all uses of \sectcode; we can now use logical markup everywhere. by Fred Drake · 27 years ago
- 8214334 Remove obsolete \setindexsubitem macro. by Fred Drake · 27 years ago
- 791468f Some clarifications of out-of-range group indexes/names by Guido van Rossum · 27 years ago
- 76547c5 Minor nits. by Fred Drake · 27 years ago
- e9625e8 AMK's version from the latest pypcre distribution. This clarifies a by Guido van Rossum · 27 years ago
- 013ad98 Cleaned up some remaining markup nits. by Fred Drake · 27 years ago
- 20e0196 Logical markup. by Fred Drake · 27 years ago
- 2705e80 For the lists which describe the regular expression syntax, increase the by Fred Drake · 27 years ago
- 1947991 Remove all \bcode / \ecode cruft; this is no longer needed. See previous by Fred Drake · 27 years ago
- f5370f4 Turn the space in [\^ ...] into a hard space: [\^\ ...]. by Guido van Rossum · 27 years ago
- 4650392 Various updates to the effect that the group argument is always optional. by Guido van Rossum · 28 years ago
- 023f87f Lots of minor markup nits, all consistency related. by Fred Drake · 28 years ago
- 9754639 Document maxsplit arg for split(), with incompatibility note about 1.5 by Guido van Rossum · 28 years ago
- b2c45a8 Sigh. Apply a similar patch to the *other* occurrence of [^...]. by Guido van Rossum · 28 years ago
- c458638 In description of \D, revise markup so that the caret shows up in the HTML by Fred Drake · 28 years ago
- eb0f066 Correct small nits reported by Rob Hooft. by Guido van Rossum · 28 years ago