[issue19265] Increased test coverage for datetime pickling

2016-03-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: These lines should be removed again after applying the patch for issue26579. -- nosy: +serhiy.storchaka ___ Python tracker

[issue19265] Increased test coverage for datetime pickling

2016-03-19 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, Colin! -- nosy: +berker.peksag resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.5, Python 3.6 -Python 3.4 ___ Python tracker

[issue19265] Increased test coverage for datetime pickling

2016-03-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset c6649d4477ab by Berker Peksag in branch '3.5': Issue #19265: Improve test coverage of datetime.tzinfo https://hg.python.org/cpython/rev/c6649d4477ab New changeset f1539e7607e4 by Berker Peksag in branch 'default': Issue #19265: Improve test

[issue19265] Increased test coverage for datetime pickling

2013-10-18 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19265 ___ ___

[issue19265] Increased test coverage for datetime pickling

2013-10-18 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: I guess the extra coverage is in if getstate branch of class tzinfo: ... def __reduce__(self): getinitargs = getattr(self, __getinitargs__, None) if getinitargs: args = getinitargs() else: args = ()

[issue19265] Increased test coverage for datetime pickling

2013-10-15 Thread Colin Williams
New submission from Colin Williams: This just increases test coverage for the datetime module by one line. -- components: Library (Lib) files: datetimepickling.patch keywords: patch messages: 13 nosy: Colin.Williams priority: normal severity: normal status: open title: Increased

[issue19265] Increased test coverage for datetime pickling

2013-10-15 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- components: +Tests nosy: +belopolsky stage: - patch review versions: +Python 3.4 -Python 3.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19265