[issue18618] Need an atexit.register equivalent that also works in subinterps

2021-10-21 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> atexit callbacks should be run at subinterpreter shutdown ___ Python tracker __

[issue18618] Need an atexit.register equivalent that also works in subinterps

2021-06-27 Thread Irit Katriel
Irit Katriel added the comment: I think this is a duplicate of issue31901. -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-

[issue18618] Need an atexit.register equivalent that also works in subinterps

2013-08-16 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +christian.heimes ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue18618] Need an atexit.register equivalent that also works in subinterps

2013-08-01 Thread Antoine Pitrou
Antoine Pitrou added the comment: (note that weakref.finalize indirectly suffers from this problem) -- ___ Python tracker ___ ___ Pyth

[issue18618] Need an atexit.register equivalent that also works in subinterps

2013-08-01 Thread Antoine Pitrou
New submission from Antoine Pitrou: Callbacks registered with atexit.register() are only called at shutdown of the main interpreter. For some purposes (perhaps most of them, arguably), you actually want to execute the callbacks at subinterpreter shutdown too. -- messages: 194092 nosy:

[issue18618] Need an atexit.register equivalent that also works in subinterps

2013-08-01 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- components: +Interpreter Core, Library (Lib) priority: normal -> low type: -> enhancement versions: +Python 3.4 ___ Python tracker ___ ___