Re: import datetime

2006-02-01 Thread Lee Harr
is working fine >> there. Where is the datetime module stored? Does any body know? > > on windows, it's linked to the interpreter. > >>>> import datetime >>>> datetime > > >>>> import sys >>>> "datetime" in sys.bui

Re: import datetime

2006-02-01 Thread Fredrik Lundh
and it is working fine > there. Where is the datetime module stored? Does any body know? on windows, it's linked to the interpreter. >>> import datetime >>> datetime >>> import sys >>> "datetime" in sys.builtin_module_names True on other platfo

Re: import datetime

2006-02-01 Thread shaboo
It does say Python 2.4.2 Python 2.4.2 (#2, Jan 30 2006, 20:02:09) [C] on hp-ux11 Type "help", "copyright", "credits" or "license" for more information. >>> I did look at the sys.path but the issue is that I dont see a module name datetime anywhere.

Re: import datetime

2006-01-31 Thread Lee Harr
> I have just installed Python2.4.2 on our HP-UX system. But when I try > to import datetime modlue I get the following error > > ~~~ >>>> from datetime import datetime > Traceback (most recent call last): > File "", line 1, in ?

import datetime

2006-01-31 Thread shaboo
Hi Guys, I have just installed Python2.4.2 on our HP-UX system. But when I try to import datetime modlue I get the following error ~~~ >>> from datetime import datetime Traceback (most recent call last): File "", line 1, in ? ImportError: No mo