This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Freeze bug with xml.dom
Type: compile error Stage:
Components: Demos and Tools Versions: Python 2.4
process
Status: closed Resolution: wont fix
Dependencies: Superseder:
Assigned To: Nosy List: Gnep, loewis
Priority: normal Keywords:

Created on 2009-12-16 14:26 by Gnep, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg96488 - (view) Author: Gnep (Gnep) Date: 2009-12-16 14:26
I'm using python 2.4.3 on centos5.3.

A simple py script contains only one line of:

[karen@gnep:~/test]$ cat dom.py
from xml.dom import minidom

Then freeze this script and run the binary:

[karen@gnep:~/test]$ ./dom
Traceback (most recent call last):
  File "dom.py", line 1, in ?
    from xml.dom import minidom
ImportError: No module named dom
msg96498 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2009-12-16 21:30
Python 2.4 is no longer support. Unless you can reproduce the bug for
2.6, it should be closed as "won't fix".
History
Date User Action Args
2022-04-11 14:56:55adminsetgithub: 51773
2009-12-16 21:30:20loewissetstatus: open -> closed

nosy: + loewis
messages: + msg96498

resolution: wont fix
2009-12-16 14:26:39Gnepcreate