[issue11567] http.server error message format

2011-03-19 Thread Senthil Kumaran
Senthil Kumaran added the comment: Ezio Melotti wrote: > This is just nitpicking, but serving XHTML as text/html is wrong. While, I thought this statement is correct and expected the Internet media-type should be something else (application/xhtml+xml), but as per w3c, it is not wrong to serv

[issue7198] Extraneous newlines with csv.writer on Windows

2011-03-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset ab27f16f707a by R David Murray in branch 'default': #7198: add newlines='' to csv.writer docs. http://hg.python.org/cpython/rev/ab27f16f707a New changeset 959f666470cc by R David Murray in branch 'default': Merge #7198 doc fix. http://hg.python.org

[issue7198] Extraneous newlines with csv.writer on Windows

2011-03-19 Thread R. David Murray
R. David Murray added the comment: Fixed now. Thanks, and sorry for the delay, and the confusion. -- resolution: accepted -> fixed stage: needs patch -> committed/rejected ___ Python tracker __

[issue11567] http.server error message format

2011-03-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 135a0d7bc4db by Senthil Kumaran in branch '3.1': Issue #11567 - Let's have the DOCTYPE as HTML instead of XHTML. http://hg.python.org/cpython/rev/135a0d7bc4db -- ___ Python tracker

[issue10050] urllib.request still has old 2.x urllib primitives

2011-03-19 Thread Jeff McNeil
Jeff McNeil added the comment: Take four! Includes Antoine's suggestions. I changed the callback to return (block num, read size, file size) as opposed to (block num, block size, file size) as this seems to make more sense. I appreciate the back and forth. I'd be happy to create issues & han

[issue3080] Full unicode import system

2011-03-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6c80ac44ae9c by Victor Stinner in branch 'default': Issue #3080: zipimport has a full unicode suppport http://hg.python.org/cpython/rev/6c80ac44ae9c New changeset b50a0d44545a by Victor Stinner in branch 'default': Issue #3080: PyImport_Cleanup() u

[issue3080] Full unicode import system

2011-03-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset f8d6f6797909 by Victor Stinner in branch 'default': Issue #3080: Fix case_ok() using case_bytes() http://hg.python.org/cpython/rev/f8d6f6797909 -- ___ Python tracker _

[issue3080] Full unicode import system

2011-03-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset dc38c4d65cd9 by Victor Stinner in branch 'default': Issue #3080: Fix call to case_ok() in find_init_module() http://hg.python.org/cpython/rev/dc38c4d65cd9 -- ___ Python tracker

[issue7198] Extraneous newlines with csv.writer on Windows

2011-03-19 Thread R. David Murray
R. David Murray added the comment: Gah, I messed up the push. Now I have to backport the doc fix :( -- ___ Python tracker ___ ___ Pyt

[issue7198] Extraneous newlines with csv.writer on Windows

2011-03-19 Thread R. David Murray
Changes by R. David Murray : -- assignee: skip.montanaro -> r.david.murray status: closed -> open ___ Python tracker ___ ___ Python-bug

[issue10050] urllib.request still has old 2.x urllib primitives

2011-03-19 Thread Senthil Kumaran
Senthil Kumaran added the comment: Thanks again. Agree to use of returning the block size to the returnhook callable. But this is going be a deviation from the existing behavior which was present to inform the user at regular intervals and did not bother to provide any 'progressive size' relate

[issue11603] Python crashes or hangs when rebinding __repr__ as __str__

2011-03-19 Thread Andreas Stührk
Andreas Stührk added the comment: On Sat, Mar 19, 2011 at 12:41 AM, Terry J. Reedy wrote: > Whether or not this fixes issue ('should' is a bit vague, confirmation is > needed) this seems like a good idea. Yes, it fixes the issue. I wrote "should" because I was a bit in a hurry and hadn't put

[issue11603] Python crashes or hangs when rebinding __repr__ as __str__

2011-03-19 Thread Andreas Stührk
Changes by Andreas Stührk : Removed file: http://bugs.python.org/file21283/issue_11603.patch ___ Python tracker ___ ___ Python-bugs-list maili

[issue11603] Python crashes or hangs when rebinding __repr__ as __str__

2011-03-19 Thread Andreas Stührk
Changes by Andreas Stührk : Added file: http://bugs.python.org/file21300/issue_11603.patch ___ Python tracker ___ ___ Python-bugs-list mailing

[issue11611] wxPython PropertyGrid Demo error and fix

2011-03-19 Thread Arif Zaman
Arif Zaman added the comment: Thanks, will do. Arif On Sun, Mar 20, 2011 at 2:35 AM, Ned Deily wrote: > > Ned Deily added the comment: > > What demo file are you referring to? If it is something to do with > wxPython, you probably want to refer to the bug tracker for that project. > wxPyt

[issue11611] wxPython PropertyGrid Demo error and fix

2011-03-19 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> invalid stage: -> committed/rejected status: open -> closed type: compile error -> ___ Python tracker ___

[issue11612] xml.dom.minidom fail to parse SVG file.

2011-03-19 Thread Campbell Barton
New submission from Campbell Barton : python3.2mu -c "import xml.dom.minidom ; xml.dom.minidom.parse('gnome-cpu-frequency-applet.svg')" --- gives the following traceback Traceback (most recent call last): File "", line 1, in File "/usr/lib/python3.2/xml/dom/minidom.py", line 1939, in parse

[issue11612] xml.dom.minidom fail to parse SVG file.

2011-03-19 Thread Ned Deily
Ned Deily added the comment: The .svg file you attached appears to have a faulty URI in it on line 4: xmlns:s="http://inkscape.sourceforge.net/DTD/s odipodi-0.dtd" The error goes away if that space character is removed. It might be nice for expatbuilder to provide a better diagnostic in t

<    1   2