mirror of
https://github.com/python/cpython.git
synced 2025-10-09 08:31:26 +00:00
final 0.9.8 updates:
-- added REPEAT_ONE operator -- added ANY_ALL operator (used to represent "(?s).")
This commit is contained in:
parent
fb06539e99
commit
e186983842
6 changed files with 105 additions and 68 deletions
|
@ -20,6 +20,7 @@ FAILURE = "failure"
|
|||
SUCCESS = "success"
|
||||
|
||||
ANY = "any"
|
||||
ANY_ALL = "any_all"
|
||||
ASSERT = "assert"
|
||||
ASSERT_NOT = "assert_not"
|
||||
AT = "at"
|
||||
|
@ -81,7 +82,7 @@ OPCODES = [
|
|||
# failure=0 success=1 (just because it looks better that way :-)
|
||||
FAILURE, SUCCESS,
|
||||
|
||||
ANY,
|
||||
ANY, ANY_ALL,
|
||||
ASSERT, ASSERT_NOT,
|
||||
AT,
|
||||
BRANCH,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue