Vega strike Python Modules doc
0.5.1
Documentation of the " Modules " folder of Vega strike
Main Page
Namespaces
Data Structures
Files
File List
All
Data Structures
Namespaces
Files
Functions
Variables
FCNTL.py
Go to the documentation of this file.
1
"""Backward-compatibility version of FCNTL; export constants exported by
2
fcntl, and issue a deprecation warning.
3
"""
4
5
import
warnings
6
warnings.warn
(
"the FCNTL module is deprecated; please use fcntl"
,
7
DeprecationWarning)
8
9
10
# Export the constants known to the fcntl module:
11
from
fcntl
import
*
12
13
# and *only* the constants:
14
__all__ = [s
for
s
in
dir
()
if
s[0]
in
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
]
builtin
FCNTL.py
Generated on Mon Feb 17 2014 12:38:41 for Vega strike Python Modules doc by
1.8.4