[issue24808] PyTypeObject fields have incorrectly documented types

2015-08-25 Thread Martin Panter
Martin Panter added the comment: Okay I think that worked smoothly (let me know if I missed something). Thanks for the patch Joseph. -- resolution: - fixed stage: commit review - resolved status: open - closed ___ Python tracker

[issue24808] PyTypeObject fields have incorrectly documented types

2015-08-25 Thread R. David Murray
R. David Murray added the comment: Congratulation on your first commit, Martin :) Dropping the python2 reference was the right call: the python3 docs are supposed to be a fresh start and there are very few places where they mention python2. -- nosy: +r.david.murray

[issue24808] PyTypeObject fields have incorrectly documented types

2015-08-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset 54a9c649281d by Martin Panter vadmium in branch '3.4': Issue #24808: Update the documentation of some PyTypeObject fields https://hg.python.org/cpython/rev/54a9c649281d New changeset e81d692a00b1 by Martin Panter vadmium in branch '3.5': Issue

[issue24808] PyTypeObject fields have incorrectly documented types

2015-08-24 Thread Martin Panter
Martin Panter added the comment: Most of this looks good. For the record, tp_flags was changed to unsigned in 3.4 (Issue 16086). The const and Py_ssize_t changes were done before 3.0. The only bits I would hesitate about are adding back the two comments saying “Assigned meaning in release 2”.

[issue24808] PyTypeObject fields have incorrectly documented types

2015-08-06 Thread Joseph Weston
New submission from Joseph Weston: Several fields in the Python 3.x documentation for the PyTypeObject API have incorrectly documented types. This was probably due to a wholesale shift of documentation from Python 2.x. -- assignee: docs@python components: Documentation files: