Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/python/cpython
/ writelines
Method
writelines
Lib/codecs.py:851–855 ·
view source on GitHub ↗
(self, list)
Source
from the content-addressed store, hash-verified
849
return
self.writer.write(data)
850
851
def
writelines(self, list):
852
853
data = b
''
.join(list)
854
data, bytesdecoded = self.decode(data, self.errors)
855
return
self.writer.write(data)
856
857
def
reset(self):
858
Callers
1
test_writelines
Method · 0.95
Calls
3
join
Method · 0.45
decode
Method · 0.45
write
Method · 0.45
Tested by
1
test_writelines
Method · 0.76