diff options
author | Thomas Wouters <thomas@python.org> | 2000-07-16 12:04:32 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-07-16 12:04:32 (GMT) |
commit | 7e47402264cf87b9bbb61fc9ff610af08add7c7b (patch) | |
tree | 8103f0f2df8ca09de0b8cfd9d38b4982c6993f16 /Modules/pypcre.c | |
parent | c533e4a01207f74b9c4f9a7414631a3c7b711595 (diff) | |
download | cpython-7e47402264cf87b9bbb61fc9ff610af08add7c7b.zip cpython-7e47402264cf87b9bbb61fc9ff610af08add7c7b.tar.gz cpython-7e47402264cf87b9bbb61fc9ff610af08add7c7b.tar.bz2 |
Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either
comments, docstrings or error messages. I fixed two minor things in
test_winreg.py ("didn't" -> "Didn't" and "Didnt" -> "Didn't").
There is a minor style issue involved: Guido seems to have preferred English
grammar (behaviour, honour) in a couple places. This patch changes that to
American, which is the more prominent style in the source. I prefer English
myself, so if English is preferred, I'd be happy to supply a patch myself ;)
Diffstat (limited to 'Modules/pypcre.c')
-rw-r--r-- | Modules/pypcre.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/pypcre.c b/Modules/pypcre.c index 2f493c0..18b319b 100644 --- a/Modules/pypcre.c +++ b/Modules/pypcre.c @@ -493,7 +493,7 @@ if ((options & ~PUBLIC_STUDY_OPTIONS) != 0) caseless = ((re->options | options) & PCRE_CASELESS) != 0; -/* For an anchored pattern, or an unchored pattern that has a first char, or a +/* For an anchored pattern, or an unanchored pattern that has a first char, or a multiline pattern that matches only at "line starts", no further processing at present. */ @@ -1636,8 +1636,8 @@ for (;; ptr++) *code++ = (repeat_min & 255); } - /* If the mininum is 1 and the previous item was a character string, - we either have to put back the item that got cancelled if the string + /* If the minimum is 1 and the previous item was a character string, + we either have to put back the item that got canceled if the string length was 1, or add the character back onto the end of a longer string. For a character type nothing need be done; it will just get put back naturally. Note that the final character is always going to @@ -1649,7 +1649,7 @@ for (;; ptr++) } /* For a single negated character we also have to put back the - item that got cancelled. */ + item that got canceled. */ else if (*previous == OP_NOT) code++; |