用法:
os.closerange(fd_low, fd_high)
关闭从
fd_low
(包括)到fd_high
(不包括)的所有文件说明符,忽略错误。相当于(但比):for fd in range(fd_low, fd_high): try: os.close(fd) except OSError: pass
相关用法
- Python os.closerange()用法及代码示例
- Python os.close()用法及代码示例
- Python os.chflags()用法及代码示例
- Python os.ctermid()用法及代码示例
- Python os.chroot()用法及代码示例
- Python os.cpu_count()用法及代码示例
- Python os.chown()用法及代码示例
- Python os.chdir()用法及代码示例
- Python os.chmod用法及代码示例
- Python os.confstr()用法及代码示例
- Python os.chmod()用法及代码示例
- Python os.path.normcase()用法及代码示例
- Python os.read()用法及代码示例
- Python os.DirEntry.inode()用法及代码示例
- Python os.set_blocking()用法及代码示例
- Python os.pathconf()用法及代码示例
- Python os.WCOREDUMP()用法及代码示例
- Python os.fork()用法及代码示例
- Python os.mkfifo()用法及代码示例
- Python os.tcsetpgrp()用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 os.closerange。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。