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 larrykuhn
Recipients larrykuhn, paul.moore, steve.dower, tim.golden, zach.ware
Date 2020-05-01.21:41:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1588369263.41.0.526030000373.issue40473@roundup.psfhosted.org>
In-reply-to
Content
Running open with or without rU generates this message when reading a CSV file with CR line endings:
DeprecationWarning: 'U' mode is deprecated
  with open(csvfile, mode='rU', newline='') as cf:
Traceback (most recent call last):
  File "d:/Larry/Desktop/Python/profiler project/csvprofiler/csvpcg.py", line 245, in <module>
    main()
  File "d:/Larry/Desktop/Python/profiler project/csvprofiler/csvpcg.py", line 235, in main
    csv_input()
  File "d:/Larry/Desktop/Python/profiler project/csvprofiler/csvpcg.py", line 57, in csv_input
    config_dict['has_header'] = csv.Sniffer().has_header(cf.read(10240))
  File "C:\Program Files\Python38\lib\csv.py", line 395, in has_header
    header = next(rdr) # assume first row is header
_csv.Error: new-line character seen in unquoted field - do you need to open the file in universal-newline mode?
History
Date User Action Args
2020-05-01 21:41:03larrykuhnsetrecipients: + larrykuhn, paul.moore, tim.golden, zach.ware, steve.dower
2020-05-01 21:41:03larrykuhnsetmessageid: <1588369263.41.0.526030000373.issue40473@roundup.psfhosted.org>
2020-05-01 21:41:03larrykuhnlinkissue40473 messages
2020-05-01 21:41:03larrykuhncreate