[issue1985] Bug/Patch: Problem with xml/__init__.py when using freeze.py

2010-08-04 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: rejected -> wont fix status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mail

[issue1985] Bug/Patch: Problem with xml/__init__.py when using freeze.py

2010-07-31 Thread Dan Buch
Dan Buch added the comment: can this be closed? I'd do it myself if I had the triage bit :) -- nosy: +meatballhat ___ Python tracker ___

[issue1985] Bug/Patch: Problem with xml/__init__.py when using freeze.py

2008-08-06 Thread A.M. Kuchling
Changes by A.M. Kuchling <[EMAIL PROTECTED]>: -- keywords: +easy ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list mailing

[issue1985] Bug/Patch: Problem with xml/__init__.py when using freeze.py

2008-08-05 Thread Guido van Rossum
Guido van Rossum <[EMAIL PROTECTED]> added the comment: Nobody seems to care enough. -- resolution: -> rejected ___ Python tracker <[EMAIL PROTECTED]> ___

[issue1985] Bug/Patch: Problem with xml/__init__.py when using freeze.py

2008-02-05 Thread Toni Brkic
Toni Brkic added the comment: I still think the __init__ file should be changed and use the extend_path function instead of extend. Se below for answer I got on the python list. The extend_path function (found in the pkgutil standard module) can handle this. http://docs.python.org/lib/modu

[issue1985] Bug/Patch: Problem with xml/__init__.py when using freeze.py

2008-02-01 Thread Guido van Rossum
Guido van Rossum added the comment: Why don't you ask that question on python-dev? Maybe someone volunteers! __ Tracker <[EMAIL PROTECTED]> __ ___ Python

[issue1985] Bug/Patch: Problem with xml/__init__.py when using freeze.py

2008-02-01 Thread Christian Heimes
Christian Heimes added the comment: Should freeze be removed if it's no longer maintained? Freeze is partly used by py2exe and py2app. Maybe the maintainers of the apps can step in and maintain the parts of the freeze api they require. The rest could then be deprecated for Python 2.6 and removed

[issue1985] Bug/Patch: Problem with xml/__init__.py when using freeze.py

2008-02-01 Thread Guido van Rossum
Guido van Rossum added the comment: I think nobody really cares about freeze any more -- it isn't maintained. -- nosy: +gvanrossum priority: -> low __ Tracker <[EMAIL PROTECTED]> __ _

[issue1985] Bug/Patch: Problem with xml/__init__.py when using freeze.py

2008-01-31 Thread Toni Brkic
New submission from Toni Brkic: Hi, I tried to do freeze.py for my script that uses ElementTree. But got the this error: File "/usr/lib/python2.5/xml/__init__.py", line 45, in _xmlplus.__path__.extend(__path__) AttributeError: 'str' object has no attribute 'extend' The reason seems th