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.

Author jack__d
Recipients Christian.Kleineidam, jack__d
Date 2021-06-14.19:41:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1623699698.91.0.603572583185.issue44421@roundup.psfhosted.org>
In-reply-to
Content
This doesn't look like a bug. It's hard to disentangle what your code is doing, exactly, but it's most likely that between all your nested loops and classes initializing each other, there is an exponential or greater growth in time complexity happening. As your input values grow, the program slows down at an exponential rate until it appears to just "hang".

The RAM is growing because the program hasn't really stopped running, it's just dutifully chugging along and filling up more and more memory, and if you waited long enough the program would either crash having run out of memory or maybe the program would complete in a very, very long time.

I hope I'm not missing something; feel free to let me know, or share a more minimal example to reproduce the issue.
History
Date User Action Args
2021-06-14 19:41:38jack__dsetrecipients: + jack__d, Christian.Kleineidam
2021-06-14 19:41:38jack__dsetmessageid: <1623699698.91.0.603572583185.issue44421@roundup.psfhosted.org>
2021-06-14 19:41:38jack__dlinkissue44421 messages
2021-06-14 19:41:38jack__dcreate