repo.or.cz
/
python.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Updated documentation for findCaller() to indicate that a 3-tuple is now returned...
[python.git]
/
Lib
/
sre.py
blob
390094aaa68be78c672ffe2275875d24fa752a57
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__