[issue31826] Misleading __version__ attribute of modules in standard library

2020-02-04 Thread Henk-Jaap Wagenaar
Change by Henk-Jaap Wagenaar : -- nosy: +Henk-Jaap Wagenaar ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue31826] Misleading __version__ attribute of modules in standard library

2020-02-04 Thread Petr Viktorin
Change by Petr Viktorin : -- stage: patch review -> needs patch ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue31826] Misleading __version__ attribute of modules in standard library

2020-02-04 Thread Chris Withers
Change by Chris Withers : -- keywords: +patch pull_requests: +17717 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17977 ___ Python tracker ___

[issue31826] Misleading __version__ attribute of modules in standard library

2020-02-04 Thread Petr Viktorin
Petr Viktorin added the comment: PR for removing __version__ from mock: https://github.com/python/cpython/pull/17977 -- nosy: +petr.viktorin ___ Python tracker ___

[issue31826] Misleading __version__ attribute of modules in standard library

2017-10-23 Thread Éric Araujo
Éric Araujo added the comment: The version in distutils is derived from sys.version and should be left as is too. Thanks! -- nosy: +eric.araujo ___ Python tracker

[issue31826] Misleading __version__ attribute of modules in standard library

2017-10-23 Thread Raymond Hettinger
Raymond Hettinger added the comment: Please do leave version in the decimal module where it has a precise meaning, tracking a particular version of the spec that was implemented and tested. -- ___ Python tracker

[issue31826] Misleading __version__ attribute of modules in standard library

2017-10-22 Thread Nick Coghlan
Nick Coghlan added the comment: +1 from me for dropping these, and noting which modules were affected in the Porting section of the 3.7 What's New (I'd be surprised if anyone was depending on them existing, but it doesn't hurt to mention it, and may help if someone is

[issue31826] Misleading __version__ attribute of modules in standard library

2017-10-22 Thread Antoine Pitrou
Antoine Pitrou added the comment: +1 for removing __version__ on all stdlib modules which are not externally maintained. -- nosy: +pitrou versions: -Python 2.7, Python 3.6 ___ Python tracker

[issue31826] Misleading __version__ attribute of modules in standard library

2017-10-22 Thread Raymond Hettinger
Raymond Hettinger added the comment: I would support just removing the version attributes for csv and re. -- nosy: +ncoghlan, rhettinger ___ Python tracker

[issue31826] Misleading __version__ attribute of modules in standard library

2017-10-20 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +barry, serhiy.storchaka versions: +Python 3.7 -Python 3.4, Python 3.5 ___ Python tracker ___

[issue31826] Misleading __version__ attribute of modules in standard library

2017-10-20 Thread Jakub Mateusz Dzik
New submission from Jakub Mateusz Dzik : Several modules of the standard library (at least `re` and `csv`) have `__version__` strings. The string is the same for Python 2.7-3.6: >>> import re, csv; print(re.__version__, csv.__version__) 2.2.1 1.0