[issue26262] Cannot compile with /fp:strict with MSVC

2016-06-13 Thread Nathan Harold
Nathan Harold added the comment: Here's a patch with those three replacements and related comments. -- keywords: +patch nosy: +nharold Added file: http://bugs.python.org/file43379/constants.patch ___ Python tracker <rep...@bugs.python.org>

[issue22558] Missing doc links to source code for Python-coded modules.

2016-06-06 Thread Nathan Harold
Nathan Harold added the comment: I went over the sections I above called "Other/Smaller details" as addressed in mywork3.patch. I think they look fine. The patch applies seamlessly to both 3.5 and 3.6. For reference, since I noted them when I reviewed mywork2.patch last

[issue22558] Missing doc links to source code for Python-coded modules.

2016-06-03 Thread Nathan Harold
Nathan Harold added the comment: I went through all the diffs in Rietveld, checking it against msg228576 as I went. There were (naturally) more source links added than there are in that list from 2014, and there were also many more files with slight header reorganizations for consistency

[issue22558] Missing doc links to source code for Python-coded modules.

2016-06-03 Thread Nathan Harold
Nathan Harold added the comment: I'll give this a go, per Terry's instructions in msg266846. I've noticed up front that, due to other changes near the headers of a couple of files (specifically fcntl.rst and termios.rst), the patch doesn't apply cleanly anymore. Is it permissible for me

[issue22558] Missing doc links to source code for Python-coded modules.

2016-06-02 Thread Nathan Harold
Changes by Nathan Harold <penw81...@yahoo.com>: -- nosy: +nharold ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue22558> ___ __

[issue27178] Unconverted RST marking in interpreter tutorial

2016-06-01 Thread Nathan Harold
New submission from Nathan Harold: There's a bit of uninterpreted RST markup: 3.6.. _tut-using: at the top of the second section of the tutorial (https://docs.python.org/3.6/tutorial/interpreter.html) in the documentation for 3.6 only. (I can see this in the offline copy I received

[issue26589] Add HTTP Response code 451

2016-06-01 Thread Nathan Harold
Nathan Harold added the comment: Added it to the table at https://docs.python.org/3.6/library/http.html#http-status-codes and put a versionadded notice at the bottom. -- nosy: +nharold Added file: http://bugs.python.org/file43086/doctable.diff

[issue26176] EmailMessage example doesn't work

2016-05-31 Thread Nathan Harold
Nathan Harold added the comment: emailexample.patch fixes the specific issue mentioned in #26426: the Address constructor is now used as documented. It changes the final output of the two combined examples (as presented in the documentation) accordingly. In general it seems as though

[issue27043] Describe what ‘inspect.cleandoc’ does to synopsis line.

2016-05-27 Thread Nathan Harold
Nathan Harold added the comment: Split version (cleandoc2.patch): Clean up indentation from docstrings that are indented to line up with blocks of code. All leading whitespace is removed from the first line. Any leading whitespace that can be uniformly removed from the second

[issue26553] Write HTTP in uppercase

2016-05-26 Thread Nathan Harold
Changes by Nathan Harold <penw81...@yahoo.com>: Added file: http://bugs.python.org/file43022/3_fix_2.7.patch ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue26553] Write HTTP in uppercase

2016-05-26 Thread Nathan Harold
Changes by Nathan Harold <penw81...@yahoo.com>: Added file: http://bugs.python.org/file43021/3_fix_3.5.patch ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue26553] Write HTTP in uppercase

2016-05-26 Thread Nathan Harold
Nathan Harold added the comment: The 2_fix* patches were unfortunately slightly broken because an unrelated revision to xmlrpc.client.rst changed one of the lines the patch files were using as an anchor (by adding a period to the end). I've uploaded the 3_fix* series, which addresses

[issue27043] Describe what ‘inspect.cleandoc’ does to synopsis line.

2016-05-26 Thread Nathan Harold
Nathan Harold added the comment: Here's my shot at a revision (corresponding patch attached): Clean up indentation from docstrings that are indented to line up with blocks of code. All leading whitespace is removed from the first line. Any leading whitespace that can be uniformly