用法:
readfp(fp, filename=None)
自 3.2 版起已棄用:采用
read_file()
反而。在 3.2 版中更改:configparser.ConfigParser.readfp現在迭代
fp
而不是調用fp.readline()
.對於使用不支持迭代的參數調用
readfp()
的現有代碼,可以使用以下生成器作為 file-like 對象的包裝器:def readline_generator(fp): line = fp.readline() while line: yield line line = fp.readline()
而不是
parser.readfp(fp)
使用parser.read_file(readline_generator(fp))
。
相關用法
- Python configparser.ConfigParser.read用法及代碼示例
- Python configparser.ConfigParser.BOOLEAN_STATES用法及代碼示例
- Python configparser.ConfigParser.SECTCRE用法及代碼示例
- Python configparser.BasicInterpolation用法及代碼示例
- Python configparser.ExtendedInterpolation用法及代碼示例
- Python contextlib.AsyncContextDecorator用法及代碼示例
- Python contextlib.AsyncExitStack用法及代碼示例
- Python contextlib.ExitStack.pop_all用法及代碼示例
- Python contextlib.redirect_stdout用法及代碼示例
- Python contextlib.aclosing用法及代碼示例
- Python contextlib.ExitStack用法及代碼示例
- Python contextlib.contextmanager用法及代碼示例
- Python contextvars.ContextVar.reset用法及代碼示例
- Python contextlib.closing用法及代碼示例
- Python contextlib.nullcontext用法及代碼示例
- Python contextlib.ContextDecorator用法及代碼示例
- Python contextvars.Context.run用法及代碼示例
- Python contextlib.suppress用法及代碼示例
- Python collections.somenamedtuple._replace用法及代碼示例
- Python collections.somenamedtuple._asdict用法及代碼示例
注:本文由純淨天空篩選整理自python.org大神的英文原創作品 configparser.ConfigParser.readfp。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。