This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Remove duplicated function in Lib/inspect.py
Type: Stage:
Components: Library (Lib) Versions: Python 3.2
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: mark.dickinson, vincele
Priority: normal Keywords: patch

Created on 2009-08-01 22:13 by vincele, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
py3k-inspect.py-remove-duplicated-func.patch vincele, 2009-08-01 22:13 Patch to remove the duplicate isgenerator() from inspect.py
Messages (2)
msg91172 - (view) Author: Vincent Legoll (vincele) Date: 2009-08-01 22:13
The isgenerator() function looks duplicated, remove the one with the
shortest docstring
msg91184 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2009-08-02 15:52
Thanks for the report!  Fixed in r74285 (trunk), r74286 (release26-maint), 
r74287 (py3k) and r74288 (release31-maint).
History
Date User Action Args
2022-04-11 14:56:51adminsetgithub: 50868
2009-08-02 15:52:24mark.dickinsonsetstatus: open -> closed

nosy: + mark.dickinson
messages: + msg91184

resolution: fixed
2009-08-01 22:13:54vincelecreate