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: Module Name Changed
Type: compile error Stage:
Components: Library (Lib) Versions: Python 2.7
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: ned.deily, octopusgrabbus, vstinner
Priority: normal Keywords:

Created on 2010-09-09 21:25 by octopusgrabbus, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (5)
msg115976 - (view) Author: Charles M Norton (octopusgrabbus) Date: 2010-09-09 21:25
In Python 2.6, I could import 
from mx.DateTime.ISO import ParseDateTimeUTC
With 2.7 I cannot.

Here is the error:

  File "util_lib.py", line 46, in <module>
    from mx.DateTime.ISO import ParseDateTimeUTC
ImportError: No module named mx.DateTime.ISO


What changes do I need to make, to import on pre-2.7 and 2.7?
msg115977 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2010-09-09 21:34
Do you think that it is a Python bug? You should first try to report a bug on eGenenix bug tracker: http://www.egenix.com/services/support/
msg115978 - (view) Author: Charles M Norton (octopusgrabbus) Date: 2010-09-09 21:44
The download page said to report problems here. I don't know whether this is a bug or not. The problem exists in 2.66, but not in 2.6.5. I'm looking for a workaround. If not, here, where should I post my request?
msg115980 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2010-09-09 23:04
Suggest you post your issue on the egenix-users mailing list (described here http://www.egenix.com/support/mailing-lists/) first and return here if there is agreement there that there might be a problem with a current version of Python itself.
msg116022 - (view) Author: Charles M Norton (octopusgrabbus) Date: 2010-09-10 14:23
Solved. I needed to download a separate packed. Thanks.
History
Date User Action Args
2022-04-11 14:57:06adminsetgithub: 54022
2010-09-10 14:23:45octopusgrabbussetmessages: + msg116022
2010-09-09 23:04:27ned.deilysetstatus: open -> closed

nosy: + ned.deily
messages: + msg115980

resolution: not a bug
2010-09-09 21:44:04octopusgrabbussetstatus: pending -> open

messages: + msg115978
2010-09-09 21:38:48brett.cannonsetstatus: open -> pending
2010-09-09 21:34:02vstinnersetnosy: + vstinner
messages: + msg115977
2010-09-09 21:25:43octopusgrabbuscreate