Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Suggestion from Keith Briggs: refer to RE objects consistently instead of | Fred Drake | 2001-04-18 | 1 | -10/+9 |
| | | | | introducing a new term ("regex") without defining it. | ||||
* | Convert several \seetext references to \seerfc and \seetitle versions. | Fred Drake | 2001-04-12 | 1 | -8/+9 |
| | | | | | These format somewhat better and include more semantic information in the source. | ||||
* | Document the .lastindex and .lastgroup attributes of MatchObject | Andrew M. Kuchling | 2000-10-18 | 1 | -0/+10 |
| | |||||
* | Fixed a large number of small problems, mostly noted by Detlef Lannert | Fred Drake | 2000-10-10 | 1 | -1/+1 |
| | | | | <lannert@lannert.rz.uni-duesseldorf.de>. | ||||
* | Made a number of revisions suggested by Fredrik Lundh. | Fred Drake | 2000-10-06 | 1 | -12/+33 |
| | | | | | Revised the first paragraph so it doesn't sound like it was written when 7-bit strings were assumed; note that Unicode strings can be used. | ||||
* | Document the lookbehind assertions (closing bug#115119) | Andrew M. Kuchling | 2000-10-05 | 1 | -0/+15 |
| | |||||
* | Document expand() method of MatchObjects | Andrew M. Kuchling | 2000-10-05 | 1 | -0/+9 |
| | |||||
* | Updates from Fredrik Lundh <effbot@telia.com> about Unicode-related | Fred Drake | 2000-09-25 | 1 | -31/+43 |
| | | | | behavior. | ||||
* | Minor markup nits around use of \optional. | Fred Drake | 2000-09-07 | 1 | -10/+10 |
| | |||||
* | Changed obsolete e-mail alias | Andrew M. Kuchling | 2000-06-27 | 1 | -2/+2 |
| | |||||
* | Use \citetitle in one place. | Fred Drake | 1999-11-09 | 1 | -1/+1 |
| | |||||
* | For "Matching vs. Searching", remove comment that the section is | Fred Drake | 1999-06-29 | 1 | -8/+6 |
| | | | | | incomplete; I don't remember what else I thought I was going to put in, but it looks o.k. to me know. | ||||
* | Misspellling: "occurance" --> "occurrence" | Fred Drake | 1999-04-09 | 1 | -1/+1 |
| | |||||
* | Moved \versionadded to end of description sections. | Fred Drake | 1999-02-02 | 1 | -1/+1 |
| | |||||
* | Revised comments on null bytes in pattern string. | Fred Drake | 1999-01-19 | 1 | -5/+6 |
| | | | | Removed "New" from module synopsis. | ||||
* | Adjust a few niggles that affected the HTML conversion (a couple of | Fred Drake | 1998-12-28 | 1 | -3/+3 |
| | | | | "^"s were being dropped in the context of [^...]). | ||||
* | Start of text that describes differences between match and search. | Fred Drake | 1998-12-22 | 1 | -5/+40 |
| | | | | Strengthen pointers to the search() function and method. | ||||
* | Nits to support conversions. | Fred Drake | 1998-11-30 | 1 | -7/+4 |
| | |||||
* | Added URL to HOWTO page, with reference to Regex HOWTO. | Andrew M. Kuchling | 1998-10-28 | 1 | -6/+6 |
| | | | | Corrected error: {,5} is not equivalent to {0,5}. | ||||
* | Moved search and match around so that search is documented first. | Guido van Rossum | 1998-10-13 | 1 | -25/+25 |
| | |||||
* | Explicitly document the fact that the search method returns a MatchObject. | Guido van Rossum | 1998-09-21 | 1 | -1/+2 |
| | | | | (Reported by Gary Herron.) | ||||
* | re.findall(): Mark as added in 1.5.2. | Fred Drake | 1998-09-18 | 1 | -0/+1 |
| | |||||
* | Markup nits. | Fred Drake | 1998-09-10 | 1 | -36/+36 |
| | |||||
* | Clarify wording in the description of re.split | Andrew M. Kuchling | 1998-08-14 | 1 | -5/+5 |
| | | | | Simplify the patterns in the examples for re.split | ||||
* | New section header style. | Fred Drake | 1998-08-10 | 1 | -1/+2 |
| | | | | Fix up a few synopses. | ||||
* | re is standard, not built-in. | Fred Drake | 1998-08-07 | 1 | -3/+6 |
| | |||||
* | Adjusted to use the new module synopsis support macros. | Fred Drake | 1998-07-23 | 1 | -2/+4 |
| | |||||
* | Document new default arg to groups() and new functions/methods | Guido van Rossum | 1998-06-29 | 1 | -6/+25 |
| | | | | groupdict() and findall(). | ||||
* | Fix unclear wording pointed out by Tim Peters, about the interaction between | Andrew M. Kuchling | 1998-06-22 | 1 | -3/+5 |
| | | | | | ^ and the pos argument to re.match(). Also, fixed a typo in libregex.tex. | ||||
* | Added \label to subsections which didn't have one, since this module has | Fred Drake | 1998-04-20 | 1 | -0/+7 |
| | | | | subsections listed in the documentation index sidebar. (Why?) | ||||
* | Many markup changes (to \regexp, mostly) | Andrew M. Kuchling | 1998-04-09 | 1 | -104/+119 |
| | | | | | Clarified text on 8-bit cleanness, complemented sets like [^5], and {m,n} qualifier. | ||||
* | Remove all uses of \sectcode; we can now use logical markup everywhere. | Fred Drake | 1998-04-04 | 1 | -1/+1 |
| | |||||
* | Remove obsolete \setindexsubitem macro. | Fred Drake | 1998-04-04 | 1 | -1/+0 |
| | |||||
* | Some clarifications of out-of-range group indexes/names | Guido van Rossum | 1998-04-03 | 1 | -5/+10 |
| | |||||
* | Minor nits. | Fred Drake | 1998-04-03 | 1 | -57/+59 |
| | | | | | | | Moved IGNORECASE & friends to "top level" definitions following compile(), since there is no other case of nesting in the manual. Use {memberdesc} and {methoddesc} as appropriate. | ||||
* | AMK's version from the latest pypcre distribution. This clarifies a | Guido van Rossum | 1998-04-02 | 1 | -6/+25 |
| | | | | | few things and adds docs for what happens to escapes in replacement strings. | ||||
* | Cleaned up some remaining markup nits. | Fred Drake | 1998-03-08 | 1 | -43/+37 |
| | | | | | Andrew: In description of (?iLmsx), you say it matches the empty string and sets the corresponding flag. Is this correct? Or does it only set the flag? | ||||
* | Logical markup. | Fred Drake | 1998-02-19 | 1 | -57/+59 |
| | | | | | Several uses of "\^" could be simplified; this fixes part of the info generation process. | ||||
* | For the lists which describe the regular expression syntax, increase the | Fred Drake | 1998-02-16 | 1 | -4/+7 |
| | | | | width available so we don't run into the left page margin. | ||||
* | Remove all \bcode / \ecode cruft; this is no longer needed. See previous | Fred Drake | 1998-02-13 | 1 | -9/+9 |
| | | | | | | | | | checkin of myformat.sty. Change "\renewcommand{\indexsubitem}{(...)}" to "\setindexsubitem{(...)}" everywhere. Some other minor nits that I happened to come across. | ||||
* | Turn the space in [\^ ...] into a hard space: [\^\ ...]. | Guido van Rossum | 1998-02-11 | 1 | -1/+1 |
| | |||||
* | Various updates to the effect that the group argument is always optional. | Guido van Rossum | 1998-01-19 | 1 | -11/+15 |
| | | | | Also documented that groups() now always returns a tuple. | ||||
* | Lots of minor markup nits, all consistency related. | Fred Drake | 1998-01-12 | 1 | -75/+88 |
| | | | | | | Consistently use trailing "()" on function / method names. Wrapped some long lines. | ||||
* | Document maxsplit arg for split(), with incompatibility note about 1.5 | Guido van Rossum | 1998-01-12 | 1 | -3/+12 |
| | | | | | | release bug. Document groups() changed behaviour (now always returns tuple). | ||||
* | Sigh. Apply a similar patch to the *other* occurrence of [^...]. | Guido van Rossum | 1998-01-12 | 1 | -1/+1 |
| | |||||
* | In description of \D, revise markup so that the caret shows up in the HTML | Fred Drake | 1998-01-06 | 1 | -1/+1 |
| | | | | | | | version as well as the dvi form. Without the fix, it showed up as an extra zero character. Bug reported by Hugh Sasse <hgs@dmu.ac.uk>. | ||||
* | Correct small nits reported by Rob Hooft. | Guido van Rossum | 1997-12-30 | 1 | -1/+1 |
| | |||||
* | Remove more commented-out text that is no longer needed. | Guido van Rossum | 1997-12-29 | 1 | -21/+0 |
| | |||||
* | Remove the commented-out warning at the top. It shouldn't be there | Guido van Rossum | 1997-12-29 | 1 | -6/+0 |
| | | | | for the 1.5 release version of the file. | ||||
* | Lots of minor nits that allow this file to get processed without failures by | Fred Drake | 1997-12-29 | 1 | -25/+27 |
| | | | | | | | | | the info generation phases. Most of the errors had occurred in the makeinfo step. Commented out the warning at the top; this should still really be removed before 1.5, but that's not my call. It generated problems for the info conversion as well. |