[issue7291] urllib2 cannot handle https with proxy requiring auth

2010-03-11 Thread Senthil Kumaran
Senthil Kumaran added the comment: In this ticket, setting the authentication using a ProxyBasicAuthHandler is not yet addressed yet. (this was informed in the last note). Reopening this one to track it. -- resolution: fixed -> accepted status: closed -> open

[issue2698] Extension module build fails for MinGW: missing vcvarsall.bat

2010-03-11 Thread Eric Devolder
Eric Devolder added the comment: Yes, I believe it is. that should be re-opened. 2010/3/11 Craig McQueen > > Craig McQueen added the comment: > > This still seems to be a bug in Python 3.1.1, does it not? Can this be > re-opened? > > -- > > ___ >

[issue8116] Addition problem

2010-03-11 Thread Aleš Drinovec
New submission from Aleš Drinovec : *** Python 3.1.2rc1 (r312rc1:78742, Mar 7 2010, 07:49:40) [MSC v.1500 32 bit (Intel)] on win32. *** >>> 5.1+3.8 8.899 >>> 4.1+4.8 8.899 >>> Tested in IDLE and in PyScripter -- components: Interpreter Core messages: 100842 no

[issue7774] sys.executable: wrong location if zeroth command argument is modified.

2010-03-11 Thread STINNER Victor
STINNER Victor added the comment: getpath.patch: another patch written by flox. If argv[0] is set to a non existent program name, sys.executable is set to an empty string instead of a directory name. Example of the bug with Python 2.5: $ sh -c "exec -a xxx python -c 'import sys, os; print re

[issue7424] segmentation fault in listextend during install

2010-03-11 Thread Jon Buller
Jon Buller added the comment: "./configure --without-threads" didn't seem to have any effect... :( -- ___ Python tracker ___ ___ Pyth

[issue8117] TimedRotatingFileHandler doesn't rotate log file at startup.

2010-03-11 Thread Yuriy Taraday
New submission from Yuriy Taraday : Screnario: - start logging, log something; - stop logging (stop application, for example); - start logging again after rotate interval passes. log4j's RotatingFileAppender's behavior: After restart, logfile is rotated if nessesary. TimedRotatingFileHandler

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2010-03-11 Thread Fredrik Lundh
Fredrik Lundh added the comment: The "no header" thing is very much done on purpose, and it's documented in the upstream ElementTree documentation. I suggest dropping this "Python 3 exists in its own universe" nonsense; it's not very professional, and it's hurting Python, its users, and all t

[issue8116] Addition problem

2010-03-11 Thread Mark Dickinson
Mark Dickinson added the comment: This isn't a bug in Python: it's an unavoidable symptom of using binary floating-point arithmetic internally to store values. I recommend looking at the last chapter of the Python tutorial, which gives a very nice explanation of floating-point issues. http:

[issue8113] PyUnicode_AsUnicode doesn't check for NULL pointer

2010-03-11 Thread Lorenz Quack
Lorenz Quack added the comment: Thanks for the fast replies. I used to groups some Python calls together and check in the end if any of them failed in one exception handling block. I will now check every call individually. I will open a new bug for documentation fixes where there is now info

[issue7774] sys.executable: wrong location if zeroth command argument is modified.

2010-03-11 Thread STINNER Victor
STINNER Victor added the comment: r78835 (trunk) fixes getpath and includes also a fix for sysconfig which should fix test_executable_with_cwd() of test_subprocess. My fix on sysconfig is different than flox's patch: since I fixed getpath, sys.executable cannot be a directory name. At revisio

[issue7774] sys.executable: wrong location if zeroth command argument is modified.

2010-03-11 Thread STINNER Victor
STINNER Victor added the comment: There is a 4th case about sys.executable: If argv[0] is an empty string, Python search the absolute path of "python" (hardcoded program name). The result is /usr/bin/python in my Linux box, whereas the real program name should be /opt/pythontrunk/bin/python.

