[issue45824] CSV module document does not include how to append files

2021-11-17 Thread Eric V. Smith
Eric V. Smith added the comment: I agree with Raymond. -- nosy: +eric.smith ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue45824] CSV module document does not include how to append files

2021-11-16 Thread Raymond Hettinger
Raymond Hettinger added the comment: I don't think that is the job of CSV docs. Appending is a general skill and not specific to that module. Likewise, the CSV module docs don't cover other general file manipulation skills like closing, using seek() to rewind, manipulating filenames and path

[issue45824] CSV module document does not include how to append files

2021-11-16 Thread Wesley Altham
Wesley Altham added the comment: I now see other things on it but I think the doc should have it as well -- ___ Python tracker ___

[issue45824] CSV module document does not include how to append files

2021-11-16 Thread Wesley Altham
New submission from Wesley Altham : easy- The CSV module does not include how to append a file which is using 'a' and not 'w' or 'r'. There might be more to appending but it is not documented for me to know, I saw a stackoverflow post about it when I looked and I tried it and worked. I hope w