[Python-ideas] Async API
Greg Ewing
greg.ewing at canterbury.ac.nz
Thu Oct 25 02:49:30 CEST 2012
More information about the Python-ideas mailing list
Thu Oct 25 02:49:30 CEST 2012
- Previous message: [Python-ideas] Async API
- Next message: [Python-ideas] Async API
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On 25/10/12 11:43, Guido van Rossum wrote: > What's the problem with just letting the cleanup take as long as it > wants to and do whatever it wants? IIUC, the worry is not about time, it's that either 1) another task could run during the cleanup and mess something up, or 2) an exception could be thrown into the task during the cleanup and prevent it being completed. From a correctness standpoint, it doesn't matter if the cleanup takes a long time, as long as it doesn't yield. -- Greg
- Previous message: [Python-ideas] Async API
- Next message: [Python-ideas] Async API
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-ideas mailing list