[issue7774] sys.executable: wrong location if zeroth command argument is modified.

2010-03-11 Thread STINNER Victor
Changes by STINNER Victor : -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/op

[issue7774] sys.executable: wrong location if zeroth command argument is modified.

2010-03-11 Thread STINNER Victor
STINNER Victor added the comment: Oh well, it's really hard to test the tests in my working copy because it depends on a lot of factors: the current working directory, is Python installed or not, the OS, etc. The test introduced in r78835 was incorrect (only the test, the fix is correct): r78

[issue7114] HTMLParser doesn't handle

2010-03-11 Thread Fredrik Lundh
Fredrik Lundh added the comment: And to clarify, XHTML is an reformulation of HTML4 using XML syntax, so you should use an XML parser to parse it, not an HTML parser. The formats are related, but not identical. -- ___ Python tracker

[issue8099] IDLE(Python GUI) Doesn't open

2010-03-11 Thread Estroms
Estroms added the comment: When I write to Command Promt "C:\>set TCL_LIBRARY=" it says: "'C:\' is not recognized as an internal or external command, operable program or batch file." -- ___ Python tracker

[issue5100] ElementTree.iterparse and Element.tail confusion

2010-03-11 Thread Fredrik Lundh
Fredrik Lundh added the comment: Footnote: "iterparse" does things this way mostly to keep the implementation simple and fast; due to buffering, the tree builder are usually ahead of the event generation with up to 16k. See the note on this page: http://effbot.org/zone/element-iterparse.htm

[issue8099] IDLE(Python GUI) Doesn't open

2010-03-11 Thread Brian Curtin
Brian Curtin added the comment: That was an example of the cmd prompt. Just type "set TCL_LIBRARY=" without the quotes, along with the contents of the other three lines except for the "C:\>". -- ___ Python tracker

[issue8117] TimedRotatingFileHandler doesn't rotate log file at startup.

2010-03-11 Thread R. David Murray
Changes by R. David Murray : -- nosy: +vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue6472] Update ElementTree with upstream changes

2010-03-11 Thread Florent Xicluna
Florent Xicluna added the comment: Fixed on trunk with r78838. Some extra work is required to port it to 3.x. Thank you Fredrik and Antoine for reviewing this patch. -- resolution: -> fixed stage: patch review -> committed/rejected ___ Python track

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2010-03-11 Thread Antoine Pitrou
Antoine Pitrou added the comment: > The "no header" thing is very much done on purpose, and it's > documented in the upstream ElementTree documentation. I'm sorry, where is that? I can't find it either at http://effbot.org/zone/pythondoc-elementtree-ElementTree.htm#elementtree.ElementTree.tostr

[issue8107] test_distutils fails on Windows in 2.6.5rc2

2010-03-11 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Adding xxmodule.c to the test directory is more than I want to do for 2.6.5. The actual crash happens because if sysconfig.get_config_var('srcdir') returns None, os.path.join() will traceback. It doesn't know how to handle None arguments. So my suggestion

[issue1538691] Patch cElementTree to export CurrentLineNumber

2010-03-11 Thread Florent Xicluna
Florent Xicluna added the comment: ElementTree fixed in 2.7. See #6472. -- dependencies: -Update ElementTree with upstream changes resolution: postponed -> fixed stage: patch review -> committed/rejected status: open -> closed superseder: -> Update ElementTree with upstream changes _

[issue3475] _elementtree.c import can fail silently

2010-03-11 Thread Florent Xicluna
Florent Xicluna added the comment: Fixed with latest xml.etree. -- dependencies: -Update ElementTree with upstream changes resolution: -> fixed stage: -> committed/rejected status: open -> closed superseder: -> Update ElementTree with upstream changes versions: -Python 2.6, Python

[issue7300] Unicode arguments in str.format()

