mirror of
https://github.com/python/cpython.git
synced 2024-12-24 09:15:04 +08:00
fixed bug in comment matching
This commit is contained in:
parent
b58e6b10b6
commit
ed2ed9483f
@ -19,13 +19,13 @@ sublist is not used, hence always None.
|
|||||||
# Many thanks for regular expression debugging & authoring are due to:
|
# Many thanks for regular expression debugging & authoring are due to:
|
||||||
# Tim (the-incredib-ly y'rs) Peters and Cristian Tismer
|
# Tim (the-incredib-ly y'rs) Peters and Cristian Tismer
|
||||||
# So, who owns the copyright? ;-) How about this:
|
# So, who owns the copyright? ;-) How about this:
|
||||||
# Copyright 1996-1997:
|
# Copyright 1996-2000:
|
||||||
# Mitchell S. Chapman,
|
# Mitchell S. Chapman,
|
||||||
# Zachary Roadhouse,
|
# Zachary Roadhouse,
|
||||||
# Tim Peters,
|
# Tim Peters,
|
||||||
# Just van Rossum
|
# Just van Rossum
|
||||||
|
|
||||||
__version__ = "0.3.2"
|
__version__ = "0.3.3"
|
||||||
|
|
||||||
import string, regex
|
import string, regex
|
||||||
|
|
||||||
@ -86,7 +86,7 @@ for keyword in keywordsList:
|
|||||||
keyPat = keyPat + keyword + "\|"
|
keyPat = keyPat + keyword + "\|"
|
||||||
keyPat = keyPat[:-2] + "\)" + nonKeyPat
|
keyPat = keyPat[:-2] + "\)" + nonKeyPat
|
||||||
|
|
||||||
matchPat = keyPat + "\|" + commentPat + "\|" + tripleQuotePat + "\|" + quotePat
|
matchPat = commentPat + "\|" + keyPat + "\|" + tripleQuotePat + "\|" + quotePat
|
||||||
matchRE = regex.compile(matchPat)
|
matchRE = regex.compile(matchPat)
|
||||||
|
|
||||||
idKeyPat = "[ \t]*[A-Za-z_][A-Za-z_0-9.]*" # Ident w. leading whitespace.
|
idKeyPat = "[ \t]*[A-Za-z_][A-Za-z_0-9.]*" # Ident w. leading whitespace.
|
||||||
|
Loading…
Reference in New Issue
Block a user