Skip to content

Commit

Permalink
demote fixme comment to note
Browse files Browse the repository at this point in the history
- see #6
  • Loading branch information
xflr6 committed Jul 13, 2021
1 parent 1a882a0 commit e96ee9c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_writers.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
(['sp\u00e5m', '\u20acggs'], EXCEL, 'sp\u00e5m,\u20acggs\r\n'),
(['spam', 'e\U0001d11e\U0001d11es'], EXCEL, 'spam,e\U0001d11e\U0001d11es\r\n'),
(['spam\\eggs'], QSLASH, ('"spam\\\\eggs"\r\n' if sys.version_info < (3, 10)
else 'spam\\\\eggs\r\n')), # FIXME: https://github.com/xflr6/csv23/issues/6
# https://github.com/xflr6/csv23/issues/6
else 'spam\\\\eggs\r\n')),
(['spam\\eggs'], SLASH, 'spam\\\\eggs\r\n'),
(['spam', 'spam spam', 'eggs, eggs'], ASCII, 'spam\x1fspam spam\x1feggs, eggs\x1e'),
]
Expand Down

0 comments on commit e96ee9c

Please sign in to comment.