Mailing List Archive

A basic question
Hello,

I have a python script in my zope instance:

dt=DateTime(2012,1)
print dt
print dt.strftime('%Y')
print dt.year()

return printed
2012/01/01 00:00:00 GMT+2
2011
2012


Why do I get two different values for the year (2011, 2012)?

Thank you,


Giampiero
_______________________________________________
Zope maillist - Zope@zope.org
https://mail.zope.org/mailman/listinfo/zope
** No cross posts or HTML encoding! **
(Related lists -
https://mail.zope.org/mailman/listinfo/zope-announce
https://mail.zope.org/mailman/listinfo/zope-dev )
Re: A basic question [ In reply to ]
On Sat, Jul 14, Giampiero Benvenuti wrote:
> I have a python script in my zope instance:
>
> dt=DateTime(2012,1)
> print dt
> print dt.strftime('%Y')
> print dt.year()
>
> return printed
> 2012/01/01 00:00:00 GMT+2
> 2011
> 2012
>
> Why do I get two different values for the year (2011, 2012)?

It would seem strftime defaults to a timezone "to the left" of GMT+2.

\\kristian
--
... et nemo ex vobis interrogat me: "Quo vadis?"
_______________________________________________
Zope maillist - Zope@zope.org
https://mail.zope.org/mailman/listinfo/zope
** No cross posts or HTML encoding! **
(Related lists -
https://mail.zope.org/mailman/listinfo/zope-announce
https://mail.zope.org/mailman/listinfo/zope-dev )
Re: A basic question [ In reply to ]
+-------[ Kristian Thy ]----------------------
| On Sat, Jul 14, Giampiero Benvenuti wrote:
| > I have a python script in my zope instance:
| >
| > dt=DateTime(2012,1)
| > print dt
| > print dt.strftime('%Y')
| > print dt.year()
| >
| > return printed
| > 2012/01/01 00:00:00 GMT+2
| > 2011
| > 2012
| >
| > Why do I get two different values for the year (2011, 2012)?
|
| It would seem strftime defaults to a timezone "to the left" of GMT+2.

strftime converts to UTC

--
Andrew Milton
akm@theinternet.com.au
_______________________________________________
Zope maillist - Zope@zope.org
https://mail.zope.org/mailman/listinfo/zope
** No cross posts or HTML encoding! **
(Related lists -
https://mail.zope.org/mailman/listinfo/zope-announce
https://mail.zope.org/mailman/listinfo/zope-dev )