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: PythonIDE crashes on very large scripts folder
Type: Stage:
Components: macOS Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jackjansen Nosy List: jackjansen
Priority: normal Keywords:

Created on 2004-05-24 08:01 by jackjansen, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg20863 - (view) Author: Jack Jansen (jackjansen) * (Python committer) Date: 2004-05-24 08:01
The MacPython IDE crashes if your scripts folder is very large (or, 
alternatively, if you select a very large folder as the scripts 
folder), and here "large" counts files in subdirs, etc.

The problem is that we have a fixed number of menu entry IDs, 
and we run out of them.
msg20864 - (view) Author: Jack Jansen (jackjansen) * (Python committer) Date: 2004-06-03 13:35
Logged In: YES 
user_id=45365

Fixed by stopping traversal of the scripts folder as soon as we allocate a 
menu ID > 200. This leaves 55 menu ids as headroom.

Fixed in Wapplication.py rev. 1.24 and 1.22.8.1.
History
Date User Action Args
2022-04-11 14:56:04adminsetgithub: 40282
2004-05-24 08:01:33jackjansencreate