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: No Windows List in IDLE if several windows have the same title
Type: Stage:
Components: Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: amaury.forgeotdarc, benjamin.peterson
Priority: release blocker Keywords: patch

Created on 2008-11-28 22:42 by amaury.forgeotdarc, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
windowslist.patch amaury.forgeotdarc, 2008-11-28 22:42
Messages (3)
msg76562 - (view) Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) Date: 2008-11-28 22:42
Start IDLE, and hit Ctrl-N twice to create two windows named "Untitled":
This displays the message
"""
warning: callback failed in WindowList <class 'TypeError'> : unorderable 
types: ListedToplevel() < ListedToplevel()
"""
And the "Windows" menu does not contain the windows list.

This is specific to python 3: Windows objects cannot be ordered any 
more. Patch is attached.
msg76564 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2008-11-28 22:59
Looks good.
msg76566 - (view) Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) Date: 2008-11-28 23:29
Fixed in r67436.
History
Date User Action Args
2022-04-11 14:56:41adminsetgithub: 48705
2008-11-28 23:29:06amaury.forgeotdarcsetstatus: open -> closed
resolution: fixed
messages: + msg76566
2008-11-28 22:59:02benjamin.petersonsetkeywords: - needs review
nosy: + benjamin.peterson
messages: + msg76564
2008-11-28 22:42:55amaury.forgeotdarccreate