2010-03-11 Thread Eric Smith
Eric Smith added the comment: I'm not sure I'm wild about doing the work twice, once as string and once as unicode if need be. But I'll consider it, especially since this is only a 2.7 issue. There could be side effects of evaluating the replacement strings, but I'm not sure it's worth worry

[issue3151] elementtree serialization bug for weird namespace urls

2010-03-11 Thread Florent Xicluna
Florent Xicluna added the comment: Fixed in trunk. -- dependencies: -Update ElementTree with upstream changes resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed superseder: -> Update ElementTree with upstream changes ___

[issue6565] improper use of __setitem__ in ElementTree for Python 3.1

2010-03-11 Thread Florent Xicluna
Florent Xicluna added the comment: Fixed in 2.7 with #6472. It should be ported to 3.x later. -- dependencies: -Update ElementTree with upstream changes resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed superseder: -> Update ElementTree with upstrea

[issue6230] ElementTree.Element and cElementTree.Element have slightly different repr

2010-03-11 Thread Florent Xicluna
Florent Xicluna added the comment: Fixed in trunk with #6472. -- dependencies: -Update ElementTree with upstream changes resolution: -> fixed stage: -> committed/rejected status: open -> closed superseder: -> Update ElementTree with upstream changes

[issue6265] cElementTree & ElementTree use different exceptions for XML Errors

2010-03-11 Thread Florent Xicluna
Changes by Florent Xicluna : -- dependencies: -Update ElementTree with upstream changes resolution: -> fixed stage: -> committed/rejected status: open -> closed superseder: -> Update ElementTree with upstream changes ___ Python tracker

[issue6232] Improve test coverage of ElementTree and cElementTree

2010-03-11 Thread Florent Xicluna
Changes by Florent Xicluna : -- dependencies: -Update ElementTree with upstream changes priority: -> normal resolution: -> fixed stage: -> committed/rejected status: open -> closed superseder: -> Update ElementTree with upstream changes ___ Pytho

[issue8099] IDLE(Python GUI) Doesn't open

2010-03-11 Thread Estroms
Estroms added the comment: When I type "set TCL_LIBRARY" it says "TCL_LIBRARY=C:IBMTOOLS\Python22\tcl\tcl18.4". So I have older version of python on my computer in IBMtools, but I want to use the new Python. How can I uninstall older python, because it can't be found in Start menu and there i

[issue8099] IDLE(Python GUI) Doesn't open

2010-03-11 Thread Brian Curtin
Brian Curtin added the comment: Just delete the Python22 folder. Typing "set TCL_LIBRARY=" (note the equal sign) will unset the environment variable for that command prompt. Can you try running the steps from msg100786? -- ___ Python tracker

[issue8118] PYTHON_API_VERSION needs to be bumped?

2010-03-11 Thread Ronald Oussoren
New submission from Ronald Oussoren : If I understand the code correct Python 2.6 has the same value for PYTHON_API_VERSION, even though extensions are not compatible. In particular: when you compile an extension that uses PyInt_Check with python2.6 and load that extension with python 2.5 you

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2010-03-11 Thread Stefan Behnel
Stefan Behnel added the comment: Sorry, Antoine, but you can't possibly mean what you say here. The culprit in question is clearly one of the best hidden features of the new Py3 ET API. The only existing reference to it that I can find is the SVN commit comment when it was applied. How is tha

[issue8119] Minor comment error in configure.in ("malloc support" appears twice)

2010-03-11 Thread Dave Malcolm
New submission from Dave Malcolm : A minor nit: configure.in has this comment twice: "Check for Python-specific malloc support" c.f.: # Check for Python-specific malloc support AC_MSG_CHECKING(for --with-tsc) (snip) # Check for Python-specific malloc support AC_MSG_CHECKING(for --with-pymallo

[issue8099] IDLE(Python GUI) Doesn't open

