Mercurial > p > roundup > code
diff CHANGES.txt @ 7882:77c109725a7e
fix: import/export under windows.
Export used native \r\n line endings on windows. This results in
blank lines when read and Roundup crashes on import.
Use \n line endings when writing due to the hard coded \n or \r (but
not \r\n) line terminator expected by csv.reader().
Also updates CHANGES.txt to cover this and a the fix for
{Otk,Session}.clear() when backed by dumb dbm on windows.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 18 Apr 2024 19:36:32 -0400 |
| parents | a363bb8c0ed4 |
| children | 10b633d6ad74 |
line wrap: on
line diff
--- a/CHANGES.txt Thu Apr 18 19:00:18 2024 -0400 +++ b/CHANGES.txt Thu Apr 18 19:36:32 2024 -0400 @@ -119,6 +119,10 @@ incorrect when paginated - correct values are now returned. (John Rouillard) - issue2551331 - Fix repeat first/last methods. (John Rouillard) +- Fix import/export on windows. Use unix line terminating characters. + (John Rouillard) +- Fix anydbm session/otks clear() method on windows when backed by + dumbdbm. (John Rouillard) Features:
