[issue19271] Update OrderedDict "see also" link

2013-10-18 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti stage: -> needs patch type: -> enhancement ___ Python tracker ___ ___ Python-bugs-l

[issue19280] Add a datatype to represent mime types to the email module

2013-10-18 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue19273] Update PCbuild/readme.txt

2013-10-18 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti stage: -> patch review type: -> enhancement ___ Python tracker ___ ___ Python-bugs-

[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 =

[issue19282] dbm.open should be a context manager

2013-10-18 Thread Claudiu.Popa
Claudiu.Popa added the comment: Attached patch checks that the db is actually closed after the `with`. Also, I noticed that dbm.dumb doesn't behave like the rest of the variants, as seen in the following: >>> import dbm.dumb as d >>> db = d.open('test.dat', 'c') >>> db.close() >>> db.keys() Tr

[issue18709] SSL module fails to handle NULL bytes inside subjectAltNames general names (CVE-2013-4238)

2013-10-18 Thread Matěj Stuchlík
Matěj Stuchlík added the comment: There's no longer any suspicion, no, at least from my side. -- ___ Python tracker ___ ___ Python-bug

[issue17087] Improve the repr for regular expression match objects

2013-10-18 Thread Claudiu.Popa
Claudiu.Popa added the comment: Added patch based on Serhiy's, which addresses your comments. It drops the group count and renames group0 to `match`. -- Added file: http://bugs.python.org/file32216/sre_repr6.patch ___ Python tracker

[issue969718] BASECFLAGS are not passed to module build line

2013-10-18 Thread Ned Deily
Ned Deily added the comment: Since I just noticed this and haven't seen it mentioned already: for the record, the Python Makefile for current versions is affected by this issue. The "sharedmods" target, which calls setup.py to build the standard library shared modules, explicitly passes into

<    1   2   3