用法:
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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。