[issue13560] Add PyUnicode_DecodeLocale and PyUnicode_DecodeLocaleAndSize

2011-12-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset 88198b93ff2f by Victor Stinner in branch 'default': Issue #13560: Add PyUnicode_EncodeLocale() http://hg.python.org/cpython/rev/88198b93ff2f New changeset 51412b4b81ae by Victor Stinner in branch 'default': Issue #13560: os.str

[issue13560] Add PyUnicode_DecodeLocale and PyUnicode_DecodeLocaleAndSize

2011-12-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset 07802351ccad by Victor Stinner in branch 'default': Issue #13560: Locale codec functions use the classic "errors" parameter, http://hg.python.org/cpython/rev/07802351ccad -- ___ P

[issue12809] Missing new setsockopts in Linux (eg: IP_TRANSPARENT)

2011-12-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 59ea1d1a4137 by Charles-François Natali in branch 'default': Issue #12809: Expose IP_TRANSPARENT in the socket module. Patch by Michael http://hg.python.org/cpython/rev/59ea1d1a4137 -- nosy: +

[issue10951] gcc 4.6 warnings

2011-12-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset d7862e855274 by Victor Stinner in branch '3.2': Issue #10951: Fix a compiler warning in timemodule.c http://hg.python.org/cpython/rev/d7862e855274 New changeset 49b85dba251d by Victor Stinner in branch 'default': Issue

[issue13530] Docs for os.lseek neglect to mention what it returns

2011-12-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 46c418d8a480 by Victor Stinner in branch '3.2': Issue #13530: Document os.lseek() result http://hg.python.org/cpython/rev/46c418d8a480 New changeset b05caa600c40 by Victor Stinner in branch 'default': Issue #13530: Document os

[issue11231] bytes() constructor is not correctly documented

2011-12-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset beac7d6c7be4 by Victor Stinner in branch '3.2': Issue #11231: Fix bytes and bytearray docstrings http://hg.python.org/cpython/rev/beac7d6c7be4 New changeset dc670add1e28 by Victor Stinner in branch 'default': Issue #11231: Fix

[issue13623] Bytes performance regression in python3.3 vs python3.2

2011-12-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 75648db1b3f3 by Victor Stinner in branch 'default': Issue #13623: Fix a performance regression introduced by issue #12170 in http://hg.python.org/cpython/rev/75648db1b3f3 -- nosy: +python-dev

[issue12170] index() and count() methods of bytes and bytearray should accept byte ints

2011-12-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 75648db1b3f3 by Victor Stinner in branch 'default': Issue #13623: Fix a performance regression introduced by issue #12170 in http://hg.python.org/cpython/rev/75648db1b3f3 -- ___ Python trac

[issue13522] Document error return values for PyFloat_* and PyComplex_*

2011-12-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 68cbf6551710 by Antoine Pitrou in branch '3.2': Issue #13522: document error return values of some float and complex C API functions. http://hg.python.org/cpython/rev/68cbf6551710 New changeset 1f096611baf4 by Antoine Pitrou in branc

[issue13621] Unicode performance regression in python3.3 vs python3.2

2011-12-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset c802bfc8acfc by Victor Stinner in branch 'default': Issue #13621: Optimize str.replace(char1, char2) http://hg.python.org/cpython/rev/c802bfc8acfc -- nosy: +python-dev ___ Python trac

[issue13522] Document error return values for PyFloat_* and PyComplex_*

2011-12-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 67a4e8fe650e by Victor Stinner in branch 'default': Issue #13522: Fix _Py_co_pow() documentation http://hg.python.org/cpython/rev/67a4e8fe650e -- ___ Python tracker <http://bugs.python.o

[issue13522] Document error return values for PyFloat_* and PyComplex_*

2011-12-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset edc981ce8748 by Victor Stinner in branch '3.2': Issue #13522: Fix _Py_co_pow() documentation http://hg.python.org/cpython/rev/edc981ce8748 New changeset 2863470caebb by Victor Stinner in branch '2.7': Issue #13522: Fix _Py_co

[issue13624] UTF-8 encoder performance regression in python3.3