2010-03-11 Thread Martin v . Löwis
Martin v. Löwis added the comment: I recommend against deleting that Python installation: it probably came from the PC vendor, and might serve a purpose. Just unset TCL_LIBRARY, through the Windows Environment GUI. Ask on comp.lang.python how to do this, or on some Windows help forum. --

[issue6266] cElementTree.iterparse & ElementTree.iterparse return differently encoded strings

2010-03-11 Thread Florent Xicluna
Florent Xicluna added the comment: Fixed with #6472. -- dependencies: -Update ElementTree with upstream changes resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed superseder: -> Update ElementTree with upstream changes __

[issue8107] test_distutils fails on Windows in 2.6.5rc2

2010-03-11 Thread Tarek Ziadé
Tarek Ziadé added the comment: @Ronald, @Barry: Yes that's what I did in trunk, so I can just merge that revision. (r78707, r78709) The only problem I had with it is that in case xxmodule.c changes, I have to change it there too, but it's no big deal. Barry, I'll merge back this as soon as I

[issue2698] Extension module build fails for MinGW: missing vcvarsall.bat

2010-03-11 Thread Tarek Ziadé
Tarek Ziadé added the comment: What traceback do you get exactly ? The same one than the first TB of this issue ? -- priority: -> high ___ Python tracker ___ __

[issue4376] Nested ctypes 'BigEndianStructure' fails

2010-03-11 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: theller> - Should 'part' be inserted as is, [possibly] leading theller> to a total structure of fields with mixed byte order? +1 for this option. -- nosy: +Alexander.Belopolsky ___ Python tracker

[issue8112] xmlrpc.server: ServerHTMLDoc.docroutine uses (since 3.0) deprecated function "inspect.getargspec()"

2010-03-11 Thread tormen
tormen added the comment: Okey ... Consider you have a function: def fn( str:str ): pass That you register to your DocXMLRPCServer: register_function of SimpleXMLRPCDispatcher stores the function object in the dictionary self.funcs under the name of the function (as key). Then you start you

[issue8112] xmlrpc.server: ServerHTMLDoc.docroutine uses (since 3.0) deprecated function "inspect.getargspec()"

2010-03-11 Thread tormen
tormen added the comment: If you want an example: pydoc3.1 xmlrpc.server 2nd usage pattern change "SimpleXMLRPCServer" to "DocXMLRPCServer" change function signature from "pow(self, x, y)" to "pow(self, x:int, y:int)" and your good to go and have your doc xmlrpc server crashed the moment you

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2010-03-11 Thread R. David Murray
R. David Murray added the comment: I suspect that what Antoine is referring to is the fact that Python 3.1 has this behavior. Whether or not it is explicitly documented is a secondary issue. We're having a similar issue in the unittest package, where there's a new function, assertSameElement

[issue8112] xmlrpc.server: ServerHTMLDoc.docroutine uses (since 3.0) deprecated function "inspect.getargspec()"

2010-03-11 Thread tormen
tormen added the comment: If you want I can send you a patch. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8112] xmlrpc.server: ServerHTMLDoc.docroutine uses (since 3.0) deprecated function "inspect.getargspec()"

2010-03-11 Thread R. David Murray
R. David Murray added the comment: A patch with tests would be an excellent thing to have. -- nosy: +r.david.murray priority: -> normal type: crash -> behavior ___ Python tracker __

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2010-03-11 Thread Fredrik Lundh
Fredrik Lundh added the comment: > if I don't specify an encoding, I get unicode. If I do specify an encoding, > I get encoded bytes. You're confusing the XML document encoding with character set encoding. A serialized (unparsed) XML document is a byte stream, not a string of Unicode charac

[issue6472] Update ElementTree with upstream changes

2010-03-11 Thread Fredrik Lundh
Fredrik Lundh added the comment: W00t! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue8032] Add gdb7 hooks to make it easier to debug Python

