summaryrefslogtreecommitdiffstats
path: root/Lib/posixfile.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2004-12-05 04:55:14 (GMT)
committerRaymond Hettinger <python@rcn.com>2004-12-05 04:55:14 (GMT)
commit4ebe364277b62785821003a8161a2081618b23a5 (patch)
tree0bf78ac97b947bdb06dd2aaee3e67cebb52fa0a2 /Lib/posixfile.py
parent1bc82f891c2ed0c4b062158d2c8339fb90406395 (diff)
downloadcpython-4ebe364277b62785821003a8161a2081618b23a5.zip
cpython-4ebe364277b62785821003a8161a2081618b23a5.tar.gz
cpython-4ebe364277b62785821003a8161a2081618b23a5.tar.bz2
Remove the deprecated statcache module.
Diffstat (limited to 'Lib/posixfile.py')
-rw-r--r--Lib/posixfile.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/posixfile.py b/Lib/posixfile.py
index 5a7ed06..ddfdb78 100644
--- a/Lib/posixfile.py
+++ b/Lib/posixfile.py
@@ -53,12 +53,6 @@ f.lock(mode [, len [, start [, whence]]])
query only
"""
-import warnings
-warnings.warn(
- "The posixfile module is obsolete and will disappear in the future",
- DeprecationWarning)
-del warnings
-
class _posixfile_:
"""File wrapper class that provides extra POSIX file routines."""