[issue22508] Remove __version__ string from email

2015-06-23 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: When I ported Mailman 3 to Python 3.5 I had to remove the check on email.__version__ :) -- ___ Python tracker ___

[issue22508] Remove __version__ string from email

2014-10-03 Thread R. David Murray
Changes by R. David Murray : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bug

[issue22508] Remove __version__ string from email

2014-10-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 67f9e757f21b by R David Murray in branch 'default': #22508: Drop email __version__ string. It no longer means anything. https://hg.python.org/cpython/rev/67f9e757f21b -- nosy: +python-dev ___ Python trac

[issue22508] Remove __version__ string from email

2014-10-03 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: On Oct 03, 2014, at 04:19 PM, Tshepang Lekhonkhobe wrote: >Looks like a safe change. There is only one user in all Debian sources, and >it's on Python 2: > >http://codesearch.debian.net/search?q=email.__version__ Hahahahahahahaha --

[issue22508] Remove __version__ string from email

2014-10-03 Thread Tshepang Lekhonkhobe
Tshepang Lekhonkhobe added the comment: Looks like a safe change. There is only one user in all Debian sources, and it's on Python 2: http://codesearch.debian.net/search?q=email.__version__ -- nosy: +tshepang ___ Python tracker

[issue22508] Remove __version__ string from email

2014-09-27 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: On Sep 27, 2014, at 09:05 PM, R. David Murray wrote: >There is no longer a concept of a separate 'email' release from the stdlib >release. The __version__ string didn't get updated in either 3.3 or 3.4 (my >fault). I propose that we simply delete the __versio

[issue22508] Remove __version__ string from email

2014-09-27 Thread R. David Murray
New submission from R. David Murray: There is no longer a concept of a separate 'email' release from the stdlib release. The __version__ string didn't get updated in either 3.3 or 3.4 (my fault). I propose that we simply delete the __version__ variable from __init__.py (patch attached). Any