blob: 390094aaa68be78c672ffe2275875d24fa752a57 [file] [log] [blame]
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001"""This file is only retained for backwards compatibility.
2It will be removed in the future. sre was moved to re in version 2.5.
3"""
4
5import warnings
6warnings.warn("The sre module is deprecated, please import re.",
7 DeprecationWarning, 2)
8
9from re import *
10from re import __all__