2010-03-11 Thread Martin v . Löwis
Martin v. Löwis added the comment: I find the printing of frame objects confusing: 3033f = PyFrame_New(tstate, co, globals, locals); (gdb) 3034if (f == NULL) (gdb) p f $3 = File /home/martin/work/27/Lib/encodings/utf_8.py, line 15, in decode () I didn't recognize that t

[issue5712] tkinter - askopenfilenames returns string instead of tuple in windows 2.6.1 release

2010-03-11 Thread Dan Halbert
Changes by Dan Halbert : -- nosy: +dhalbert ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2010-03-11 Thread Antoine Pitrou
Antoine Pitrou added the comment: > > Ha. There has been a very long temporal window > > You should have had plenty of time to fix it, then, right? Under the condition that someone would have actually reported it, yes. We don't magically fix bugs if nobody (including us) detects and reports th

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2010-03-11 Thread Stefan Behnel
Stefan Behnel added the comment: Then I would call that a clear sign that no-one actually stumbled over this feature in Py3 before I did, well hidden as it was. Still time to fix it. -- ___ Python tracker

[issue8117] TimedRotatingFileHandler doesn't rotate log file at startup.

2010-03-11 Thread kwas
Changes by kwas : -- nosy: +kwas ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/

[issue8119] Minor comment error in configure.in ("malloc support" appears twice)

2010-03-11 Thread Brett Cannon
Changes by Brett Cannon : -- priority: -> low ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue8032] Add gdb7 hooks to make it easier to debug Python

2010-03-11 Thread Dave Malcolm
Dave Malcolm added the comment: Thanks for reviewing the patch. I've changed the pretty-printing of NULL pointers to "0x0" as suggested, and I've updated frame printing. Frames are now printed like this (gdb) p f $1 = Frame 0x827e544, for file /home/david/coding/python-gdb/crasher.py, line 1

[issue8032] Add gdb7 hooks to make it easier to debug Python

2010-03-11 Thread Dave Malcolm
Dave Malcolm added the comment: Attaching diff from v2 to v3 -- Added file: http://bugs.python.org/file16526/diff-of-gdb7-hooks-v3-relative-to-v2.diff ___ Python tracker ___ ___

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2010-03-11 Thread R. David Murray
R. David Murray added the comment: You may well be correct. But just because no one reported a bug does not mean that no one is using the API. The person using it may find it perfectly logical (and may be writing py3 only code, not porting py2 code). However, regardless of whether we decide

[issue8108] test_ftplib fails with OpenSSL 0.9.8m

2010-03-11 Thread STINNER Victor
STINNER Victor added the comment: The problem comes from SSL_Shutdown() on a non blocking connection. See: http://www.mail-archive.com/openssl-...@openssl.org/msg24097.html -- ___ Python tracker ___

[issue8108] test_ftplib fails with OpenSSL 0.9.8m

2010-03-11 Thread STINNER Victor
STINNER Victor added the comment: The patch changing SSL_Shutdown() behaviour on non blocking socket was written in 2006 by Darryl Miles and it will commited into 0.9.8m. The original patch: http://marc.info/?l=openssl-dev&m=115153998821797&w=2 In our testcase, SSL_Shutdown() fails with SSL_ER

[issue2001] Pydoc interactive browsing enhancement

2010-03-11 Thread Sridhar Ratnakumar
Changes by Sridhar Ratnakumar : -- nosy: +srid ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2010-03-11 Thread Fredrik Lundh
Fredrik Lundh added the comment: >>> import array >>> array.array("i", [1, 2, 3]).tostring() b'\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00' -- ___ Python tracker ___ ___

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2010-03-11 Thread Antoine Pitrou
Antoine Pitrou added the comment: Le Thu, 11 Mar 2010 22:03:37 +, Fredrik Lundh a écrit : > > >>> import array > >>> array.array("i", [1, 2, 3]).tostring() > b'\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00' The fact that array is old, rusty and slightly broken doesn't meen we should pr

