[issue14452] SysLogHandler sends invalid messages when using unicode

2013-01-09 Thread Roy Smith
Changes by Roy Smith : -- nosy: +roysmith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue16878] argparse: positional args with nargs='*' defaults to []

2013-01-09 Thread Chris Jerdonek
Chris Jerdonek added the comment: It turns out that there is already a test case: http://hg.python.org/cpython/file/05183ce544be/Lib/test/test_argparse.py#l799 (at the line "('', NS(foo=[])),") I've updated the patch with a note to reflect this. -- Added file: http://bugs.python.org/f

[issue16897] Fix test discovery for test_bisect.py

2013-01-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset f32cb5389a4b by Ezio Melotti in branch '3.3': #16897: test_bisect now works with unittest test discovery. Initial patch by Zachary Ware. http://hg.python.org/cpython/rev/f32cb5389a4b New changeset cfd8d99ae645 by Ezio Melotti in branch 'default':

[issue16897] Fix test discovery for test_bisect.py

2013-01-09 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the patch! While I was at it I also added the other example from the doc. -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue16896] Fix test discovery for test_asyncore.py

2013-01-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4976bf1d751c by Ezio Melotti in branch '3.3': #16896: test_asyncore now works with unittest test discovery. Patch by Zachary Ware. http://hg.python.org/cpython/rev/4976bf1d751c New changeset e7a965a075f5 by Ezio Melotti in branch 'default': #16896

[issue16896] Fix test discovery for test_asyncore.py

2013-01-09 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the patch! -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___

[issue16888] Fix test discovery for test_array.py

2013-01-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1538307c06c0 by Ezio Melotti in branch '3.3': #16888: test_array now works with unittest test discovery. Patch by Zachary Ware. http://hg.python.org/cpython/rev/1538307c06c0 New changeset 16c58eeca0f8 by Ezio Melotti in branch 'default': #16888: m

[issue16888] Fix test discovery for test_array.py

2013-01-09 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the patch! -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue16898] Fix test discovery for test_bufio.py

2013-01-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 09d4b690b504 by Ezio Melotti in branch '3.3': #16898: test_bufio now works with unittest test discovery. Patch by Zachary Ware. http://hg.python.org/cpython/rev/09d4b690b504 New changeset 9a6e28350645 by Ezio Melotti in branch 'default': #16898: m

[issue16898] Fix test discovery for test_bufio.py

2013-01-09 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the patch! -- resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue1508475] transparent gzip compression in urllib

2013-01-09 Thread John O'Connor
Changes by John O'Connor : -- nosy: +jcon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue11695] Improve argparse usage/help customization

2013-01-09 Thread John O'Connor
Changes by John O'Connor : -- nosy: +jcon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue16445] SEGFAULT when deleting Exception.message

2013-01-09 Thread John O'Connor
Changes by John O'Connor : -- nosy: +jcon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue15948] Unchecked return value of I/O functions

2013-01-09 Thread John O'Connor
Changes by John O'Connor : -- nosy: +jcon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue16905] Fix test discovery for test_warnings

2013-01-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 20e44464eb86 by Ezio Melotti in branch '3.3': #16905: test_bufio now works with unittest test discovery. Initial patch by Berker Peksag. http://hg.python.org/cpython/rev/20e44464eb86 New changeset 6ee721029fd5 by Ezio Melotti in branch 'default':

[issue16905] Fix test discovery for test_warnings

2013-01-09 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the patch! However I had to change a couple of things: 1) test_main contained c/py_warnings.onceregistry.clear(), and removing that breaks when running the test twice in a row. I now added it to setUpModule, and that seems to be called both whe

[issue11695] Improve argparse usage/help customization

2013-01-09 Thread Chris Jerdonek
Chris Jerdonek added the comment: +1 to the feature. A closely-related use case is customizing the message displayed by error(), which is normally the usage string followed by the error message. I wanted to append instructions on how to invoke --help, and implemented it this way for CPython'

[issue16913] ElementTree tostring error when method='text'

2013-01-09 Thread Frank
New submission from Frank: Since upgrading to python 3.3 the tostring method fails when the output method is requested as text. Code like this: with open(fp, mode='rt') as f: data = f.read() tree, idmap = ET.XMLID(data) print(ET.tostring(tree, method='text', encoding='unicode')) Generates

[issue16913] ElementTree tostring error when method='text'

2013-01-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- keywords: +3.3regression nosy: +eli.bendersky, ezio.melotti stage: -> needs patch type: -> behavior ___ Python tracker ___

[issue16910] Fix test discovery for bytes/string tests

2013-01-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 55383912c225 by Ezio Melotti in branch '3.3': #16910: test_bytes, test_unicode, and test_userstring now work with unittest test discovery. Patch by Zachary Ware. http://hg.python.org/cpython/rev/55383912c225 New changeset 6478c4259ce3 by Ezio Melo

[issue16910] Fix test discovery for bytes/string tests

2013-01-09 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the patch! -- assignee: -> ezio.melotti resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker _

[issue16406] move the "Uploading Packages" section to distutils/packageindex.rst

2013-01-09 Thread Chris Jerdonek
Chris Jerdonek added the comment: Updating patch with use of the :orphan: directive (so that the old page can be excluded from the table of contents/toctree without issuing a Sphinx warning). -- Added file: http://bugs.python.org/file28665/issue-16406-2.patch __

[issue15782] Compile error for a number of Mac modules with recent Xcode

2013-01-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset ae1d34142a2a by Ned Deily in branch '2.7': Issue #15782: Prevent compile errors of OS X Carbon modules _Fm, _Qd, and http://hg.python.org/cpython/rev/ae1d34142a2a -- nosy: +python-dev ___ Python tracker

[issue15782] Compile error for a number of Mac modules with recent Xcode

2013-01-09 Thread Ned Deily
Ned Deily added the comment: LGTM. I've committed the patch along with expanded warnings in the Standard Library doc pages for "Mac OS X specific services" and "Mac OS Toolbox Modules". -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed _

[issue12006] strptime should implement %V or %u directive from libc

2013-01-09 Thread Erik Cederstrand
Erik Cederstrand added the comment: Ping. Is anyone willing to take this? I'm not a committer nor know anyone with commit access. -- nosy: +Erik Cederstrand ___ Python tracker _

[issue16894] Function attribute access doesn't invoke methods in dict subclasses

2013-01-09 Thread Eric Snow
Eric Snow added the comment: Looks like a case where the concrete dict API is ignoring subtype implementations. In your example the attribute access will be handled by a LOAD_ATTR which calls PyObject_GetAttr() (Python/ceval.c:2369). That ends up calling PyFunction_Type.tp_getattro (inherite

<    1   2