[issue41761] multiprocessing.Queue prevents program exit when containing a reasonable amount of data

2020-09-17 Thread Dominik Schmid
Change by Dominik Schmid : -- nosy: +davin, pitrou ___ Python tracker <https://bugs.python.org/issue41761> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41761] multiprocessing.Queue prevents program exit when containing a reasonable amount of data

2020-09-11 Thread Dominik Schmid
New submission from Dominik Schmid : Reproduction steps: run the attached queue_busted.py expected result: "done." is printed and the program terminates. actual result: "done." is printed and the program does not terminate. Documentation link for your convenience: htt

[issue25794] __setattr__ does not always overload operators

2015-12-04 Thread Dominik Schmid
New submission from Dominik Schmid: While implementing my own Integer class that keeps track of when operations are applied I noticed that setattr had a strange behaviour when I tried to wrap operator functions. When the attribute string had a different id to its literal it failed