~ubuntubmw/bzr/reproducible-builds

« back to all changes in this revision

Viewing changes to bzrlib/lazy_regex.py

  • Committer: Tarmac
  • Author(s): Vincent Ladeuil
  • Date: 2017-01-30 14:42:05 UTC
  • mfrom: (6620.1.1 trunk)
  • Revision ID: tarmac-20170130144205-r8fh2xpmiuxyozpv
Merge  2.7 into trunk including fix for bug #1657238 [r=vila]

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
        " cause infinite recursion")
134
134
 
135
135
 
136
 
# re.finditer get confused if it receives a LazyRegex
137
 
if getattr(re, 'finditer', None is not None):
 
136
# Some libraries calls re.finditer which fails it if receives a LazyRegex.
 
137
if getattr(re, 'finditer', False):
138
138
    def finditer_public(pattern, string, flags=0):
139
139
        if isinstance(pattern, LazyRegex):
140
140
            return pattern.finditer(string)
141
141
        else:
142
142
            return _real_re_compile(pattern, flags).finditer(string)
143
 
re.finditer = finditer_public
 
143
    re.finditer = finditer_public