2011-12-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset fbd797fc3809 by Victor Stinner in branch 'default': Issue #13624: Write a specialized UTF-8 encoder to allow more optimization http://hg.python.org/cpython/rev/fbd797fc3809 -- nosy: +

[issue8035] urllib.request.urlretrieve hangs waiting for connection close after a redirect

2011-12-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 038616802b65 by Charles-François Natali in branch '2.7': Issue #8035: urllib: Fix a bug where the client could remain stuck after a http://hg.python.org/cpython/rev/038616802b65 New changeset a420b27a86d9 by Charles-François Natali in b

[issue11870] test_3_join_in_forked_from_thread() of test_threading hangs 1 hour on "x86 Ubuntu Shared 3.x"

2011-12-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 775319cebaa3 by Charles-François Natali in branch '2.7': Issue #11870: threading: Properly reinitialize threads internal locks and http://hg.python.org/cpython/rev/775319cebaa3 New changeset de962ec0faaa by Charles-François Natali in b

[issue13617] Reject embedded null characters in wchar* strings

2011-12-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset fa5c8cf29963 by Victor Stinner in branch '3.2': Issue #13617: Document that the result of the conversion of a Unicode object to http://hg.python.org/cpython/rev/fa5c8cf29963 New changeset f30ac7729f2b by Victor Stinner in branch '

[issue7502] All DocTestCase instances compare and hash equal to each other

2011-12-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset c478734ded4b by Antoine Pitrou in branch '3.2': Issue #7502: Fix equality comparison for DocTestCase instances. http://hg.python.org/cpython/rev/c478734ded4b New changeset b8cb6f1e4981 by Antoine Pitrou in branch 'default

[issue13617] Reject embedded null characters in wchar* strings

2011-12-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1c4d9534263e by Victor Stinner in branch '2.7': Issue #13617: Document that the result PyUnicode_AsUnicode() and http://hg.python.org/cpython/rev/1c4d9534263e -- ___ Python trac

[issue7502] All DocTestCase instances compare and hash equal to each other

2011-12-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6a95820b9607 by Antoine Pitrou in branch '2.7': Followup to #7502: add __hash__ method and tests. http://hg.python.org/cpython/rev/6a95820b9607 -- ___ Python tracker <http://bugs.python.

[issue11813] inspect.getattr_static doesn't get module attributes

2011-12-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 56731ccf2e86 by Michael Foord in branch '3.2': Fix inspect.getattr_static to work on modules (again). http://hg.python.org/cpython/rev/56731ccf2e86 -- nosy: +python-dev resolution: -> fixed stage: patch review -> committed

[issue13387] suggest assertIs(type(obj), cls) for exact type checking

2011-12-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 88aacd3541ae by Ezio Melotti in branch '2.7': #13387: rephrase unclear sentence. http://hg.python.org/cpython/rev/88aacd3541ae New changeset eccb4795767b by Ezio Melotti in branch '3.2': #13387: rephrase unclear sentence.

[issue3932] HTMLParser cannot handle '&' and non-ascii characters in attribute names

2011-12-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 978f45013c34 by Ezio Melotti in branch '2.7': #3932: suggest passing unicode to HTMLParser.feed(). http://hg.python.org/cpython/rev/978f45013c34 -- nosy: +python-dev ___ Python trac

[issue13576] Handling of broken condcoms in HTMLParser

2011-12-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9c60fd12664f by Ezio Melotti in branch '2.7': #13576: add tests about the handling of (possibly broken) condcoms. http://hg.python.org/cpython/rev/9c60fd12664f New changeset 4ddbb756b602 by Ezio Melotti in branch '3.2': #13576:

[issue11867] Make test_mailbox deterministic

2011-12-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset c6d41dd60d2d by Charles-François Natali in branch '2.7': Issue #11867: Make test_mailbox.test_lock_conflict deterministic (and fix a http://hg.python.org/cpython/rev/c6d41dd60d2d New changeset 0053b7c68a02 by Charles-François Natali in b

[issue13635] Python SSL stack doesn't support ordering of Ciphers

