[issue15348] IDLE - shell becomes unresponsive if debugger windows is closed while active.

2015-11-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset 427ad0ede016 by Terry Jan Reedy in branch '2.7': Issue 15348: Stop debugger engine (normally in user process) https://hg.python.org/cpython/rev/427ad0ede016 New changeset 4eae64a9cd26 by Terry Jan Reedy in branch '3.4': Issue 15348: Stop debugger en

[issue15348] IDLE - shell becomes unresponsive if debugger windows is closed while active.

2015-11-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: I don't like the idea of [x] flashing quit instead of closing. This patch, on top of the one for #24455, may not be perfect, but the two are definite improvements. Unless I see something critically bad first, I want them in the upcoming releases. Mark claim

[issue8304] time.strftime() and Unicode characters on Windows

2015-11-20 Thread Takayuki SHIMIZUKAWA
Takayuki SHIMIZUKAWA added the comment: I've implemented a workaround for Sphinx: >>> time.strftime(u'%Y 年'.encode('unicode-escape').decode(), >>> *args).encode().decode('unicode-escape') 2015 年 https://github.com/sphinx-doc/sphinx/blob/8ae43b9fd/sphinx/util/osutil.py#L175 -- nosy: +

[issue25626] Gzip fails for file over 2**32 bytes

2015-11-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Martin, the patch LGTM. The difference between __int__() and __index__() is that float has the former, but not the latter. For better compatibility we have to use __int__() in maintained releases. But obviously __index__() is more appropriate sema

[issue25626] Gzip fails for file over 2**32 bytes

2015-11-20 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> martin.panter stage: patch review -> commit review ___ Python tracker ___ ___ Python-bu

[issue25687] Error during test case and tearDown

2015-11-20 Thread Benno Leslie
New submission from Benno Leslie: I'm not sure if this should be considered a bug, but the behaviour is surprising and not clearly documented. I a have a very simple test that has an error during both the test case, and during tearDown. """ import unittest class Test(unittest.TestCase):

<    1   2