issues
search
jamadden
/
mrab-regex-hg
Automatically exported from code.google.com/p/mrab-regex-hg
0
stars
2
forks
source link
issues
Newest
Newest
Most commented
Recently updated
Oldest
Least commented
Least recently updated
Non-conformance to Unicode UAX#29 re: ZWJ / ZWNJ
#85
GoogleCodeExporter
closed
9 years ago
2
Trouble installing on Windows.
#84
GoogleCodeExporter
closed
9 years ago
14
slash handling in presence of a quantifier
#83
GoogleCodeExporter
closed
9 years ago
4
error range does not work
#82
GoogleCodeExporter
closed
9 years ago
5
ply package unit tests fail with re replaced by regex
#81
GoogleCodeExporter
closed
9 years ago
5
Escape characters throws an exception
#80
GoogleCodeExporter
closed
9 years ago
4
I need to scape chars in \L option
#79
GoogleCodeExporter
closed
9 years ago
2
"Captures"doesn't work for recursive calls
#78
GoogleCodeExporter
closed
9 years ago
1
excluding matches matching a given subpattern?
#77
GoogleCodeExporter
closed
9 years ago
2
evaluation of case-folding (quantifiers, alternates ...)?
#76
GoogleCodeExporter
closed
9 years ago
2
DEBUG flag
#75
GoogleCodeExporter
closed
9 years ago
5
expose the parsed structure of the regex pattern (for highlighting)
#74
GoogleCodeExporter
closed
9 years ago
4
conditional patterns
#73
GoogleCodeExporter
closed
9 years ago
1
repeated expressions (?1) - already supported?
#72
GoogleCodeExporter
closed
9 years ago
4
non-greedy quantifier in lookbehind
#71
GoogleCodeExporter
closed
9 years ago
2
Performance regression somewhere between 0.1.20110315 and 0.1.20120613
#70
GoogleCodeExporter
closed
9 years ago
2
Changing DEFAULT_VERSION does not actually work.
#69
GoogleCodeExporter
closed
9 years ago
4
Fails to build on s390x
#68
GoogleCodeExporter
closed
9 years ago
5
regex.match('\p{Symbol}',u'\ufffd') is None, should match
#67
GoogleCodeExporter
closed
9 years ago
4
regex.search("((a|b(?1)c){3,5})", "baaaaca", flags=regex.V1).groups() returns ('baaaac', 'baaaac') instead of ('aaaa', 'a')
#66
GoogleCodeExporter
closed
9 years ago
1
Can not install Ver. 0.1.20120301 from pypi under python 3.2.2 on Mac OS X 10.6.8
#65
GoogleCodeExporter
closed
9 years ago
3
Problems fuzzy-matching on long strings
#64
GoogleCodeExporter
closed
9 years ago
8
regex.search("[[:ascii:]]", "\N{KELVIN SIGN}", flags=regex.I|regex.V1) doesn't return None
#63
GoogleCodeExporter
closed
9 years ago
4
repeating zero width anchor - difference to re
#62
GoogleCodeExporter
closed
9 years ago
9
regex.search("[^a]", "A", regex.I).group(0) returns '' incorrectly
#61
GoogleCodeExporter
closed
9 years ago
1
regex.search("(q1|.)*(q2|.)*(x(a|bc)*y){2,}", "xayxay") returns None incorrectly
#60
GoogleCodeExporter
closed
9 years ago
1
regex.search("\\Z", "a\na\n") returns None incorrectly
#59
GoogleCodeExporter
closed
9 years ago
1
bad named character escape sequences like "\\N{1}" treats as "N"
#58
GoogleCodeExporter
closed
9 years ago
1
Unicode 6.1 support
#57
GoogleCodeExporter
closed
9 years ago
2
reconsider case-changing controls in replacement?
#56
GoogleCodeExporter
closed
9 years ago
2
regex.search("^(?:a?b?)*$", "ac") take a very long time.
#55
GoogleCodeExporter
closed
9 years ago
4
regex.search("(a|)*\\d", "a"*80) causes MemoryError
#54
GoogleCodeExporter
closed
9 years ago
1
regex.search("(a|)+", "a") causes MemoryError
#53
GoogleCodeExporter
closed
9 years ago
1
regex.search("(\\1xx|){6}", "xx", flags=regex.V1).span(0,1) returns incorrect value
#52
GoogleCodeExporter
closed
9 years ago
1
regex.search("((a)(?1)|(?2))", "a", flags=regex.V1) returns None incorrectly
#51
GoogleCodeExporter
closed
9 years ago
1
not all keywords are found by named list with overlapping keywords when full Unicode casefolding is required
#50
GoogleCodeExporter
closed
9 years ago
1
regex.search("(a)(?<=b(?1))", "baz", regex.V1) returns None incorrectly
#49
GoogleCodeExporter
closed
9 years ago
1
regex.search("(a(?(1)\\1)){4}", "a"*10, flags=regex.V1).group(0,1) returns ('aaaaa', 'a') instead of ('aaaaaaaaaa', 'aaaa')
#48
GoogleCodeExporter
closed
9 years ago
1
regex.compile("a#comment\n*", flags=regex.X) causes "_regex_core.error: nothing to repeat"
#47
GoogleCodeExporter
closed
9 years ago
1
regex.compile("a(?x: b c )d") causes "_regex_core.error: missing )"
#46
GoogleCodeExporter
closed
9 years ago
1
regex.compile("^(?:a(?:(?:))+)+") causes "_regex_core.error: nothing to repeat"
#45
GoogleCodeExporter
closed
9 years ago
1
regex.compile("(?=abc){3}abc") causes "_regex_core.error: nothing to repeat"
#44
GoogleCodeExporter
closed
9 years ago
1
regex.compile("a(?#xxx)*") causes "_regex_core.error: nothing to repeat"
#43
GoogleCodeExporter
closed
9 years ago
1
regex.search("(a*)*", "a", flags=regex.V1).span(1) returns (0, 1) instead of (1, 1)
#42
GoogleCodeExporter
closed
9 years ago
1
= for fuzzy matches
#41
GoogleCodeExporter
closed
9 years ago
11
regex.search("(\\()?[^()]+(?(1)\\)|)", "(abcd").group(0) returns "bcd" instead of "abcd"
#40
GoogleCodeExporter
closed
9 years ago
1
regex.search("((?i)blah)\\s+\\1", "blah BLAH") doesn't return None
#39
GoogleCodeExporter
closed
9 years ago
1
regex.search("(?>.*/)b", "a/b") returns None
#38
GoogleCodeExporter
closed
9 years ago
1
regex.search("^(a){0,0}", "abc").group(0,1) returns ('a', 'a') instead of ('', None)
#37
GoogleCodeExporter
closed
9 years ago
1
regex.search("^(a|)\\1{2}b", "b") returns None
#36
GoogleCodeExporter
closed
9 years ago
1
Previous
Next