[issue1633941] for line in sys.stdin: doesn't notice EOF the first time

2016-02-04 Thread Don Hatch
Don Hatch added the comment: I've reported the unfriendly input withholding that several people have observed and mentioned here as a separate bug: http://bugs.python.org/issue26290 . The symptom is different but I suspect it has exactly the same underlying cause (incorrect use of stdio) and fi

[issue26280] ceval: Optimize [] operation similarly to CPython 2.7

2016-02-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Looks as statistics varies from test to test too much. Could you please collect the statistics for running all tests? -- ___ Python tracker _

[issue26290] fileinput and 'for line in sys.stdin' do strange mockery of input buffering

2016-02-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: For fileinput see issue15068. -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-li

[issue22847] Improve method cache efficiency

2016-02-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6357d851029d by Antoine Pitrou in branch '2.7': Issue #22847: Improve method cache efficiency. https://hg.python.org/cpython/rev/6357d851029d -- ___ Python tracker ___

[issue22847] Improve method cache efficiency

2016-02-04 Thread Benjamin Peterson
Benjamin Peterson added the comment: I suppose we've backported scarier things. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue1927] raw_input behavior incorrect if readline not enabled

2016-02-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This is rather an objection. If Gnu Readline is configured for stdout, why bash outputs to stderr? We should investigate what exactly do bash and other popular programs with readline, and implement this in Python. Changing the documentation usually is a les

[issue20160] broken ctypes calling convention on MSVC / 64-bit Windows (large structs)

2016-02-04 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue1927] raw_input behavior incorrect if readline not enabled

2016-02-04 Thread Martin Panter
Martin Panter added the comment: Okay, I see. To clarify, it is Python that sets up Gnu Readline for stdout: . The problem is whichever way we go, we will have to change some part of the behaviour to make it internally consi

[issue1927] raw_input behavior incorrect if readline not enabled

2016-02-04 Thread Martin Panter
Martin Panter added the comment: Okay, I see. To clarify, it is Python that sets up Gnu Readline for stdout: . The problem is whichever way we go, we will have to change some part of the behaviour to make it internally consi

<    1   2