[Python-Dev] Re: Thank you Larry Hastings!

2020-10-05 Thread Oz Tiram
Thank you ☺️. This is what makes python great. On Mon, Oct 5, 2020, 20:41 Barry Warsaw wrote: > They say being a Python Release Manager is a thankless job, so the Python > Secret Underground (PSU), which emphatically does not exist, hereby > officially doesn’t thank Larry for his years of dili

[Python-Dev] Re: small improvement idea for the CSV module

2019-10-30 Thread Oz Tiram
9, 16:25 Serhiy Storchaka wrote: > 29.10.19 22:37, Oz Tiram пише: > > Quite a few tutorials show how to use namedtuple to gain memory saving > > and speed, over the DictReader. > > Python's own documentation has got a recipe in the collections modules[1] > > Hence

[Python-Dev] Re: small improvement idea for the CSV module

2019-10-30 Thread Oz Tiram
cult to produce code > that uses dataclasses in 3.7+ but falls back to namedtuples when necessary. > You may wish to consider such an implementation strategy. > > Best wishes, > Steve Holden > > > On Tue, Oct 29, 2019 at 10:59 PM Oz Tiram wrote: > >> Hello Python

[Python-Dev] small improvement idea for the CSV module

2019-10-29 Thread Oz Tiram
Hello Python-devs, The csv module is probably heavily utilized by newcomers to Python, being a very popular data exchange format. Although, there are better tools for processing tabular data like SQLite, or Pandas, I suspect this is still a very popular module. There are many examples floating aro