summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libre.tex
Commit message (Collapse)AuthorAgeFilesLines
* Another fix.Georg Brandl2007-04-011-1/+1
|
* [Bug #848556] Remove \d* from second alternative to avoid exponential case ↵Andrew M. Kuchling2006-07-311-1/+1
| | | | when repeating match
* More \exception fixes.Georg Brandl2006-03-171-1/+1
|
* Remove regsub, reconvert, regex, regex_syntax and everything under lib-old.Neal Norwitz2006-03-161-4/+1
|
* [ 1243192 ] Incorrect documentation of re.UNICODEGeorg Brandl2005-08-021-12/+29
|
* SF Patch #1093896: miscellaneous doc typosRaymond Hettinger2005-01-011-2/+2
|
* Replace last two uses of the "list" environment with "description"Fred Drake2004-11-111-6/+6
| | | | | | | | | environments. Closes SF bug #692442: Konqueror can't render docs because of malformed HTML. While the generated HTML is still terrible, the cited cases of <DL COMPACT> have been removed. The general problem of XHTML conformance has not been solved, but is endemic to LaTeX2HTML output.
* Fixed minor typo in interactive example (extra '.'s in '...' prompts)Edward Loper2004-09-281-2/+2
|
* Granted Noam Raphael's request for minor improvements to the re module andRaymond Hettinger2004-09-241-6/+12
| | | | | | | | | | | | | | its documentation. * Documented that the compiled re methods are supposed to be more full featured than their simpilified function counterparts. * Documented the existing start and stop position arguments for the findall() and finditer() methods of compiled regular expression objects. * Added an optional flags argument to the re.findall() and re.finditer() functions. This aligns their API with that for re.search() and re.match().
* Applying modified version of patch #1018386, which fixesGustavo Niemeyer2004-09-031-1/+2
| | | | some escaping bugs in SRE.
* Fixed \versionadded for the (?(id/name)yes|no) expression support.Gustavo Niemeyer2003-10-181-1/+1
|
* Implemented non-recursive SRE matching.Gustavo Niemeyer2003-10-171-0/+9
|
* SF bug #803842: Wrong description of regexp concatenationRaymond Hettinger2003-09-101-4/+5
|
* SF patch #800899: Making "|" directive from REs a bit clearer.Raymond Hettinger2003-09-101-8/+7
|
* SF #801306: Bad RE in scanf exampleRaymond Hettinger2003-09-091-1/+1
|
* SF bug #732120:An extended definition of "non-overlapping" would save time.Raymond Hettinger2003-08-311-2/+3
| | | | | Clarified the meaning of non-overlapping in patterns with zero length matches.
* SF patch#786531 'the the' typo. Contributed by George YoshidaRaymond Hettinger2003-08-121-1/+1
|
* Remove \versionchanged; the text was too complex for the GNU infoFred Drake2003-07-161-4/+4
| | | | | conversion to support. Keep the content as normal content, with a note that this applies starting in Python 2.3.
* [Bug #732124] Clarify .pos, .endpos by saying 'method' instead of 'function'Andrew M. Kuchling2003-05-131-18/+19
| | | | Also, put match() description before search(); search() refers to match()
* Use \versionchanged, not \versionadded.Martin v. Löwis2003-05-031-1/+1
|
* Patch #731514: Update recursion documentation to mention simple recursion.Martin v. Löwis2003-05-031-11/+14
|
* - Included examples documenting how the lastindex member ofGustavo Niemeyer2003-04-201-5/+9
| | | | match objects work.
* Weaken recommendation of Friedl book; fix referenceAndrew M. Kuchling2003-03-041-4/+4
|
* [bug #692016] update description of {m,n} modifier; you can omit the lower boundAndrew M. Kuchling2003-03-041-3/+4
|
* [bug #696771] Remove misleading parenthetical asideAndrew M. Kuchling2003-03-041-2/+0
|
* Fix example regular expressions that simulate scanf() constructs.Fred Drake2002-12-031-3/+3
|
* Fix broken markup.Fred Drake2002-11-131-1/+1
| | | | Closes SF bug #637807.
* Clarified meaning of \w and \W with respect to the UNICODE and LOCALE flags.Fred Drake2002-11-121-5/+5
| | | | Closes SF bug #635595.
* Use personal e-mail addressAndrew M. Kuchling2002-10-301-1/+1
|
* fixed the mail address in the documentation, too...Fredrik Lundh2002-10-191-1/+1
|
* tightened up the definition of \b and \B some more based upon discussionSkip Montanaro2002-09-071-7/+11
| | | | after the last checkin.
* update docs to reflect that \b considers underscore to be part of a word.Skip Montanaro2002-09-061-2/+2
|
* Clarify the endpos argument to the rx.match() method.Fred Drake2002-08-201-2/+6
| | | | Closes SF bug #597177.
* SF patch #581414: info reader bugFred Drake2002-07-301-1/+3
| | | | | | | | The "Matching vs. Searching" Info node is unreachable from the Info program (but is fine in Emacs's Info mode). This patch seems to fix it. This is the only occurrence where the info reader fails, so probably it could be addressed in the python docs as a workaround. Forwarded the report to the info maintainer.
* Correct the RE equivalent of scanf()'s %x and %X patterns.Fred Drake2002-06-221-1/+1
| | | | Closes SF bug #572169.
* Explain octal escapes. Fixes #542226.Martin v. Löwis2002-04-111-5/+3
|
* Remove mention of 'pre' moduleAndrew M. Kuchling2002-04-101-9/+0
| | | | (2.2 bugfix candidate?)
* Document the finditer() function and method.Fred Drake2002-03-251-2/+26
| | | | | | | | This closes SF bug #520904. Explain that many of the escapes supported by string literals are also supported by the RE compiler, and list which ones. This closes SF bug #529923.
* Remove extra verb; reported by Detlef Lannert.Fred Drake2002-03-181-2/+1
|
* Fix stupid typo in example.Fred Drake2002-03-161-1/+1
|
* Clarify the descriptions of the positive and negative lookbehind assertions.Fred Drake2002-03-161-9/+30
| | | | | Added examples of positive lookbehind assertions. This closes SF bug #529708.
* Remove extra indenatation from sample interpreter session.Fred Drake2002-03-051-11/+11
| | | | | Remove whitespace from the middle of an inline RE example; it was OK for the typeset formats, but LaTeX2HTML is more touchy about this.
* add simple example of avoiding backtrackingSkip Montanaro2002-03-041-6/+22
|
* Fix error in explanation of the interaction between $ and MULTILINE mode.Fred Drake2002-02-251-1/+1
| | | | Reported by Steve Alexander.
* Consistently use \textasciicircum to produce a ^ character.Fred Drake2002-02-141-18/+25
| | | | LaTeX really falls flat on this one!
* Neil Schemenauer suggested a small improvement to one of the example REs.Fred Drake2001-11-291-1/+1
|
* New section of regular expression examples contributed by Skip Montanaro,Fred Drake2001-11-291-0/+56
| | | | | with some extensions and changes from me. This closes SF patch #472825.
* Update obsolete e-mail address, and remove myself as a module authorAndrew M. Kuchling2001-11-051-2/+1
|
* Improved error msg when a symbolic group name is redefined. Added docsTim Peters2001-11-031-17/+18
| | | | | | and NEWS. Bugfix candidate? That's a dilemma for Anthony <wink>: /F did fix a longstanding bug here, but the fix can cause code to raise an exception that previously worked by accident.
* Use the \note and \warning macros where appropriate.Fred Drake2001-10-201-4/+4
|