[issue34706] Signature.from_callable sometimes drops subclassing

2020-10-09 Thread Gregory P. Smith
Change by Gregory P. Smith : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue34706] Signature.from_callable sometimes drops subclassing

2020-10-09 Thread Irit Katriel
Irit Katriel added the comment: This seems complete, can it be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___

[issue34706] Signature.from_callable sometimes drops subclassing

2019-09-13 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: New changeset cf25765cf79a5bd19ba90a535a51367d6177f2bc by Stéphane Wirtel (Miss Islington (bot)) in branch '3.8': bpo-34706: Preserve subclassing in inspect.Signature.from_callable (GH-16108) (GH-16113)

[issue34706] Signature.from_callable sometimes drops subclassing

2019-09-13 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: New changeset 3906920cfecba83d529f8755f5ec2e53e49f9e90 by Stéphane Wirtel (Miss Islington (bot)) in branch '3.7': bpo-34706: Preserve subclassing in inspect.Signature.from_callable (GH-16108) (GH-16114)

[issue34706] Signature.from_callable sometimes drops subclassing

2019-09-13 Thread miss-islington
Change by miss-islington : -- pull_requests: +15729 pull_request: https://github.com/python/cpython/pull/16114 ___ Python tracker ___

[issue34706] Signature.from_callable sometimes drops subclassing

2019-09-13 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset 5b9ff7a0dcb16d6f5c3cd4f1f52e0ca6a4bde586 by Gregory P. Smith in branch 'master': bpo-34706: Preserve subclassing in inspect.Signature.from_callable (GH-16108) https://github.com/python/cpython/commit/5b9ff7a0dcb16d6f5c3cd4f1f52e0ca6a4bde586

[issue34706] Signature.from_callable sometimes drops subclassing

2019-09-13 Thread miss-islington
Change by miss-islington : -- pull_requests: +15728 pull_request: https://github.com/python/cpython/pull/16113 ___ Python tracker ___

[issue34706] Signature.from_callable sometimes drops subclassing

2019-09-13 Thread Gregory P. Smith
Change by Gregory P. Smith : -- assignee: -> gregory.p.smith nosy: +gregory.p.smith ___ Python tracker ___ ___ Python-bugs-list

[issue34706] Signature.from_callable sometimes drops subclassing

2019-09-13 Thread Gregory P. Smith
Change by Gregory P. Smith : -- versions: +Python 3.8, Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue34706] Signature.from_callable sometimes drops subclassing

2019-09-13 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +15726 pull_request: https://github.com/python/cpython/pull/16108 ___ Python tracker ___

[issue34706] Signature.from_callable sometimes drops subclassing

2018-09-16 Thread Buck Evan
Change by Buck Evan : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34706] Signature.from_callable sometimes drops subclassing

2018-09-16 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +8768 stage: -> patch review ___ Python tracker ___ ___

[issue34706] Signature.from_callable sometimes drops subclassing

2018-09-16 Thread Buck Evan
New submission from Buck Evan : Specifically in the case of a class that does not override its constructor signature inherited from object. Github PR incoming shortly. -- components: Library (Lib) messages: 325501 nosy: bukzor priority: normal severity: normal status: open title: