用法:
getbuffer()
返回缓冲区内容的可读和可写视图,而不复制它们。此外,改变视图将透明地更新缓冲区的内容:
>>> b = io.BytesIO(b"abcdef") >>> view = b.getbuffer() >>> view[2:4] = b"56" >>> b.getvalue() b'ab56ef'
注意
只要视图存在,
BytesIO
对象就不能调整大小或关闭。3.2 版中的新函数。
相关用法
- Python io.text_encoding用法及代码示例
- 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.BytesIO.getbuffer。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。