2011-12-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset c706f76c9ea8 by Antoine Pitrou in branch 'default': Issue #13635: Add ssl.OP_CIPHER_SERVER_PREFERENCE, so that SSL servers http://hg.python.org/cpython/rev/c706f76c9ea8 -- nosy: +python-dev

[issue13628] python-gdb.py: patch to improve support of optimized Python

2011-12-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0b03cb97dac0 by Victor Stinner in branch '3.2': Issue #13628: python-gdb.py is now able to retrieve more frames in the Python http://hg.python.org/cpython/rev/0b03cb97dac0 New changeset 5e3a172bba89 by Victor Stinner in branch 'd

[issue13628] python-gdb.py: patch to improve support of optimized Python

2011-12-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1cc8e9565339 by Victor Stinner in branch '2.7': Issue #13628: python-gdb.py is now able to retrieve more frames in the Python http://hg.python.org/cpython/rev/1cc8e9565339 -- ___ Python trac

[issue13453] Tests and network timeouts

2011-12-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2228d985fdcc by Charles-François Natali in branch '2.7': Issue #13453: Try to increase some socket timeouts to make some buildbots stop http://hg.python.org/cpython/rev/2228d985fdcc New changeset d7daf98c068e by Charles-François Natali

[issue5424] Packed IPaddr conversion tests should be extended

2011-12-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 71e5a083f9b1 by Antoine Pitrou in branch '3.2': Issue #5424: add tests for inet_ntoa, inet_ntop, inet_aton and inet_pton. http://hg.python.org/cpython/rev/71e5a083f9b1 New changeset a3d5f522065f by Antoine Pitrou in branch 'defaul

[issue13627] Python SSL stack doesn't support Elliptic Curve ciphers

2011-12-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8b729d65cfd2 by Antoine Pitrou in branch 'default': Issue #13627: Add support for SSL Elliptic Curve-based Diffie-Hellman http://hg.python.org/cpython/rev/8b729d65cfd2 -- nosy: +python-dev

[issue8684] improvements to sched.py

2011-12-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 50267d2bb320 by Giampaolo Rodola' in branch 'default': (bug #8684) fix 'fedora without thread buildbot' as per http://bugs.python.org/issue8684 http://hg.python.org

[issue13634] Python SSL stack doesn't support Compression configuration

2011-12-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset 20b52be99b5d by Antoine Pitrou in branch 'default': Issue #13634: Add support for querying and disabling SSL compression. http://hg.python.org/cpython/rev/20b52be99b5d -- nosy: +python-dev

[issue11867] Make test_mailbox deterministic

2011-12-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset c9facd251725 by Charles-François Natali in branch '2.7': Followup to issue #11867: Use socketpair(), since FreeBSD < 8 doesn't really http://hg.python.org/cpython/rev/c9facd251725 New changeset 9dee8a095faf by Charles-Françoi

[issue13637] binascii.a2b_* functions could accept unicode strings

2011-12-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset eb8d62706d5f by Antoine Pitrou in branch 'default': Issue #13637: "a2b" functions in the binascii module now accept ASCII-only unicode strings. http://hg.python.org/cpython/rev/eb8d62706d5f

[issue13627] Python SSL stack doesn't support Elliptic Curve ciphers

2011-12-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset ec44f2e82707 by Antoine Pitrou in branch 'default': Fix ssl module compilation if ECDH support was disabled in the OpenSSL build. http://hg.python.org/cpython/rev/ec44f2e82707 -- ___ Pyth

[issue13581] help() appears to be broken; doesn't display __doc__ for class type when called as help(type)

2011-12-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 902f694a7b0e by Antoine Pitrou in branch '3.2': Issue #1785: Fix inspect and pydoc with misbehaving descriptors. http://hg.python.org/cpython/rev/902f694a7b0e New changeset b08bf8df8eec by Antoine Pitrou in branch 'default

[issue1785] "inspect" gets broken by some descriptors

2011-12-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 902f694a7b0e by Antoine Pitrou in branch '3.2': Issue #1785: Fix inspect and pydoc with misbehaving descriptors. http://hg.python.org/cpython/rev/902f694a7b0e New changeset b08bf8df8eec by Antoine Pitrou in branch 'default

[issue1785] "inspect" gets broken by some descriptors

2011-12-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 13f56cd8dec1 by Antoine Pitrou in branch '2.7': Issue #1785: Fix inspect and pydoc with misbehaving descriptors. http://hg.python.org/cpython/rev/13f56cd8dec1 -- ___ Python trac

[issue13581] help() appears to be broken; doesn't display __doc__ for class type when called as help(type)

2011-12-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 13f56cd8dec1 by Antoine Pitrou in branch '2.7': Issue #1785: Fix inspect and pydoc with misbehaving descriptors. http://hg.python.org/cpython/rev/13f56cd8dec1 -- ___ Python trac

[issue12708] multiprocessing.Pool is missing a starmap[_async]() method.

2011-12-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset b07b1e58582d by Antoine Pitrou in branch 'default': Issue #12708: Add starmap() and starmap_async() methods (similar to itertools.starmap()) to multiprocessing.Pool. http://hg.python.org/cpython/rev/b07b1e58582d -- nosy: +

[issue13597] Improve documentation of stdout/stderr buffering in Python 3.x

2011-12-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 19df72a77b39 by Antoine Pitrou in branch '3.2': Issue #13597: Fix the documentation of the "-u" command-line option, and wording of "What's new in Python 3.0" about standard streams. http://hg.python.org/cpyt

[issue13620] Support Chrome in webbrowser.py

2011-12-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7faa90a6324c by Senthil Kumaran in branch 'default': Issue 13620 - Support chrome browser in webbrowser.py module. http://hg.python.org/cpython/rev/7faa90a6324c New changeset bd3631f9aa5c by Senthil Kumaran in branch 'default&

[issue13645] test_import fails after test_coding

2011-12-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset f4afc6858ed2 by Antoine Pitrou in branch '3.2': Issue #13645: fix test_import failure when run immediately after test_coding. http://hg.python.org/cpython/rev/f4afc6858ed2 New changeset a6bd166abde5 by Antoine Pitrou in branch '

[issue13639] UnicodeDecodeError when creating tar.gz with unicode name

2011-12-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset a60a3610a97b by Lars Gustäbel in branch '2.7': Issue #13639: Accept unicode filenames in tarfile.open(mode="w|gz"). http://hg.python.org/cpython/rev/a60a3610a97b -- nosy: +python-dev __

[issue11829] inspect.getattr_static code execution with meta-metaclasses

2011-12-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8f33758df19a by Michael Foord in branch '3.2': Metaclasses with metaclasses with a __dict__ descriptor can no longer trigger code execution with inspect.getattr_static. http://hg.python.org/cpython/rev/8f33758df19a -- nosy: +

[issue11006] warnings with subprocess and pipe2

2011-12-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset dc913f73a7fb by Ross Lagerwall in branch '3.2': Issue #11006: Don't issue low level warning in subprocess when pipe2() fails. http://hg.python.org/cpython/rev/dc913f73a7fb New changeset b1b35583967a by Ross Lagerwall in branch &

[issue13626] Python SSL stack doesn't support DH ciphers

2011-12-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset 33dea851f918 by Antoine Pitrou in branch 'default': Issue #13626: Add support for SSL Diffie-Hellman key exchange, through the http://hg.python.org/cpython/rev/33dea851f918 -- nosy: +

[issue13443] wrong links and examples in the functional HOWTO