[issue8108] test_ftplib fails with OpenSSL 0.9.8m

2010-03-11 Thread STINNER Victor
STINNER Victor added the comment: More informations: http://www.openssl.org/docs/ssl/SSL_shutdown.html http://rt.openssl.org/Ticket/Display.html?user=guest&pass=guest&id=1891 Extract of the manual page: If the underlying BIO is non-blocking, SSL_shutdown() will also return when the underly

[issue8108] test_ftplib fails with OpenSSL 0.9.8m

2010-03-11 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +janssen ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue7424] segmentation fault in listextend during install

2010-03-11 Thread Antoine Pitrou
Antoine Pitrou added the comment: Can you try to recompile Python in debug mode? ("make distclean && ./configure --with-pydebug"). -- nosy: +pitrou ___ Python tracker ___ ___

[issue2698] Extension module build fails for MinGW: missing vcvarsall.bat

2010-03-11 Thread Craig McQueen
Craig McQueen added the comment: Not so much of a traceback. But essentially the same final error: running build running build_py running build_ext building 'cobs._cobsext' extension error: Unable to find vcvarsall.bat -- ___ Python tracker

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2010-03-11 Thread Fredrik Lundh
Fredrik Lundh added the comment: So now it's the domain experts against some hypothetical people that might exist? Tricky. -- ___ Python tracker ___ ___

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2010-03-11 Thread R. David Murray
R. David Murray added the comment: Well, Benjamin pointed out to me that it would be a bad thing if array.tostring produced a string. True, the method is named wrong, but it is less broken than returning a string. I suspect that that is the same argument Fredrik is making: that returning th

[issue7424] segmentation fault in listextend during install

2010-03-11 Thread Jon Buller
Jon Buller added the comment: This is bad. The problem went away and the test completed without the segfault. If you think the output would help track anything down, let me know and I'll save and upload it somewhere. (Or I could hand out an SSH account via IPv6 to the machine... With some

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2010-03-11 Thread Guido van Rossum
Guido van Rossum added the comment: Hey, can we all try to get along? For anyone who didn't follow the link to r56841, that was mine (though Christian Heimes provided the basis for much of the patch apart from elementtree), and I wrote at the time: """I had to fix a few tests and modules bey

[issue2531] float compared to decimal is silently incorrect.

2010-03-11 Thread Vasily Ivanov
Changes by Vasily Ivanov : -- nosy: +bas ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/

[issue8108] test_ftplib fails with OpenSSL 0.9.8m

2010-03-11 Thread STINNER Victor
STINNER Victor added the comment: There are different kind of bugs, but all of them are related to SSL_Shutdown(). It depends on the socket timeout: - blocking socket: nothing special (no change from previous OpenSSL version) - timeout or non blocking socket: if SSL_shutdown() returns -1 and

[issue2001] Pydoc interactive browsing enhancement

2010-03-11 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2010-03-11 Thread Antoine Pitrou
Antoine Pitrou added the comment: Not wanting to waste my time anymore on this. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2010-03-11 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: -pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue8117] TimedRotatingFileHandler doesn't rotate log file at startup.

2010-03-11 Thread Vinay Sajip
Vinay Sajip added the comment: Fix checked into trunk (r78853), thanks. -- resolution: -> fixed status: open -> closed versions: +Python 2.7, Python 3.2 ___ Python tracker ___ _

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2010-03-11 Thread Stefan Behnel
Stefan Behnel added the comment: Hi Guido, your comment was long overdue in this discussion. Guido van Rossum, 12.03.2010 01:35: > My thinking was that since an XML document looks like text, it should > probably be considered text, at least by default. (There may have > been some unittests tha

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2010-03-11 Thread Stefan Behnel
Stefan Behnel added the comment: One more thing: given that many web-frameworks are still not available for Py3 at this time, and that there are still tons of third-party libraries missing on that platform, I would be surprised if there was any ElementTree based XML/HTML processing code writt