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 santhoshch
Recipients belopolsky, santhoshch, simeon.visser
Date 2014-12-04.11:49:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1417693796.17.0.486801065189.issue22994@psf.upfronthosting.co.za>
In-reply-to
Content
zon=pytz.timezone('America/New_York')
dt=datetime.datetime(2014,02,01, tzinfo=zon)
print dt,zon

=> 2015-02-01 00:00:00-04:56 America/New_York

zon=pytz.timezone('Asia/Kolkata')
dt=datetime.datetime(2014,02,01, tzinfo=zon)
print dt,zon

=>2015-02-01 00:00:00+05:53 Asia/Kolkata

all most for all timezones it is giving erroronous outputs
we are dealing many timezones
History
Date User Action Args
2014-12-04 11:49:56santhoshchsetrecipients: + santhoshch, belopolsky, simeon.visser
2014-12-04 11:49:56santhoshchsetmessageid: <1417693796.17.0.486801065189.issue22994@psf.upfronthosting.co.za>
2014-12-04 11:49:56santhoshchlinkissue22994 messages
2014-12-04 11:49:55santhoshchcreate