Re: >time.strftime %T missing in 2.3

2005-08-21 Thread Jorgen Grahn
On Fri, 05 Aug 2005 01:02:48 -0500, Andy Leszczynski wrote: > Robert Kern wrote: >> Andy Leszczynski wrote: >> >>> Python 2.2/Unix >>> >>> >>time.strftime("%T") >>> '22:12:15' >>> >>time.strftime("%X") >>> '22:12:17' >>> >>> Python 2.3/Windows >>> >>> >>time.strftime("%X") >>> '22:12:47' >>>

Re: >time.strftime %T missing in 2.3

2005-08-05 Thread Michael Hoffman
Andy Leszczynski wrote: > I accept that, but still pain. Took me a while to filter out the problem > in the code running on the Unix and not on M$. This is one of the reasons I usually use Cygwin Python when I can. Stuff is much less likely to mysteriously break when moving from UNIX to Cygw

Re: >time.strftime %T missing in 2.3

2005-08-04 Thread Andy Leszczynski
Robert Kern wrote: > Andy Leszczynski wrote: > >> Python 2.2/Unix >> >> >>time.strftime("%T") >> '22:12:15' >> >>time.strftime("%X") >> '22:12:17' >> >> Python 2.3/Windows >> >> >>time.strftime("%X") >> '22:12:47' >> >> time.strftime("%T") >> '' > > > From http://docs.python.org/lib/node252

Re: >time.strftime %T missing in 2.3

2005-08-04 Thread Robert Kern
Andy Leszczynski wrote: > Python 2.2/Unix > > >>time.strftime("%T") > '22:12:15' > >>time.strftime("%X") > '22:12:17' > > Python 2.3/Windows > > >>time.strftime("%X") > '22:12:47' > >> time.strftime("%T") > '' From http://docs.python.org/lib/node252.html """The full set of format codes su

>time.strftime %T missing in 2.3

2005-08-04 Thread Andy Leszczynski
Python 2.2/Unix >>time.strftime("%T") '22:12:15' >>time.strftime("%X") '22:12:17' Python 2.3/Windows >>time.strftime("%X") '22:12:47' >> time.strftime("%T") '' Any clues? A. -- http://mail.python.org/mailman/listinfo/python-list