-
fcntl.py 解决no module named fantl的问题下载
资源介绍
解决no module named fantl的问题,把文件复制放到你所需要的python path环境的LIb中即可
可自行建fcntl.py文件,敲入如下代码:
def fcntl(fd, op, arg=0):
return 0
def ioctl(fd, op, arg=0, mutable_flag=True):
if mutable_flag:
return 0
else:
return ""
def flock(fd, op):
return
def lockf(fd, operation, length=0, start=0, whence=0):
return
- 上一篇: fcntl模块 for windows
- 下一篇: windows下fcntl.py