STINNER Victor <[email protected]> added the comment:
"""
def the_test():
print("Begin")
for x in multiprocessing.Pool().imap(int,
["4", "3"]):
print(x)
print("End")
"""
Side-note: Is it correct to use a pool without calling terminate() nor close()?
Should we start to emit a ResourceWarning if a pool is not closed explicitly,
as we did for files, sockets, asyncio event loops and subprocess.Popen objects?
----------
_______________________________________
Python tracker <[email protected]>
<https://bugs.python.org/issue34172>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com