[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/python/cpython/commit/bebf73511a1250fc768bcb7192b5b3c3fd04d8f2

Another issue from the same commit that still exists today:

buffer
Save up all most of the output from Clinic, to be written into your file 
near the end.


Perhaps what was meant was 'almost all'?

------
nosy: +Steven Rumbalski

___
Python tracker 
<http://bugs.python.org/issue29596>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

2010-01-05 Thread Steven Rumbalski

Steven Rumbalski  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

___
Python tracker 
<http://bugs.python.org/issue7582>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com