mirror of
https://github.com/python/cpython
synced 2024-11-05 18:12:54 +00:00
76d6139961
warning. This is similar to the TERMIOS backward compatbility module.
14 lines
404 B
Python
14 lines
404 B
Python
"""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"]
|