Update version number and release date.
[python/dscho.git] / Lib / FCNTL.py
bloba31a7f8e989bbad9207fcd4595bcae7d71af7ce0
1 """Backward-compatibility version of FCNTL; export constants exported by
2 fcntl, and issue a deprecation warning.
3 """
5 import warnings
6 warnings.warn("the FCNTL module is deprecated; please use fcntl",
7 DeprecationWarning)
10 # Export the constants known to the fcntl module:
11 from fcntl import *
13 # and *only* the constants:
14 __all__ = [s for s in dir() if s[0] in "ABCDEFGHIJKLMNOPQRSTUVWXYZ"]