1 """Backward-compatibility version of FCNTL; export constants exported by
2 fcntl, and issue a deprecation warning.
6 warnings
.warn("the FCNTL module is deprecated; please use fcntl",
10 # Export the constants known to the fcntl module:
13 # and *only* the constants:
14 __all__
= [s
for s
in dir() if s
[0] in "ABCDEFGHIJKLMNOPQRSTUVWXYZ"]