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, r.david.murray, santhoshch, simeon.visser
Date 2014-12-05.10:39:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1417775978.54.0.240750144929.issue22994@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks simeon.visser,
I understood your point. Didn't got your point earlier.

Hey belopolsky,
Here is the solution
val=datetime.datetime.strptime("2015-02-01",'%Y-%m-%d').date()
zon=pytz.timezone('US/Pacific')

Bad Code:
dt=datetime.datetime(val.year,val.month,val.day, tzinfo=zon)
Good Code:
dt=zon.localize(datetime.datetime(val.year,val.month,val.day))

In Linux, good code works perfectly

Both code are working perfectly in Mac
History
Date User Action Args
2014-12-05 10:39:38santhoshchsetrecipients: + santhoshch, belopolsky, r.david.murray, simeon.visser
2014-12-05 10:39:38santhoshchsetmessageid: <1417775978.54.0.240750144929.issue22994@psf.upfronthosting.co.za>
2014-12-05 10:39:38santhoshchlinkissue22994 messages
2014-12-05 10:39:38santhoshchcreate