[issue16165] sched.scheduler.run() blocks scheduler

2012-12-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue16165] sched.scheduler.run() blocks scheduler

2012-12-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 467c46e312eb by Serhiy Storchaka in branch '3.3': Issue #16165: Fix sched.scheduler.run() method was block a scheduler for http://hg.python.org/cpython/rev/467c46e312eb New changeset ac919a281643 by Serhiy Storchaka in branch 'default': Issue #16165

[issue16165] sched.scheduler.run() blocks scheduler

2012-12-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Sorry, Chris. I have opened too many browser tabs. ;) -- nosy: -chris.jerdonek ___ Python tracker ___ ___

[issue16165] sched.scheduler.run() blocks scheduler

2012-12-28 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +chris.jerdonek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue16165] sched.scheduler.run() blocks scheduler

2012-12-27 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: Sorry for chiming in so late. The patch looks fine to me. -- ___ Python tracker ___ ___ Python-bu

[issue16165] sched.scheduler.run() blocks scheduler

2012-12-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: If no one objects I will commit this next year. -- ___ Python tracker ___ ___ Python-bugs-list mai

[issue16165] sched.scheduler.run() blocks scheduler

2012-12-27 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16165] sched.scheduler.run() blocks scheduler

2012-12-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Oh, I submitted wrong patch (it contained unrelated changes). Here is a right one. -- Added file: http://bugs.python.org/file28254/sched_unblock_3.patch ___ Python tracker _

[issue16165] sched.scheduler.run() blocks scheduler

2012-12-08 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : Removed file: http://bugs.python.org/file27826/sched_unblock_2.patch ___ Python tracker ___ ___ Python-bugs-list

[issue16165] sched.scheduler.run() blocks scheduler

2012-11-01 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : Added file: http://bugs.python.org/file27826/sched_unblock_2.patch ___ Python tracker ___ ___ Python-bugs-list m

[issue16165] sched.scheduler.run() blocks scheduler

2012-11-01 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : Removed file: http://bugs.python.org/file27825/sched_unblock_2.patch ___ Python tracker ___ ___ Python-bugs-list

[issue16165] sched.scheduler.run() blocks scheduler

2012-11-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Tests added. Please review. -- keywords: +needs review Added file: http://bugs.python.org/file27825/sched_unblock_2.patch ___ Python tracker

[issue16165] sched.scheduler.run() blocks scheduler

2012-11-01 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : Removed file: http://bugs.python.org/file27490/sched_unblock.patch ___ Python tracker ___ ___ Python-bugs-list m

[issue16165] sched.scheduler.run() blocks scheduler

2012-10-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue16165] sched.scheduler.run() blocks scheduler

2012-10-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch that releases lock for other threads. -- keywords: +patch Added file: http://bugs.python.org/file27490/sched_unblock.patch ___ Python tracker

[issue16165] sched.scheduler.run() blocks scheduler

2012-10-08 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: sched.scheduler.run() blocks scheduler and prevents the addition of new events until all events added before start will not be processed. Canceling does not work too. Here is test script which reproduces the behavior differences. Output in Python 3.2: Ad