[issue19863] Missing function attributes in 2.7 docs.

2014-02-01 Thread Mark Dickinson
Changes by Mark Dickinson : -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker ___

[issue19863] Missing function attributes in 2.7 docs.

2014-02-01 Thread Mark Dickinson
Mark Dickinson added the comment: New changeset fed468670866 by Mark Dickinson in branch '2.7': Issue #19683: Add __closure__ and other missing attributes to function docs. http://hg.python.org/cpython/rev/fed468670866 -- ___ Python tracker

[issue19863] Missing function attributes in 2.7 docs.

2014-01-26 Thread Raymond Hettinger
Raymond Hettinger added the comment: > LGTM, but may be write Py3k compatible names at first place? +1 -- nosy: +rhettinger ___ Python tracker ___ __

[issue19863] Missing function attributes in 2.7 docs.

2014-01-23 Thread Mark Dickinson
Mark Dickinson added the comment: > LGTM, but may be write Py3k compatible names at first place? Sure; I don't have strong opinions either way. -- ___ Python tracker ___ __

[issue19863] Missing function attributes in 2.7 docs.

2014-01-21 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: docs@python -> mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue19863] Missing function attributes in 2.7 docs.

2014-01-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM, but may be write Py3k compatible names at first place? -- stage: -> commit review type: -> behavior ___ Python tracker ___ ___

[issue19863] Missing function attributes in 2.7 docs.

2013-12-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Then write the double-underscore variants at first place. -- ___ Python tracker ___ ___ Python-bug

[issue19863] Missing function attributes in 2.7 docs.

2013-12-02 Thread Mark Dickinson
Mark Dickinson added the comment: Updated patch. -- Added file: http://bugs.python.org/file32939/missing_function_attributes_v2.patch ___ Python tracker ___

[issue19863] Missing function attributes in 2.7 docs.

2013-12-02 Thread Mark Dickinson
Mark Dickinson added the comment: > Perhaps aliases should be added in same cell as original names? That sounds good to me. Perhaps with a single explanatory line below the table to explain that the double-underscore variants were introduced for compatibility with Python 3. -- _

[issue19863] Missing function attributes in 2.7 docs.

2013-12-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Perhaps aliases should be added in same cell as original names? +---+---+---+ | :attr:`func_code`,| The code object representing | Writable | | :attr:`__code__` | the compi

[issue19863] Missing function attributes in 2.7 docs.

2013-12-02 Thread Mark Dickinson
New submission from Mark Dickinson: The attached patch fills in some missing function attributes from the Python 2.7 datamodel docs. -- assignee: docs@python components: Documentation files: missing_function_attributes.patch keywords: patch messages: 205038 nosy: docs@python, mark.dicki