On Sat, 27 Nov 2010, Steven D'Aprano wrote:

[st...@sylar ~]$ python2.5
Python 2.5 (r25:51908, Nov  6 2007, 16:54:01)
[GCC 4.1.2 20070925 (Red Hat 4.1.2-27)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
import time
time.strftime("%T")
'19:03:16'

Interesting. On my Windows systems (Windows 7 and Vista, both Activestate Python 2.6.4.8) I get:

import time
time.strftime("%T")
''


On Linux (Ubuntu 10.04 and 10.10, Python 2.6.5) I get:

import time
time.strftime("%T")
'10:54:54'


It may be an Activestate thing, hewing closely to the docs.
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to