/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/lazy_regex.py

  • Committer: Jelmer Vernooij
  • Date: 2018-11-16 14:54:49 UTC
  • mto: This revision was merged to the branch mainline in revision 7174.
  • Revision ID: jelmer@jelmer.uk-20181116145449-5o6qlpcyd47lg1nj
Add test_flake8.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
This module defines a class which creates proxy objects for regex
20
20
compilation.  This allows overriding re.compile() to return lazily compiled
21
 
objects.  
 
21
objects.
22
22
 
23
23
We do this rather than just providing a new interface so that it will also
24
24
be used by existing Python modules that create regexs.