summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/FCNTL.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/Lib/FCNTL.py b/Lib/FCNTL.py
deleted file mode 100644
index a31a7f8..0000000
--- a/Lib/FCNTL.py
+++ /dev/null
@@ -1,14 +0,0 @@
-"""Backward-compatibility version of FCNTL; export constants exported by
-fcntl, and issue a deprecation warning.
-"""
-
-import warnings
-warnings.warn("the FCNTL module is deprecated; please use fcntl",
- DeprecationWarning)
-
-
-# Export the constants known to the fcntl module:
-from fcntl import *
-
-# and *only* the constants:
-__all__ = [s for s in dir() if s[0] in "ABCDEFGHIJKLMNOPQRSTUVWXYZ"]