[issue30603] textwrap: declining indent level has no test case

2017-06-14 Thread Jonathan Eunice
Jonathan Eunice added the comment: @emilyemorehouse Added new tests per your request: https://github.com/python/cpython/pull/2206 -- ___ Python tracker ___ _

[issue28180] Implementation of the PEP 538: coerce C locale to C.utf-8

2017-06-14 Thread Nick Coghlan
Nick Coghlan added the comment: Ah, I finally understand Victor's comment on my initial attempt at fixing the tests on Mac OS X - the standard streams *don't* use the filesystem encoding, so they default to ASCII in the C locale, even on Mac OS X. -- __

[issue30670] pprint for dict in sorted order or insert order?

2017-06-14 Thread Raymond Hettinger
Raymond Hettinger added the comment: Until dict insertion order is guaranteed, it doesn't make sense to change pprint(). -- nosy: +rhettinger ___ Python tracker ___

[issue28180] Implementation of the PEP 538: coerce C locale to C.utf-8

2017-06-14 Thread Nick Coghlan
Changes by Nick Coghlan : -- pull_requests: +2252 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue17870] Python does not provide PyLong_FromIntMax_t() or PyLong_FromUintMax_t() function

2017-06-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: It may be better to make _PyLong_FromByteArray() and _PyLong_AsByteArray() public. -- ___ Python tracker ___

[issue29591] Various security vulnerabilities in bundled expat (CVE-2016-0718 and CVE-2016-4472)

2017-06-14 Thread Ned Deily
Ned Deily added the comment: Thanks, Victor, for seeing this through and thanks, everyone else, for the reviews and assistance. -- ___ Python tracker ___ ___

[issue30670] pprint for dict in sorted order or insert order?

2017-06-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Concur with Raymond. -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailin

[issue30669] json.tool does not accept an --indent flag

2017-06-14 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +serhiy.storchaka resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Specifying indent in the json.tool command ___ Python tracker __

[issue30362] Launcher add list and list with paths options

2017-06-14 Thread Steve Barnes
Steve Barnes added the comment: If this option is added into the py launcher it will make it usable for a multipy script/utility that would call py -0 to get a list of installed pythons and then call it for each of the returned versions with the remaining parameters. I personally would find t

[issue30348] IDLE: Add test_autocoplete unittest

2017-06-14 Thread Louie Lu
Changes by Louie Lu : -- title: IDLE: Add fetch completions and get entity unittest -> IDLE: Add test_autocoplete unittest ___ Python tracker ___ ___

[issue30348] IDLE: Add test_autocoplete unittest

2017-06-14 Thread Louie Lu
Changes by Louie Lu : -- pull_requests: +2253 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue29304] dict: simplify lookup function

2017-06-14 Thread Dmitry Rubanovich
Dmitry Rubanovich added the comment: lookdict_index() (and the rest of the files in dictobject.c) are using unnecessarily complicated perturb mechanism. And, in fact, it's slower than the simpler case. Instead of this: for (size_t perturb = hash;;) { perturb >>= PERTURB_SHIFT; i = ma

<    1   2