mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
1.5a3 prerelease 1 from AMK
This commit is contained in:
parent
a74ef66ac8
commit
95e8053a9f
8 changed files with 226 additions and 114 deletions
|
@ -278,6 +278,12 @@ tests = [
|
|||
('\\([xyz]*\\)x', 'abcx', SUCCEED,
|
||||
'found+"-"+g1', 'x-'),
|
||||
('\\(a\\)+b\\|aac', 'aac', SUCCEED,
|
||||
'found+"-"+g1', 'aac-None')
|
||||
'found+"-"+g1', 'aac-None'),
|
||||
('\<a', 'a', SUCCEED, 'found', 'a'),
|
||||
('\<a', '!', FAIL),
|
||||
('a\<b', 'ab', FAIL),
|
||||
('a\>', 'ab', FAIL),
|
||||
('a\>', 'a!', SUCCEED, 'found', 'a'),
|
||||
('a\>', 'a', SUCCEED, 'found', 'a'),
|
||||
]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue