[issue20374] Failure to compile with readline-6.3-rc1

2014-02-05 Thread Ned Deily
Changes by Ned Deily : Added file: http://bugs.python.org/file33937/issue20374_no_cast_3x.patch ___ Python tracker ___ ___ Python-bugs-list ma

[issue20374] Failure to compile with readline-6.3-rc1

2014-02-05 Thread Benjamin Peterson
Benjamin Peterson added the comment: That is sure ugly, but okay. :) -- assignee: benjamin.peterson -> ned.deily ___ Python tracker ___ __

[issue20374] Failure to compile with readline-6.3-rc1

2014-02-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0b5b0bfcc7b1 by Ned Deily in branch '2.7': Issue #20374: Avoid compiler warnings when compiling readline with libedit. http://hg.python.org/cpython/rev/0b5b0bfcc7b1 New changeset 9131a9edcac4 by Ned Deily in branch '3.3': Issue #20374: Avoid compile

[issue20374] Failure to compile with readline-6.3-rc1

2014-02-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 74c7a6fd8b45 by Ned Deily in branch '2.7': Issue #20374: delete spurious empty line http://hg.python.org/cpython/rev/74c7a6fd8b45 New changeset 6616c94d6149 by Ned Deily in branch '3.3': Issue #20374: delete spurious empty line http://hg.python.org/

[issue20374] Failure to compile with readline-6.3-rc1

2014-02-05 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue20524] format error messages should provide context information

2014-02-05 Thread Eric V. Smith
Eric V. Smith added the comment: int, float, str, and complex are the types formatted by that code. Notice that Decimal already has a better message: >>> format(Decimal(42), 'tx') Traceback (most recent call last): ... ValueError: Invalid format specifier: tx >>> format(42, 'tx') Traceback (

[issue20521] [PATCH] Cleanup for "dis" module documentation

2014-02-05 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- versions: +Python 2.7, Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20518] multiple inheritance + C extension = possibly unexpected __base__

2014-02-05 Thread Eric Snow
Eric Snow added the comment: So to restate, where some class Spam inherits from multiple classes and at least one was written in C, Spam.__base__ may have an unexpected value. > So, to conclude: it is sometimes not possible to use python > cooperative multiple inheritance if C base classes are

[issue20167] Exception on IDLE closing

2014-02-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: More thoughts: The reason for explicit __del__ is to release memory resources connected to other objects or structures at the behest of the Python instance being deleted. If __del__ were only called at shutdown, it would not be needed, as all memory is release

[issue20520] Readline test in test_codecs is broken

2014-02-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 305b6a5da852 by Serhiy Storchaka in branch '2.7': Issue #20520: Fixed readline test in test_codecs. http://hg.python.org/cpython/rev/305b6a5da852 New changeset 82d374a9bbc7 by Serhiy Storchaka in branch '3.3': Issue #20520: Fixed readline test in te

[issue20520] Readline test in test_codecs is broken

2014-02-05 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue16074] Bad error message in os.rename, os.link, and os.symlink

2014-02-05 Thread Larry Hastings
Larry Hastings added the comment: I probably should have continued with this issue instead of creating a new issue for it, sorry. But there's a new issue tracking this change, where I propose to add new error-reporting functions that support two filenames. That's happening in #20517. --

[issue20525] Got compiler warning when compiling readline module

2014-02-05 Thread Vajrasky Kok
New submission from Vajrasky Kok: On Fedora 20, I got this compiler warning: /home/sky/Code/python/cpython3.4/Modules/readline.c: In function ‘flex_complete’: /home/sky/Code/python/cpython3.4/Modules/readline.c:962:5: warning: passing argument 1 of ‘completion_matches’ discards ‘const’ qualifi

<    1   2