source: vendor/python/2.5/Lib/sre.py@ 3393

Last change on this file since 3393 was 3225, checked in by bird, 19 years ago

Python 2.5

File size: 294 bytes
RevLine 
[3225]1"""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__
Note: See TracBrowser for help on using the repository browser.