[issue34966] Pydoc: better support of method aliases

2018-11-07 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 2.7 ___ Python tracker ___ _

[issue34966] Pydoc: better support of method aliases

2018-11-07 Thread miss-islington
miss-islington added the comment: New changeset 11a33e171b89ea9267672b0664d739ca06e459ca by Miss Islington (bot) in branch '3.6': bpo-34966: Improve support of method aliases in pydoc. (GH-9823) https://github.com/python/cpython/commit/11a33e171b89ea9267672b0664d739ca06e459ca -- __

[issue34966] Pydoc: better support of method aliases

2018-11-07 Thread miss-islington
miss-islington added the comment: New changeset 9d3658147b56e24e96e174510b6ee91c8141e530 by Miss Islington (bot) in branch '3.7': bpo-34966: Improve support of method aliases in pydoc. (GH-9823) https://github.com/python/cpython/commit/9d3658147b56e24e96e174510b6ee91c8141e530 -- nos

[issue34966] Pydoc: better support of method aliases

2018-11-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +9692 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue34966] Pydoc: better support of method aliases

2018-11-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +9691 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue34966] Pydoc: better support of method aliases

2018-11-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset a44d34e17908a49d584f86c4f8642a50707b7150 by Serhiy Storchaka in branch 'master': bpo-34966: Improve support of method aliases in pydoc. (GH-9823) https://github.com/python/cpython/commit/a44d34e17908a49d584f86c4f8642a50707b7150 -- _

[issue34966] Pydoc: better support of method aliases

2018-10-29 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34966] Pydoc: better support of method aliases

2018-10-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The original function is present too. | tkraise(self, aboveThis=None) | Raise this widget in the stacking order. -- ___ Python tracker ___

[issue34966] Pydoc: better support of method aliases

2018-10-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: What do you mean by 'does not work'. Alias of function in same namespace. | itemconfig = itemconfigure(self, index, cnf=None, **kw) | | itemconfigure(self, index, cnf=None, **kw) | Configure resources of an ITEM. Alias of function in inherited names

[issue34966] Pydoc: better support of method aliases

2018-10-12 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +9200 stage: -> patch review ___ Python tracker ___ ___ Python-bugs

[issue34966] Pydoc: better support of method aliases

2018-10-12 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : Pydoc supports aliases. If the alias is defined in the same class class A: def foo(self, x=42): pass bar = foo it will render the docstring only for the original function. For the alias it will output just "bar = foo(self, x=42)". Bu