2011-12-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset c6880edaf6f3 by Senthil Kumaran in branch '2.7': Issue13443 - Remove the functional module examples from 2.7 (as module is http://hg.python.org/cpython/rev/c6880edaf6f3 -- nosy: +python-dev

[issue12798] Update mimetypes documentation

2011-12-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset aef79ff1bc9b by Senthil Kumaran in branch '3.2': Issue12798 - Update mimetypes documentation. Correct the doc section where http://hg.python.org/cpython/rev/aef79ff1bc9b New changeset 4b306aee21a4 by Senthil Kumaran in branch '

[issue12798] Update mimetypes documentation

2011-12-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset cfa3fe9d7b1f by Senthil Kumaran in branch '2.7': porting mimetype doc changes from 3.2. http://hg.python.org/cpython/rev/cfa3fe9d7b1f -- ___ Python tracker <http://bugs.python.o

[issue12798] Update mimetypes documentation

2011-12-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9c19df6c8ea0 by Senthil Kumaran in branch '3.2': News entry for Issue12798 http://hg.python.org/cpython/rev/9c19df6c8ea0 -- ___ Python tracker <http://bugs.python.o

[issue13294] http.server: HEAD request should not return a body

2011-12-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2c1720468dbb by Senthil Kumaran in branch '3.2': Minor code style improvements in http.server suggested in Issue13294. http://hg.python.org/cpython/rev/2c1720468dbb New changeset 0466ee1816b1 by Senthil Kumaran in branch 'default&#

[issue13577] __qualname__ is not present on builtin methods and functions

2011-12-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7a7b698f6f21 by Antoine Pitrou in branch 'default': Issue #13577: Built-in methods and functions now have a __qualname__. http://hg.python.org/cpython/rev/7a7b698f6f21 -- ___ Python trac

[issue8623] Aliasing warnings in socketmodule.c

2011-12-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 683a1b1ff15d by Charles-François Natali in branch 'default': Issue #8623: Fix some strict-aliasing warnings. Patch by David Watson. http://hg.python.org/cpython/rev/683a1b1ff15d -- nosy: +

[issue13565] test_multiprocessing.test_notify_all() hangs on "AMD64 Snow Leopard 02 03.x"

2011-12-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 94494a779c20 by Charles-François Natali in branch '2.7': Issue #13565: Increase multiprocessing's server socket backlog, to avoid http://hg.python.org/cpython/rev/94494a779c20 New changeset 9b99adef3c78 by Charles-François Natali

[issue13658] Extra clause in class grammar documentation

2011-12-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset b65007ef59c0 by Benjamin Peterson in branch '3.2': kill superfluous 'comprehension' case (closes #13658) http://hg.python.org/cpython/rev/b65007ef59c0 -- nosy: +python-dev resolution: -> fixed stage: -> commi

[issue13632] Update token documentation to reflect actual token types

2011-12-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset b7d099e8c136 by Meador Inge in branch '3.2': Issue #13632: Update token documentation to reflect actual token types http://hg.python.org/cpython/rev/b7d099e8c136 New changeset 1461327e63b5 by Meador Inge in branch 'default':

[issue13639] UnicodeDecodeError when creating tar.gz with unicode name

2011-12-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset dc1045d08bd8 by Jason R. Coombs in branch '2.7': Issue #11638: Adding test to ensure .tar.gz files can be generated by sdist command with unicode metadata, based on David Barnett's patch. http://hg.python.org/cpython/r

[issue11638] python setup.py sdist --formats tar* crashes if version is unicode

2011-12-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset dc1045d08bd8 by Jason R. Coombs in branch '2.7': Issue #11638: Adding test to ensure .tar.gz files can be generated by sdist command with unicode metadata, based on David Barnett's patch. http://hg.python.org/cpython/r

[issue11638] python setup.py sdist --formats tar* crashes if version is unicode

2011-12-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset f0fcb82a88e9 by Jason R. Coombs in branch 'default': Ported some test cases from 2.7 for #11638 http://hg.python.org/cpython/rev/f0fcb82a88e9 -- ___ Python tracker <http://bugs.python.o

[issue11638] python setup.py sdist --formats tar* crashes if version is unicode

2011-12-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset a7744f778646 by Jason R. Coombs in branch 'default': Limit test scope to those platforms that can save the target filenames. Reference #11638. http://hg.python.org/cpython/rev/a7

[issue11638] python setup.py sdist --formats tar* crashes if version is unicode

2011-12-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9b681e0c04ed by Jason R. Coombs in branch '2.7': Limit test scope to those platforms that can save the target filenames. Reference #11638. http://hg.python.org/cpython/rev/9b681e0c04ed --

[issue12715] Add symlink support to shutil functions

2011-12-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset cf57ef65bcd0 by Antoine Pitrou in branch 'default': Issue #12715: Add an optional symlinks argument to shutil functions (copyfile, copymode, copystat, copy, copy2). http://hg.python.org/cpython/rev/cf57ef65bcd0 -- nosy: +

[issue13683] Docs in Python 3:raise statement mistake

2012-01-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset 420e01156272 by Sandro Tosi in branch '3.2': Issue #13683: raise with no exception in scope throws a RuntimeError; fix by Ramchandra Apte http://hg.python.org/cpython/rev/420e01156272 -- nosy: +

[issue13690] Add DEBUG flag to documentation of re.compile

2012-01-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9aebb4d07ddf by Sandro Tosi in branch '2.7': Issue #13690: add re.DEBUG; patch by Filip Gruszczyński http://hg.python.org/cpython/rev/9aebb4d07ddf New changeset f4a9c7cf98dd by Sandro Tosi in branch '3.2': Issue #13690: ad

[issue13680] Aifc comptype write fix

2012-01-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset a9cdc3ff2b8e by Sandro Tosi in branch '3.2': Issue #13680: add lowecase compression type to write header; patch by Oleg Plakhotnyuk http://hg.python.org/cpython/rev/a9cdc3ff2b8e -- nosy: +

[issue13640] add mimetype for application/vnd.apple.mpegurl

2012-01-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7926f594e333 by Sandro Tosi in branch 'default': Issue #13640: add application/vnd.apple.mpegurl MIME type; (partial) patch by Hiroaki Kawai http://hg.python.org/cpython/rev/7926f594e333 -- nosy: +

[issue13594] Aifc markers write fix

2012-01-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset c7a4405835e8 by Sandro Tosi in branch '3.2': Issue #13594: various fixes to aifc module; patch by Oleg Plakhotnyuk http://hg.python.org/cpython/rev/c7a4405835e8 -- nosy: +python-dev ___ Pyth

[issue13302] Clarification needed in C API arg parsing

2012-01-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset b2b7104691c9 by Sandro Tosi in branch '2.7': Issue #13302: backport part of 3ed28f28466f http://hg.python.org/cpython/rev/b2b7104691c9 -- nosy: +python-dev ___ Python tracker <http://bu

[issue9975] Incorrect use of flowinfo and scope_id in IPv6 sockaddr tuple

2012-01-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0c10061df711 by Charles-François Natali in branch '2.7': Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by http://hg.python.org/cpython/rev/0c10061df711 New changeset cc346a672091 by Charles-François Natali in b

[issue9349] document argparse's help=SUPPRESS

2012-01-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 572ddf2770bc by Sandro Tosi in branch '3.2': Issue #9349: add argparse.SUPPRESS to help doc http://hg.python.org/cpython/rev/572ddf2770bc New changeset 17b7b856cbe8 by Sandro Tosi in branch '2.7': Issue #9349: add argparse.

[issue6031] BaseServer.shutdown documentation is incomplete

2012-01-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4fad6b811c8b by Sandro Tosi in branch '2.7': Issue #6031: improve serve_forever() description http://hg.python.org/cpython/rev/4fad6b811c8b New changeset 4a30d36a9c69 by Sandro Tosi in branch '3.2': Issue #6031: improve serve_f

[issue13636] Python SSL Stack doesn't have a Secure Default set of ciphers

2012-01-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 25c2d24e1b11 by Antoine Pitrou in branch '3.2': Issue #13636: Weak ciphers are now disabled by default in the ssl module http://hg.python.org/cpython/rev/25c2d24e1b11 New changeset ace54f5e75d7 by Antoine Pitrou in branch 'default

[issue13636] Python SSL Stack doesn't have a Secure Default set of ciphers

2012-01-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset f9122975fd80 by Antoine Pitrou in branch '2.7': Issue #13636: Weak ciphers are now disabled by default in the ssl module http://hg.python.org/cpython/rev/f9122975fd80 -- ___ Python trac

[issue13705] Raising exceptions from finally works better than advertised in the documentation

2012-01-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset c39fbb24b3f4 by Benjamin Peterson in branch '3.2': exception support is correct now (closes #13705) http://hg.python.org/cpython/rev/c39fbb24b3f4 -- nosy: +python-dev resolution: -> fixed stage: -> committed/rejec

[issue13696] [urllib.request.HTTPRedirectHandler.http_error_302] Relative Redirect issue

2012-01-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 86141d28b20d by Senthil Kumaran in branch '3.2': Issue13696 - Fix 302 Redirection for Relative urls. http://hg.python.org/cpython/rev/86141d28b20d -- nosy: +python-dev ___ Python trac

[issue13699] test_gdb has recently started failing

2012-01-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset dfffb293f4b3 by Vinay Sajip in branch 'default': Closes #13699. Skipped two tests if Python is optimised. http://hg.python.org/cpython/rev/dfffb293f4b3 -- nosy: +python-dev resolution: -> fixed stage: -> committed/rejec

[issue13464] HTTPResponse is missing an implementation of readinto

2012-01-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4b21f651 by Antoine Pitrou in branch 'default': Issue #13713: fix a regression in HTTP chunked reading after 806cfe39f729 http://hg.python.org/cpython/rev/4b21f651 -- ___ Python trac

[issue13713] Regression for http.client read()

2012-01-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4b21f651 by Antoine Pitrou in branch 'default': Issue #13713: fix a regression in HTTP chunked reading after 806cfe39f729 http://hg.python.org/cpython/rev/4b21f651 -- nosy: +

[issue10772] Several actions for argparse arguments missing from docs

2012-01-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 278fbd7b9608 by Sandro Tosi in branch '2.7': Issue #10772: add count and help argparse action; patch by Marc Sibson http://hg.python.org/cpython/rev/278fbd7b9608 New changeset 326f755962e3 by Sandro Tosi in branch '3.2': Iss

[issue13699] test_gdb has recently started failing

2012-01-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset a3d4cde1c357 by Vinay Sajip in branch '3.2': Closes #13699. Skipped two tests if Python is optimised. http://hg.python.org/cpython/rev/a3d4cde1c357 New changeset 7d87ebbbd718 by Vinay Sajip in branch 'default': Closes #13699:

[issue12926] tarfile tarinfo.extract*() broken with symlinks

2012-01-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 573fc99873bd by Lars Gustäbel in branch '3.2': Issue #12926: Fix a bug in tarfile's link extraction. http://hg.python.org/cpython/rev/573fc99873bd New changeset 5936c2005ab7 by Lars Gustäbel in branch 'default': Merge from

[issue11984] Wrong "See also" in symbol and token module docs

2012-01-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset d8102ccc5bf7 by Sandro Tosi in branch '2.7': Issue #11984: remove reference to parser, it's not showing symbol usage anymore http://hg.python.org/cpython/rev/d8102ccc5bf7 New changeset b326d90ce9c9 by Sandro Tosi in branch 

[issue12042] What's New multiprocessing example error

2012-01-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3353f9747a39 by Sandro Tosi in branch '2.7': Issue #12042: a queue is only used to retrive results; preliminary patch by Jordan Stadler http://hg.python.org/cpython/rev/3353f9747a39 New changeset 0d4bb1356f39 by Sandro Tosi in branch &#

[issue9993] shutil.move fails on symlink source

2012-01-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1ea8b7233fd7 by Antoine Pitrou in branch 'default': Issue #9993: When the source and destination are on different filesystems, http://hg.python.org/cpython/rev/1ea8b7233fd7 -- nosy: +

[issue13502] Documentation for Event.wait return value is either wrong or incomplete

2012-01-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset eb39d862a250 by Charles-François Natali in branch '3.2': Issue #13502: threading: Fix a race condition in Event.wait() that made it http://hg.python.org/cpython/rev/eb39d862a250 New changeset 0fe63bb20e74 by Charles-François Natali

[issue13732] test_logging failure on Windows buildbots

2012-01-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset 870f8fdfbada by Vinay Sajip in branch 'default': Closes #13732: now use os.linesep instead of a literal newline. http://hg.python.org/cpython/rev/870f8fdfbada -- nosy: +python-dev resolution: -> fixed stage: needs patch

[issue12364] Deadlock in test_concurrent_futures

2012-01-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset 26389e9efa9c by Ross Lagerwall in branch '3.2': Issue #12364: Fix a hang in concurrent.futures.ProcessPoolExecutor. http://hg.python.org/cpython/rev/26389e9efa9c New changeset 25f879011102 by Ross Lagerwall in branch 'default'

[issue13738] Optimize bytes.upper() and lower()

2012-01-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9683d59170ee by Antoine Pitrou in branch 'default': Issue #13738: Simplify implementation of bytes.lower() and bytes.upper(). http://hg.python.org/cpython/rev/9683d59170ee -- nosy: +

[issue13739] os.fdlistdir() is not idempotent

2012-01-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7b2a178c028b by Charles-François Natali in branch 'default': Issue #13739: In os.listdir(), rewind the directory stream (so that listdir() http://hg.python.org/cpython/rev/7b2a178c028b -- nosy: +

[issue13739] os.fdlistdir() is not idempotent

2012-01-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 36f2e236c601 by Charles-François Natali in branch 'default': Issue #13739: It's simpler and more direct to call rewinddir() at the http://hg.python.org/cpython/rev/36f2e236c601 -- ___

[issue13747] ssl_version documentation error

2012-01-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3db0abf3058b by Antoine Pitrou in branch '2.7': Issue #13747: fix documentation error about the default SSL version. http://hg.python.org/cpython/rev/3db0abf3058b New changeset 4f14c249f3de by Antoine Pitrou in branch '2.7': I

[issue13747] ssl_version documentation error

2012-01-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7ae0f71862f9 by Antoine Pitrou in branch '3.2': Issue #13747: fix documentation error about the default SSL version. http://hg.python.org/cpython/rev/7ae0f71862f9 New changeset b4194af97948 by Antoine Pitrou in branch '3.2': I

[issue12760] Add create mode to open()

2012-01-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset bf609baff4d3 by Charles-François Natali in branch 'default': Issue #12760: Add a create mode to open(). Patch by David Townshend. http://hg.python.org/cpython/rev/bf609baff4d3 -- nosy: +

[issue11906] test_argparse failure in interactive mode

2012-01-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset b950267efd59 by Terry Jan Reedy in branch '3.2': #11906 Make test_argparse work interactively by removing extra space http://hg.python.org/cpython/rev/b950267efd59 -- nosy: +python-dev

[issue11906] test_argparse failure in interactive mode

2012-01-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset ec32e6ec16fc by Terry Jan Reedy in branch '2.7': #11906 Make test_argparse work interactively by removing extra space http://hg.python.org/cpython/rev/ec32e6ec16fc -- ___ Python trac

[issue13642] urllib incorrectly quotes username and password in https basic auth

2012-01-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 01ef13e9e225 by Senthil Kumaran in branch '2.7': - Issue #13642: Unquote before b64encoding user:password during Basic http://hg.python.org/cpython/rev/01ef13e9e225 -- nosy: +python-dev

[issue9637] docs do not say that urllib uses HTTP_PROXY

2012-01-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3370fa13ed73 by Senthil Kumaran in branch '3.2': Issue9637 - Explain in getproxies_environment that _proxy environ variable case does not matter. http://hg.python.org/cpython/rev/3370fa13ed73 New changeset eb028b3c62c9 by Senthil

[issue9637] docs do not say that urllib uses HTTP_PROXY

2012-01-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4a30eae3b945 by Senthil Kumaran in branch '2.7': port to 2.7 - Issue9637 - Details that case of Proxy env var does not matter. http://hg.python.org/cpython/rev/4a30eae3b945 -- ___ Python trac

[issue13757] os.fdlistdir() should not close the file descriptor given in argument

2012-01-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6d395ed03f95 by Charles-François Natali in branch 'default': Issue #13757: Change os.fdlistdir() so that it duplicates the passed file http://hg.python.org/cpython/rev/6d395ed03f95 -- nosy: +

<    1   2   3   4   5   6   7   8   9   10   >