summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libre.tex
Commit message (Collapse)AuthorAgeFilesLines
* Suggestion from Keith Briggs: refer to RE objects consistently instead ofFred Drake2001-04-181-10/+9
| | | | introducing a new term ("regex") without defining it.
* Convert several \seetext references to \seerfc and \seetitle versions.Fred Drake2001-04-121-8/+9
| | | | | These format somewhat better and include more semantic information in the source.
* Document the .lastindex and .lastgroup attributes of MatchObjectAndrew M. Kuchling2000-10-181-0/+10
|
* Fixed a large number of small problems, mostly noted by Detlef LannertFred Drake2000-10-101-1/+1
| | | | <lannert@lannert.rz.uni-duesseldorf.de>.
* Made a number of revisions suggested by Fredrik Lundh.Fred Drake2000-10-061-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. Kuchling2000-10-051-0/+15
|
* Document expand() method of MatchObjectsAndrew M. Kuchling2000-10-051-0/+9
|
* Updates from Fredrik Lundh <effbot@telia.com> about Unicode-relatedFred Drake2000-09-251-31/+43
| | | | behavior.
* Minor markup nits around use of \optional.Fred Drake2000-09-071-10/+10
|
* Changed obsolete e-mail aliasAndrew M. Kuchling2000-06-271-2/+2
|
* Use \citetitle in one place.Fred Drake1999-11-091-1/+1
|
* For "Matching vs. Searching", remove comment that the section isFred Drake1999-06-291-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 Drake1999-04-091-1/+1
|
* Moved \versionadded to end of description sections.Fred Drake1999-02-021-1/+1
|
* Revised comments on null bytes in pattern string.Fred Drake1999-01-191-5/+6
| | | | Removed "New" from module synopsis.
* Adjust a few niggles that affected the HTML conversion (a couple ofFred Drake1998-12-281-3/+3
| | | | "^"s were being dropped in the context of [^...]).
* Start of text that describes differences between match and search.Fred Drake1998-12-221-5/+40
| | | | Strengthen pointers to the search() function and method.
* Nits to support conversions.Fred Drake1998-11-301-7/+4
|
* Added URL to HOWTO page, with reference to Regex HOWTO.Andrew M. Kuchling1998-10-281-6/+6
| | | | Corrected error: {,5} is not equivalent to {0,5}.
* Moved search and match around so that search is documented first.Guido van Rossum1998-10-131-25/+25
|
* Explicitly document the fact that the search method returns a MatchObject.Guido van Rossum1998-09-211-1/+2
| | | | (Reported by Gary Herron.)
* re.findall(): Mark as added in 1.5.2.Fred Drake1998-09-181-0/+1
|
* Markup nits.Fred Drake1998-09-101-36/+36
|
* Clarify wording in the description of re.splitAndrew M. Kuchling1998-08-141-5/+5
| | | | Simplify the patterns in the examples for re.split
* New section header style.Fred Drake1998-08-101-1/+2
| | | | Fix up a few synopses.
* re is standard, not built-in.Fred Drake1998-08-071-3/+6
|
* Adjusted to use the new module synopsis support macros.Fred Drake1998-07-231-2/+4
|
* Document new default arg to groups() and new functions/methodsGuido van Rossum1998-06-291-6/+25
| | | | groupdict() and findall().
* Fix unclear wording pointed out by Tim Peters, about the interaction betweenAndrew M. Kuchling1998-06-221-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 hasFred Drake1998-04-201-0/+7
| | | | subsections listed in the documentation index sidebar. (Why?)
* Many markup changes (to \regexp, mostly)Andrew M. Kuchling1998-04-091-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 Drake1998-04-041-1/+1
|
* Remove obsolete \setindexsubitem macro.Fred Drake1998-04-041-1/+0
|
* Some clarifications of out-of-range group indexes/namesGuido van Rossum1998-04-031-5/+10
|
* Minor nits.Fred Drake1998-04-031-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 aGuido van Rossum1998-04-021-6/+25
| | | | | few things and adds docs for what happens to escapes in replacement strings.
* Cleaned up some remaining markup nits.Fred Drake1998-03-081-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 Drake1998-02-191-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 theFred Drake1998-02-161-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 previousFred Drake1998-02-131-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 Rossum1998-02-111-1/+1
|
* Various updates to the effect that the group argument is always optional.Guido van Rossum1998-01-191-11/+15
| | | | Also documented that groups() now always returns a tuple.
* Lots of minor markup nits, all consistency related.Fred Drake1998-01-121-75/+88
| | | | | | Consistently use trailing "()" on function / method names. Wrapped some long lines.
* Document maxsplit arg for split(), with incompatibility note about 1.5Guido van Rossum1998-01-121-3/+12
| | | | | | release bug. Document groups() changed behaviour (now always returns tuple).
* Sigh. Apply a similar patch to the *other* occurrence of [^...].Guido van Rossum1998-01-121-1/+1
|
* In description of \D, revise markup so that the caret shows up in the HTMLFred Drake1998-01-061-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 Rossum1997-12-301-1/+1
|
* Remove more commented-out text that is no longer needed.Guido van Rossum1997-12-291-21/+0
|
* Remove the commented-out warning at the top. It shouldn't be thereGuido van Rossum1997-12-291-6/+0
| | | | for the 1.5 release version of the file.
* Lots of minor nits that allow this file to get processed without failures byFred Drake1997-12-291-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.