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 sparan
Recipients sparan
Date 2020-03-06.13:41:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1583502091.92.0.330932178287.issue39876@roundup.psfhosted.org>
In-reply-to
Content
with open(filename, "rt") as csvfile:
        csv_reader = csv.DictReader(csvfile, delimiter=csv_delimiter)
        filednames = csv_reader.fieldnames

In Python 3.8 csv expects utf-8 encoded files but apperently doens't read the header with utf-8 format.
If the csv file has an header named 'Französisch' it will be saved as 'Französisch'.
History
Date User Action Args
2020-03-06 13:41:31sparansetrecipients: + sparan
2020-03-06 13:41:31sparansetmessageid: <1583502091.92.0.330932178287.issue39876@roundup.psfhosted.org>
2020-03-06 13:41:31sparanlinkissue39876 messages
2020-03-06 13:41:31sparancreate