用法:
io.text_encoding(encoding, stacklevel=2)
这是使用
open()
或TextIOWrapper
并具有encoding=None
参数的可调用函数的辅助函数。如果不是
None
,则此函数返回encoding
,如果encoding
是None
,则返回"locale"
。如果
sys.flags.warn_default_encoding
为真且encoding
为无,则此函数发出EncodingWarning
。stacklevel
指定发出警告的位置。例如:def read_text(path, encoding=None): encoding = io.text_encoding(encoding) # stacklevel=2 with open(path, encoding) as f: return f.read()
在此示例中,为
read_text()
的调用者发出EncodingWarning
。有关详细信息,请参阅文本编码。
3.10 版中的新函数。
相关用法
- Python io.BytesIO.getbuffer用法及代码示例
- Python io.StringIO用法及代码示例
- Python import__用法及代码示例
- Python itertools.takewhile用法及代码示例
- Python string isalnum()用法及代码示例
- Python id()用法及代码示例
- Python ipaddress.collapse_addresses用法及代码示例
- Python ipaddress.IPv4Address.reverse_pointer用法及代码示例
- Python string isidentifier()用法及代码示例
- Python numpy irr用法及代码示例
- Python ipaddress.IPv4Address.__format__用法及代码示例
- Python calendar isleap()用法及代码示例
- Python itertools.compress用法及代码示例
- Python math isclose()用法及代码示例
- Python string isupper()用法及代码示例
- Python itertools.dropwhile用法及代码示例
- Python scipy integrate.trapz用法及代码示例
- Python itertools.repeat用法及代码示例
- Python ipaddress.IPv4Network.supernet用法及代码示例
- Python iter用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 io.text_encoding。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。