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 serhiy.storchaka
Recipients serhiy.storchaka
Date 2018-07-23.11:06:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1532343988.37.0.56676864532.issue34197@psf.upfronthosting.co.za>
In-reply-to
Content
Currently attributes skipinitialspace, doublequote and strict of the csv.Dialect class are integers 0 or 1.

>>> import csv
>>> d = csv.reader([]).dialect
>>> d.skipinitialspace
0
>>> d.doublequote
1
>>> d.strict
0

The proposed PR makes them False or True.
History
Date User Action Args
2018-07-23 11:06:28serhiy.storchakasetrecipients: + serhiy.storchaka
2018-07-23 11:06:28serhiy.storchakasetmessageid: <1532343988.37.0.56676864532.issue34197@psf.upfronthosting.co.za>
2018-07-23 11:06:28serhiy.storchakalinkissue34197 messages
2018-07-23 11:06:28serhiy.storchakacreate