-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
73 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
cdef Py_UCS4 QUOTE | ||
cdef Py_UCS4 SEMICOLON | ||
cdef Py_UCS4 COLON | ||
cdef Py_UCS4 EQUALS | ||
cdef Py_UCS4 CURLY_OPEN | ||
cdef Py_UCS4 CURLY_CLOSE | ||
cdef Py_UCS4 SQUARE_OPEN | ||
cdef Py_UCS4 SQUARE_CLOSE | ||
cdef Py_UCS4 COMMA | ||
cdef Py_UCS4 PLUS | ||
cdef Py_UCS4 MINUS | ||
cdef Py_UCS4 SLASH | ||
cdef Py_UCS4 DOLLAR | ||
cdef Py_UCS4 ASTERISK | ||
cdef Py_UCS4 NEWLINE | ||
cdef char QUOTE | ||
cdef char SEMICOLON | ||
cdef char COLON | ||
cdef char EQUALS | ||
cdef char CURLY_OPEN | ||
cdef char CURLY_CLOSE | ||
cdef char SQUARE_OPEN | ||
cdef char SQUARE_CLOSE | ||
cdef char COMMA | ||
cdef char PLUS | ||
cdef char MINUS | ||
cdef char SLASH | ||
cdef char DOLLAR | ||
cdef char ASTERISK | ||
cdef char NEWLINE | ||
|
||
cdef unicode NEWLINE_U | ||
cdef unicode END_COMMENT_U | ||
cdef unicode QUOTE_U | ||
cdef unicode STR | ||
cdef bytes NEWLINE_U | ||
cdef bytes END_COMMENT_U | ||
cdef bytes QUOTE_U | ||
cdef bytes STR |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters