python 版本 2.7.3 导入 maxrepeat 模块时出现问题

Issue with python version 2.7.3 importing maxrepeat module

我正在尝试在 python 2.7.3 中导入 maxrepeat 模块,但无法在 google 中获得太多信息,有人可以帮忙吗?

帮助 maxrepeat 模块工作的模块是什么?

我可以使用“from _sre import maxrepeat”导入 maxrepeat 模块,但在运行 runnninv 自动化时仍然失败。

MAXREPEATre 模块 内部 用作可以指定的最小、最大或精确重复次数的上限在一个模式中。例如:

>>> import re
>>> re.compile(r'a{100}')         # exactly 100 "a"s
<_sre.SRE_Pattern object at 0x7fa68be10780>
>>> re.compile(r'a{100, 200}')    # between 100 and 200 "a"s

重复值等于或超过 MAXREPEAT 会导致模块 sre_parse:

中的正则表达式解析器引发异常
>>> from sre_constants import MAXREPEAT
>>> MAXREPEAT
4294967295L

>>> re.compile(r'a{{{}}}'.format(MAXREPEAT-1))
<_sre.SRE_Pattern object at 0x7f0ec959f660>

>>> re.compile(r'a{{{}}}'.format(MAXREPEAT))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib64/python2.7/re.py", line 194, in compile
    return _compile(pattern, flags)
  File "/usr/lib64/python2.7/re.py", line 249, in _compile
    p = sre_compile.compile(pattern, flags)
  File "/usr/lib64/python2.7/sre_compile.py", line 572, in compile
    p = sre_parse.parse(p, flags)
  File "/usr/lib64/python2.7/sre_parse.py", line 716, in parse
    p = _parse_sub(source, pattern, 0)
  File "/usr/lib64/python2.7/sre_parse.py", line 324, in _parse_sub
    itemsappend(_parse(source, state))
  File "/usr/lib64/python2.7/sre_parse.py", line 518, in _parse
    raise OverflowError("the repetition number is too large")
OverflowError: the repetition number is too large

在正常使用 re 模块的情况下,没有任何理由需要关心 MAXREPEAT。如果您需要处理错误,请使用异常:

try:
    re.compile(r'a{{{}}}'.format(MAXREPEAT))
except OverflowError as exc:
    print 'Failed to compile pattern: {}'.format(exc.message)