[issue21559] OverflowError should not happen for integer operations

2014-06-03 Thread Josh Rosenberg
Josh Rosenberg added the comment: It usually doesn't just mean outside a required range, it means outside the range of values representable due to implementation specific limitations (e.g. the function is converting to a C type). You don't raise OverflowError because your function only allows

[issue21651] asyncio tests ResourceWarning

2014-06-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9d2c0b41c1d5 by Victor Stinner in branch '3.4': Issue #21651: Fix ResourceWarning when running asyncio tests on Windows. http://hg.python.org/cpython/rev/9d2c0b41c1d5 New changeset b2f329e9cd18 by Victor Stinner in branch 'default': (Merge 3.4)

[issue21651] asyncio tests ResourceWarning

2014-06-03 Thread STINNER Victor
STINNER Victor added the comment: Thanks for the patch. I also applied it to Tulip. -- nosy: +haypo resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21651

[issue18381] unittest warnings counter

2014-06-03 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: FWICT Berker's patch LGTM. Michael, are you OK with committing this? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18381 ___

[issue21326] asyncio: request clearer error message when event loop closed

2014-06-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 690b6ddeee9c by Victor Stinner in branch 'default': Issue #21326: Add asyncio.BaseEventLoop.is_closed() method http://hg.python.org/cpython/rev/690b6ddeee9c -- nosy: +python-dev ___ Python tracker

[issue21326] asyncio: request clearer error message when event loop closed

2014-06-03 Thread STINNER Victor
STINNER Victor added the comment: I fixed the issue in Python 3.5 by adding a new BaseEventLoop.is_closed() method. Calling run_forever() or run_until_complete() now raises an error. I don't know yet if this issue should be fixed in Python 3.4. If it should be fixed, I don't know how it

[issue21326] asyncio: request clearer error message when event loop closed

2014-06-03 Thread Yury Selivanov
Changes by Yury Selivanov yselivanov...@gmail.com: -- nosy: +yselivanov ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21326 ___ ___

[issue15599] test_threaded_import fails sporadically on Windows and FreeBSD

2014-06-03 Thread STINNER Victor
STINNER Victor added the comment: A recent failure. As usual, the test passed at the second run. http://buildbot.python.org/all/builders/AMD64%20FreeBSD%2010.0%203.x/builds/2180/steps/test/logs/stdio == FAIL:

[issue21326] asyncio: request clearer error message when event loop closed

2014-06-03 Thread STINNER Victor
STINNER Victor added the comment: Attached asyncio_closed_py34.patch: minimum patch to fix this issue. run_forever() and run_until_complete() raises a RuntimeError if the event loop was closed. The patch only uses the private attribute BaseEventLoop._closed in the BaseEventLoop class, not

[issue13631] readline fails to parse some forms of .editrc under editline (libedit) emulation on Mac OS X

2014-06-03 Thread Zvezdan Petkovic
Zvezdan Petkovic added the comment: Ned, I just signed the contributor agreement form. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13631 ___

[issue18409] Idle: test AutoComplete.py

2014-06-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4f1abf87df12 by Terry Jan Reedy in branch '2.7': Issue #18409: Idle: add unittest for AutoComplete. Patch by Phil Webster. http://hg.python.org/cpython/rev/4f1abf87df12 New changeset bf8710cf896b by Terry Jan Reedy in branch '3.4': Issue #18409:

[issue18409] Idle: test AutoComplete.py

2014-06-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: The coverage of Phil's patch is about 60%. I decided to push it with slight modification so he is properly credited with what he did. Changes: Move mock AutoCompleteWindow to test file; too special. Move ac_func to mock_idle for use in other tests; well done!

[issue17390] display python version on idle title bar

2014-06-03 Thread Raymond Hettinger
Raymond Hettinger added the comment: I don't know if this is related but the Window tab has been affect as well. It shows all open windows like this *Python 2.7.7 Shell* Python 2.7.7: demo.py /Users/raymond/class/demo.py Python 2.7.7: download.py /Users/raymond/class/download.py This

[issue21654] IDLE call tips emitting future warnings about ElementTree objects

2014-06-03 Thread Raymond Hettinger
New submission from Raymond Hettinger: While editing code that uses ElementTree, the call tips code is working in the background and emits warnings to the console: Warning (from warnings module): File /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/idlelib/CallTips.py, line

[issue21654] IDLE call tips emitting future warnings about ElementTree objects

2014-06-03 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- keywords: +easy nosy: +terry.reedy stage: - needs patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21654 ___

[issue21653] Row.keys() in sqlite3 returns a list, not a tuple

2014-06-03 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- nosy: +ghaering versions: +Python 3.4, Python 3.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21653 ___

[issue21653] Row.keys() in sqlite3 returns a list, not a tuple

2014-06-03 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- keywords: +easy stage: - needs patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21653 ___

<    1   2   3