[issue29481] 3.6.0 doc describes 3.6.1 feature - typing.Deque

2017-02-14 Thread Thomas Caswell
Thomas Caswell added the comment: I am not optimistic about the speed at which my employer will get this sorted out. better to just fix it and drop my commit! On Tue, Feb 14, 2017, 23:43 Mariatta Wijaya wrote: Mariatta Wijaya added the comment: Thanks, Raymond :) I prepared the pull requests

[issue29481] 3.6.0 doc describes 3.6.1 feature - typing.Deque

2017-02-14 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks, Thomas :) I'll let you close your own PR on GitHub. -- ___ Python tracker ___ ___ Python-bu

[issue29557] binhex documentation claims unknown bug

2017-02-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I think this should be read in the context of previous lines: If you code or decode textfiles on non-Macintosh platforms they will still use the old Macintosh newline convention (carriage-return as end of line). And may be related to the in-code comm

[issue29557] binhex documentation claims unknown bug

2017-02-14 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +macOS nosy: +ned.deily, ronaldoussoren ___ Python tracker ___ ___ Python-bugs-list maili

[issue24665] CJK support for textwrap

2017-02-14 Thread INADA Naoki
INADA Naoki added the comment: Sorry, I'm not unicode expert. Important usage of textwrap is printing in terminal. So I think we should learn from software relating terminal. tmux uses utf8proc. utf8proc calculates display width by script at here. https://github.com/JuliaLang/utf8proc/tree/mas

[issue24665] CJK support for textwrap

2017-02-14 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: Some CJK character are marked as "ambiguous width". Seems in this patch ambiguous characters are assumed as narrow. Maybe it's better to document it? -- nosy: +Chi Hsuan Yen ___ Python tracker

[issue24665] CJK support for textwrap

2017-02-14 Thread INADA Naoki
INADA Naoki added the comment: FYI, I had implemented textwrap respects EAW in Bazaar project. See here. http://bazaar.launchpad.net/~bzr-pqm/bzr/bzr.dev/revision/5874 -- ___ Python tracker

[issue29561] Interactive mode gives sys.ps2 not sys.ps1 after comment-only line

2017-02-14 Thread Eryk Sun
Eryk Sun added the comment: For the tokenizer, a blank line is "[a] logical line that contains only spaces, tabs, formfeeds and possibly a comment" [1]. A blank line is normally ignored, except in the REPL an entirely blank line (i.e. no whitespace or comment) is used to end a multi-line state

[issue29564] ResourceWarning tracking is attaching incorrect file:position to unclosed socket

2017-02-14 Thread Martin Panter
Martin Panter added the comment: Without more information about what the relevant code is and why you think the line number is wrong, my best guess is you may not realize how the ResourceWarning is emitted. It happens when the garbage collector runs and destroys the socket object, which happen

[issue24665] CJK support for textwrap

2017-02-14 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- dependencies: +Add functions to get the width in columns of a character, textwrap.wrap: add control for fonts with different character widths ___ Python tracker ___

<    1   2