[issue28496] Mark up constants 0, 1, -1 in C API docs

2016-10-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset e90fe2209276 by Serhiy Storchaka in branch '2.7': Issue #28496: Mark up constants 0, 1 and -1 that denote return values or https://hg.python.org/cpython/rev/e90fe2209276 New changeset 04065efd7747 by Serhiy Storchaka in branch '3.5': Issue #28496: M

[issue28496] Mark up constants 0, 1, -1 in C API docs

2016-10-27 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker ___

[issue28496] Mark up constants 0, 1, -1 in C API docs

2016-10-21 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Serhiy, I think you can commit it. -- nosy: +matrixise stage: patch review -> commit review ___ Python tracker ___ ___

[issue28496] Mark up constants 0, 1, -1 in C API docs

2016-10-21 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch marks up constants 0, 1 and -1 (mostly return values) in C API documentation as literal test. Most occurrences already are marked up. It also changes :const:`ULONG_MAX + 1` to ``ULONG_MAX + 1``, since this is not a constant name. --