Staging
v0.5.1
https://github.com/python/cpython
Revision 59a61f6fcd0de12c2739404b0a1641bce4185170 authored by Fred Drake on 27 September 2003, 07:36:18 UTC, committed by Fred Drake on 27 September 2003, 07:36:18 UTC
1 parent 3bbb816
Raw File
Tip revision: 59a61f6fcd0de12c2739404b0a1641bce4185170 authored by Fred Drake on 27 September 2003, 07:36:18 UTC
Adjust the organization a bit and update some of the comments to
Tip revision: 59a61f6
FCNTL.py
"""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"]
back to top