mirror of
https://github.com/python/cpython.git
synced 2025-08-10 03:49:18 +00:00
[3.12] gh-113785: csv: fields starting with escapechar are not quoted (GH-122110) (GH-122259)
(cherry picked from commit a3327dbfd4
)
Co-authored-by: Mikołaj Kuranowski <mkuranowski@gmail.com>
This commit is contained in:
parent
c57a33d006
commit
9d7209fc93
3 changed files with 5 additions and 0 deletions
|
@ -425,6 +425,8 @@ class Test_Csv(unittest.TestCase):
|
|||
quoting=csv.QUOTE_NONNUMERIC)
|
||||
self._read_test(['1,@,3,@,5'], [['1', ',3,', '5']], quotechar='@')
|
||||
self._read_test(['1,\0,3,\0,5'], [['1', ',3,', '5']], quotechar='\0')
|
||||
self._read_test(['1\\.5,\\.5,.5'], [[1.5, 0.5, 0.5]],
|
||||
quoting=csv.QUOTE_NONNUMERIC, escapechar='\\')
|
||||
|
||||
def test_read_skipinitialspace(self):
|
||||
self._read_test(['no space, space, spaces,\ttab'],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue