[issue7223] Simplify and improve Thread.join()

2009-10-27 Thread Antoine Pitrou
Antoine Pitrou added the comment: Indeed. Let's consider it closed then. -- resolution: -> rejected status: open -> closed ___ Python tracker ___ ___

[issue7223] Simplify and improve Thread.join()

2009-10-27 Thread Benjamin Peterson
Benjamin Peterson added the comment: This patch relies on ref counting behavior, an unfortunate side-effect for other implementations. -- nosy: +benjamin.peterson ___ Python tracker

[issue7223] Simplify and improve Thread.join()

2009-10-27 Thread Antoine Pitrou
Antoine Pitrou added the comment: (I meant not enough, of course) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue7223] Simplify and improve Thread.join()

2009-10-27 Thread Antoine Pitrou
New submission from Antoine Pitrou : This patch improves and simplifies Thread.join() by making sure that the __bootstrap() method is finished before join() returns. While it does improve the resource deallocation behaviour, it is still enough for solving all refleak detection hazards (see #7222)