[issue16893] Generate Idle help from Doc/library/idle.rst

2015-09-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: In msg185726 Ned said "Ironically, the Tk text widget is perfectly capable of rendering richer text styles." He was and is correct. Mark Roseman offered to take up the challenge. In spite of my skepticism, he went ahead and built sphinxview around HTMLParser

[issue13559] Use sendfile where possible in httplib

2015-09-10 Thread Martin Panter
Martin Panter added the comment: The multiple personalities of HTTPConnection.send() and friends is a bit of a can of worms. I suggest working on Issue 23740 to get an idea of what kinds of file objects are meant to be supported, and what things may work by accident and be used in the real wor

[issue25053] Possible race condition in Pool

2015-09-10 Thread Stanislaw Izaak Pitucha
Stanislaw Izaak Pitucha added the comment: I agree with what you said mostly. I wonder though if the message could be clearer in the docs. I remember that the rule about the module being importable without side-effects, but didn't even consider that for the interactive session. If I understand

[issue25047] xml.etree.ElementTree encoding declaration should be capital ('UTF-8') rather than lowercase ('utf-8')

2015-09-10 Thread Martin Panter
Changes by Martin Panter : -- stage: -> needs patch versions: +Python 3.5, Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mai

[issue24984] document AF_BLUETOOTH socket address formats

2015-09-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 00db99149cdd by Martin Panter in branch '3.4': Issue #24984: BTPROTO_SCO supports only bytes objects https://hg.python.org/cpython/rev/00db99149cdd New changeset b507a7e79154 by Martin Panter in branch '3.5': Issue #24984: Merge BTPROTO_SCO doc fi

[issue24984] document AF_BLUETOOTH socket address formats

2015-09-10 Thread Martin Panter
Changes by Martin Panter : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue25022] Remove PC/example_nt/

2015-09-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8ba735b018d2 by Martin Panter in branch '3.4': Issue #25022: Avoid warning about unused suspicious rule https://hg.python.org/cpython/rev/8ba735b018d2 New changeset b75b4a6e1c9b by Martin Panter in branch '3.5': Issue #25022: Merge susp-ignored.cs

[issue16893] Generate Idle help from Doc/library/idle.rst

2015-09-10 Thread Zachary Ware
Zachary Ware added the comment: I'd be happy to work on making an 'idledoc' target for the Doc/ makefiles that works with Mark's viewer. I can't guarantee any kind of timeframe, but the idledoc target wouldn't be necessary right off the bat; it could be done after the main bulk of the patch i

[issue25064] Adjust tempfile documentation for bytes filename support

2015-09-10 Thread Martin Panter
New submission from Martin Panter: This is a followup to Issue 24230, which added support for bytes filenames to “tempfile” module. Currently I think the documentation is misleading, for example it suggests the default values are prefix="tmp" and suffix="", when they are actually None to avoid

[issue25060] BUILD_MAP stack effect suboptimal

2015-09-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6c1b0dd07340 by Benjamin Peterson in branch '3.5': compute stack effect of BUILD_MAP correctly (closes #25060) https://hg.python.org/cpython/rev/6c1b0dd07340 New changeset 7d76df6dafde by Benjamin Peterson in branch 'default': merge 3.5 (#25060) htt

[issue25065] https://docs.python.org/library should redirect to Python 3 doc

2015-09-10 Thread Martín Gaitán
New submission from Martín Gaitán: The canonical link for documentation https://docs.python.org/ redirect to the index page of the stable Python 3's documentation However, https://docs.python.org/library still redirects to the Python 2 standard lib's docs. To be consequent https://docs.pyth

[issue25066] Better repr for multiprocessing.synchronize objects

2015-09-10 Thread Davin Potts
New submission from Davin Potts: Inspired by issue24391 and the changes proposed to the threading module's reprs for Event, Semaphore, BoundedSemaphore, and Barrier, the corresponding objects in the multiprocessing module should have their reprs updated accordingly. -- assignee: davin

[issue25066] Better repr for multiprocessing.synchronize objects

2015-09-10 Thread Davin Potts
Changes by Davin Potts : -- dependencies: +Better repr for threading objects ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue25066] Better repr for multiprocessing.synchronize objects

2015-09-10 Thread Davin Potts
Davin Potts added the comment: This patch implements the majority opinion from issue24391 for the desired format of the reprs produced by Event, Semaphore, BoundedSemaphore, and Barrier. It provides tests around each, inspired by Serhiy's preliminary patch for that same issue but adapted for

[issue25030] io.[Text]IOBase.seek doesn't take keyword parameter

2015-09-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0ca216f5276e by Martin Panter in branch '3.4': Issue #25030: Do not document seek() as if it accepts keyword arguments https://hg.python.org/cpython/rev/0ca216f5276e New changeset 77784422da4d by Martin Panter in branch '2.7': Issue #25030: Do not

[issue24391] Better repr for threading objects

2015-09-10 Thread Davin Potts
Davin Potts added the comment: Echoing Larry's insightful summary, it would not be particularly rewarding to pursue a goal of making the whole world of reprs consistent. But as Antoine and Serhiy began to point out, the multiprocessing module not only has its own Event, Semaphore, BoundedSema

[issue25066] Better repr for multiprocessing.synchronize objects

2015-09-10 Thread Davin Potts
Davin Potts added the comment: To Antoine's point in issue24391, here too, these modifications to the format of the repr are estimated to have very little impact or risk to breaking existing code. -- ___ Python tracker

[issue25030] io.[Text]IOBase.seek doesn't take keyword parameter

2015-09-10 Thread Martin Panter
Martin Panter added the comment: Thanks for the patch. I took the liberty of also fixing the doc string of BytesIO.seek(). -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker

[issue23484] SemLock acquire() keyword arg 'blocking' is invalid

2015-09-10 Thread Davin Potts
Davin Potts added the comment: @berker.peksag, @r.david.murray: Could I gently nudge one of you into committing the final versions of these patches? -- ___ Python tracker ___ __

[issue25067] Hello

2015-09-10 Thread Petri Lehtinen
Changes by Petri Lehtinen : -- files: attachment.zip nosy: petri.lehtinen priority: normal severity: normal status: open title: Hello Added file: http://bugs.python.org/file40433/attachment.zip ___ Python tracker _

[issue25065] https://docs.python.org/library should redirect to Python 3 doc

2015-09-10 Thread Zachary Ware
Zachary Ware added the comment: This is by design, see PEP 430 for rationale. Eventually the Python 3 docs will be the default, but that day isn't quite here yet. -- nosy: +zach.ware resolution: -> not a bug stage: -> resolved status: open -> closed _

[issue24225] Idlelib: changing file names

2015-09-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: A new factor has entered the picture: the opportunity to move dialogs from using tk widgets to ttk widgets. However, we cannot yet drop support for systems that do not have ttk widgets. We could accommodate using both sets of dialog widgets by adding lots of

[issue25038] test_os.TestSendfile.test_keywords() introduced a regression

2015-09-10 Thread STINNER Victor
STINNER Victor added the comment: Sure, close the issue if the regression is fixed. -- ___ Python tracker ___ ___ Python-bugs-list mai

[issue25067] Spam

2015-09-10 Thread Zachary Ware
Changes by Zachary Ware : -- nosy: -petri.lehtinen resolution: -> not a bug stage: -> resolved status: open -> closed title: Hello -> Spam ___ Python tracker ___ _

[issue25067] Spam

2015-09-10 Thread Zachary Ware
Changes by Zachary Ware : Removed file: http://bugs.python.org/file40433/attachment.zip ___ Python tracker ___ ___ Python-bugs-list mailing li

<    1   2