Skip to content

Commit

Permalink
Added '\v' character to white spaces.
Browse files Browse the repository at this point in the history
  • Loading branch information
smelandr committed Apr 29, 2017
1 parent 9e5b356 commit 44ed203
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion nmrstarlib/bmrblex.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def bmrblex(text):
u"ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞ"
u"!@$%^&*()_+:;?/>.<,~`|\{[}]-=")

whitespace = u" \t\r\n"
whitespace = u" \t\v\r\n"
state = u" "
token = u""

Expand Down
8 changes: 4 additions & 4 deletions nmrstarlib/cbmrblex.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nmrstarlib/cbmrblex.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def bmrblex(text):
u"ßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ"
u"ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞ"
u"!@$%^&*()_+:;?/>.<,~`|\{[}]-=")
cdef unicode whitespace = u" \t\r\n"
cdef unicode whitespace = u" \t\v\r\n"
cdef unicode state = u" "
cdef unicode token = u""
cdef unicode nextchar
Expand Down

0 comments on commit 44ed203

Please sign in to comment.