Staging
v0.5.1
https://github.com/python/cpython
Revision 4bfde07d35a394720f28b9e1c1c95d314293e2da authored by Martin v. Löwis on 07 July 2003, 21:44:00 UTC, committed by Martin v. Löwis on 07 July 2003, 21:44:00 UTC
1 parent 2045f56
Raw File
Tip revision: 4bfde07d35a394720f28b9e1c1c95d314293e2da authored by Martin v. Löwis on 07 July 2003, 21:44:00 UTC
Use -fno-strict-aliasing on gcc 3.3. Fixes #766696.
Tip revision: 4bfde07
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