Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Clarify the endpos argument to the rx.match() method. | Fred Drake | 2002-08-20 | 1 | -2/+6 |
| | | | | Closes SF bug #597177. | ||||
* | SF patch #581414: info reader bug | Fred Drake | 2002-07-30 | 1 | -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 Drake | 2002-06-22 | 1 | -1/+1 |
| | | | | Closes SF bug #572169. | ||||
* | Explain octal escapes. Fixes #542226. | Martin v. Löwis | 2002-04-11 | 1 | -5/+3 |
| | |||||
* | Remove mention of 'pre' module | Andrew M. Kuchling | 2002-04-10 | 1 | -9/+0 |
| | | | | (2.2 bugfix candidate?) | ||||
* | Document the finditer() function and method. | Fred Drake | 2002-03-25 | 1 | -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 Drake | 2002-03-18 | 1 | -2/+1 |
| | |||||
* | Fix stupid typo in example. | Fred Drake | 2002-03-16 | 1 | -1/+1 |
| | |||||
* | Clarify the descriptions of the positive and negative lookbehind assertions. | Fred Drake | 2002-03-16 | 1 | -9/+30 |
| | | | | | Added examples of positive lookbehind assertions. This closes SF bug #529708. | ||||
* | Remove extra indenatation from sample interpreter session. | Fred Drake | 2002-03-05 | 1 | -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 backtracking | Skip Montanaro | 2002-03-04 | 1 | -6/+22 |
| | |||||
* | Fix error in explanation of the interaction between $ and MULTILINE mode. | Fred Drake | 2002-02-25 | 1 | -1/+1 |
| | | | | Reported by Steve Alexander. | ||||
* | Consistently use \textasciicircum to produce a ^ character. | Fred Drake | 2002-02-14 | 1 | -18/+25 |
| | | | | LaTeX really falls flat on this one! | ||||
* | Neil Schemenauer suggested a small improvement to one of the example REs. | Fred Drake | 2001-11-29 | 1 | -1/+1 |
| | |||||
* | New section of regular expression examples contributed by Skip Montanaro, | Fred Drake | 2001-11-29 | 1 | -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 author | Andrew M. Kuchling | 2001-11-05 | 1 | -2/+1 |
| | |||||
* | Improved error msg when a symbolic group name is redefined. Added docs | Tim Peters | 2001-11-03 | 1 | -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 Drake | 2001-10-20 | 1 | -4/+4 |
| | |||||
* | A regexp example was rendered as | Tim Peters | 2001-10-05 | 1 | -1/+1 |
| | | | | | | | | | | foo\d when it was clearly intended to render as foo$ Fred, is this a right way to fix it? If not, the earlier place in the same paragraph that does render as foo$ is also wrong. | ||||
* | Plant a mention in the description of backreferences of the fact that | Eric S. Raymond | 2001-08-28 | 1 | -1/+5 |
| | | | | while \0 doesn't do what one might expect, \g<0> does. | ||||
* | Add a caveat about boundary conditions and RE concatenation, so that the | Fred Drake | 2001-08-02 | 1 | -9/+12 |
| | | | | | | | documents do not make an overly-strong assertion about the properties of RE concatenation. Add an example of RE{m,} syntax and what it will and will not match. | ||||
* | Added an example of a string value for the replacement parameter to | Fred Drake | 2001-08-01 | 1 | -44/+60 |
| | | | | | | | | | re.sub(). This closes SF bug #446136. Fixed description of RE modifiers so that RE{#} and RE{#,} are more clearly described and disambiguated (plain RE{#} had not been described at all). Reported by Jeremy Craven via email. | ||||
* | Be more specific about corner cases in the description of the $ RE syntax, | Fred Drake | 2001-07-23 | 1 | -4/+7 |
| | | | | | | and include an example where the MULTILINE flag makes a real difference. This closes SF bug #441600. | ||||
* | Fix return value for m.group() for groups not in the part of the RE that | Fred Drake | 2001-07-12 | 1 | -42/+47 |
| | | | | | | matched; reported by Paul Moore. Wrapped several long lines. | ||||
* | Fix up a few style nits -- avoid "e.g." and "i.e." -- these make | Fred Drake | 2001-07-06 | 1 | -8/+10 |
| | | | | | translation more difficult, as well as reading the English more difficult for non-native speakers. | ||||
* | 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. |