[issue29596] Unfinished sentense in howto/clinic.rst

2017-02-24 Thread Steven Rumbalski
Steven Rumbalski added the comment: Truncated sentence was always truncated. Introduced on commit bebf73511a1250fc768bcb7192b5b3c3fd04d8f2 from Issue #20287: Argument Clinic's output is now configurable, allowing delaying its output or even redirecting it to a separate file. https://github.com

[issue7582] [patch] diff.py to use iso timestamp

2010-01-05 Thread Steven Rumbalski
Steven Rumbalski steven.rumbal...@fiserv.com added the comment: I think this is incorrect during daylight savings time: tzoffset = -time.timezone // 60 This should do it: isdst = time.localtime().tm_isdst tzoffset = -(time.altzone if isdst else time.timezone)//60 -- nosy: +srumbalski