comparison venv/lib/python2.7/sre.py @ 0:d67268158946 draft

planemo upload commit a3f181f5f126803c654b3a66dd4e83a48f7e203b
author bcclaywell
date Mon, 12 Oct 2015 17:43:33 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:d67268158946
1 """This file is only retained for backwards compatibility.
2 It will be removed in the future. sre was moved to re in version 2.5.
3 """
4
5 import warnings
6 warnings.warn("The sre module is deprecated, please import re.",
7 DeprecationWarning, 2)
8
9 from re import *
10 from re import __all__
11
12 # old pickles expect the _compile() reconstructor in this module
13 from re import _compile