[issue36368] server process of shared_memory shuts down if KeyboardInterrupt

2019-05-18 Thread Pierre Glaser
Change by Pierre Glaser : -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mail

[issue36368] server process of shared_memory shuts down if KeyboardInterrupt

2019-05-10 Thread Antoine Pitrou
Antoine Pitrou added the comment: New changeset d0d64ad1f5f1dc1630004091d7f8209546c1220a by Antoine Pitrou (Pierre Glaser) in branch 'master': bpo-36368: Ignore SIGINT in SharedMemoryManager servers. (GH-12483) https://github.com/python/cpython/commit/d0d64ad1f5f1dc1630004091d7f8209546c1220a

[issue36368] server process of shared_memory shuts down if KeyboardInterrupt

2019-03-21 Thread Pierre Glaser
Pierre Glaser added the comment: Done. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue36368] server process of shared_memory shuts down if KeyboardInterrupt

2019-03-21 Thread Pierre Glaser
Change by Pierre Glaser : -- pull_requests: +12436 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue36368] server process of shared_memory shuts down if KeyboardInterrupt

2019-03-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: Sorry - I meant make a *PR* out of it :-) -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue36368] server process of shared_memory shuts down if KeyboardInterrupt

2019-03-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: Your patch sounds good on the principle, but can you make a patch out of it? -- ___ Python tracker ___ __

[issue36368] server process of shared_memory shuts down if KeyboardInterrupt

2019-03-19 Thread Pierre Glaser
New submission from Pierre Glaser : When starting a SharedMemoryManager in an interactive session, any KeyboardInterrupt event will be transmitted to the (sub)process running the shared memory server, which causes the Manager to be unusable thereafter: >>> from multiprocessing.managers import