mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Issue #20283: RE pattern methods now accept the string keyword parameters
as documented. The pattern and source keyword parameters are left as deprecated aliases.
This commit is contained in:
parent
25dded041f
commit
ccdf352370
3 changed files with 84 additions and 20 deletions
|
@ -1076,6 +1076,22 @@ class ReTests(unittest.TestCase):
|
|||
self.assertEqual(out.getvalue().splitlines(),
|
||||
['literal 102 ', 'literal 111 ', 'literal 111 '])
|
||||
|
||||
def test_keyword_parameters(self):
|
||||
# Issue #20283: Accepting the string keyword parameter.
|
||||
pat = re.compile(r'(ab)')
|
||||
self.assertEqual(
|
||||
pat.match(string='abracadabra', pos=7, endpos=10).span(), (7, 9))
|
||||
self.assertEqual(
|
||||
pat.search(string='abracadabra', pos=3, endpos=10).span(), (7, 9))
|
||||
self.assertEqual(
|
||||
pat.findall(string='abracadabra', pos=3, endpos=10), ['ab'])
|
||||
self.assertEqual(
|
||||
pat.split(string='abracadabra', maxsplit=1),
|
||||
['', 'ab', 'racadabra'])
|
||||
self.assertEqual(
|
||||
pat.scanner(string='abracadabra', pos=3, endpos=10).search().span(),
|
||||
(7, 9))
|
||||
|
||||
|
||||
def run_re_tests():
|
||||
from test.re_tests import tests, SUCCEED, FAIL, SYNTAX_ERROR
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue