Remove unnecessary options

This commit is contained in:
Flaviu Tamas
2015-01-14 20:12:53 -05:00
parent 5ac61da7e3
commit aee43d976b
2 changed files with 1 additions and 3 deletions

View File

@@ -177,7 +177,6 @@ proc asSeq*(pattern: Captures, default: string = nil): seq[string] =
let Options: Table[string, int] = {
"8" : pcre.UTF8,
"9" : pcre.NEVER_UTF,
"?" : pcre.NO_UTF8_CHECK,
"A" : pcre.ANCHORED,
# "C" : pcre.AUTO_CALLOUT, unsuported XXX
"E" : pcre.DOLLAR_ENDONLY,
@@ -185,7 +184,6 @@ let Options: Table[string, int] = {
"i" : pcre.CASELESS,
"m" : pcre.MULTILINE,
"N" : pcre.NO_AUTO_CAPTURE,
"O" : pcre.NO_AUTO_POSSESS,
"s" : pcre.DOTALL,
"U" : pcre.UNGREEDY,
"u" : pcre.UTF8,

View File

@@ -9,7 +9,7 @@ suite "Test NRE initialization":
test "correct options":
expect(SyntaxError): # ValueError would be bad
discard initRegex("[0-9]+",
"89?AEfimNOsUWXxY<any><anycrlf><cr><crlf><lf><bsr_anycrlf><bsr_unicode><js>")
"89AEfimNsUWXxY<any><anycrlf><cr><crlf><lf><bsr_anycrlf><bsr_unicode><js>")
test "incorrect options":
expect(KeyError): discard initRegex("[0-9]+", "a")