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.

Author kxroberto
Recipients ajaksu2, kxroberto
Date 2009-03-21.09:55:32
SpamBayes Score 8.922698e-10
Marked as misclassified No
Message-id <1237629336.62.0.686149244031.issue1475397@psf.upfronthosting.co.za>
In-reply-to
Content
(I'm somewhat away from all that currently - and not aware if newest
Python versions already solved but:)

* a "time.asctime_tz([tim])" or so should deliver a full OS-indep.
_world_ time string incl. numeric timezone info like 
"Sat Mar 21 10:33:36 2009 +0000"
It should accept a 10-tuple (like urlopen_file.info().getdate_tz('date'),
or a time.time() float time, 
or interpret a 9-tuple as GMTIME/UTC.

* strftime("%z") should be supported on all OS - _constant numeric_
format "+0000" 

* strftime("%C",[tim]) should be like asctime_tz.
  it should accept as 2nd parameter a 10-tuple alternatively, 
  or a time.time() universal float time, 
  or interpret the 9-tuple as LOCALTIME as it were.

test cases to add: 
* simple render a variation of constant tuples/float_times to constant
result strings.
History
Date User Action Args
2009-03-21 09:55:37kxrobertosetrecipients: + kxroberto, ajaksu2
2009-03-21 09:55:36kxrobertosetmessageid: <1237629336.62.0.686149244031.issue1475397@psf.upfronthosting.co.za>
2009-03-21 09:55:34kxrobertolinkissue1475397 messages
2009-03-21 09:55:32kxrobertocreate