Rename `csv.write_all` and `csv.read_all`
Opened this issue · 0 comments
feep commented
Breaking change, sorry. =[
Rename csv.write_all
and csv.read_all
to csv.dumps
and csv.loads
?
They do not write or read anything. They work with strings.
There is no analog in python csv
, the 'dump'/'load' terminology is used in json
, pickle
, marshal
, and yaml
. As well as every other encoding/
in starlib except base64 which matches python with decode
.