fcntl.py 解决no module named fantl的问题

时间:2021-09-13 10:46:50
【文件属性】:

文件名称:fcntl.py 解决no module named fantl的问题

文件大小:257B

文件格式:PY

更新时间:2021-09-13 10:46:50

fcntl.py python

解决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


网友评论