This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author licht-t
Recipients licht-t
Date 2017-12-08.14:43:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1512744234.4.0.213398074469.issue32255@psf.upfronthosting.co.za>
In-reply-to
Content
Inconsistent behavior while reading a single column CSV.
I have the patch and waiting for the CLA response.

# Case 1
## Input
```
import csv
fp = open('test.csv', 'w')
w = csv.writer(fp)
w.writerow([''])
w.writerow(['1'])
fp.close()
```
## Output
```
""
1
```

# Case 2
## Input
```
import csv
fp = open('test.csv', 'w')
w = csv.writer(fp)
w.writerow(['1'])
w.writerow([''])
fp.close()
```
## Output
```
1

```
History
Date User Action Args
2017-12-08 14:43:54licht-tsetrecipients: + licht-t
2017-12-08 14:43:54licht-tsetmessageid: <1512744234.4.0.213398074469.issue32255@psf.upfronthosting.co.za>
2017-12-08 14:43:54licht-tlinkissue32255 messages
2017-12-08 14:43:54licht-tcreate