[issue17065] Fix sporadic buildbot failures for test_winreg

2013-04-21 Thread Jeremy Kloth
Jeremy Kloth added the comment: Thank you! There are no failures due to the patch and now its just a wait and see if test_winreg will misbehave again. -- ___ Python tracker ___

[issue17065] Fix sporadic buildbot failures for test_winreg

2013-04-21 Thread R. David Murray
R. David Murray added the comment: Not being a windows dev I couldn't easily test the patch, so hopefully this commit won't break the buildbots :) -- nosy: +r.david.murray resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed versions: -Python 3.2

[issue17065] Fix sporadic buildbot failures for test_winreg

2013-04-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0882960fa6df by R David Murray in branch '3.3': #17065: Use process-unique key for winreg test. http://hg.python.org/cpython/rev/0882960fa6df New changeset c7806d1b09eb by R David Murray in branch 'default': Merge #17065: Use process-unique key for

[issue17065] Fix sporadic buildbot failures for test_winreg

2013-04-21 Thread Jeremy Kloth
Jeremy Kloth added the comment: Not to sound needy, but could the patch be looked into being integrated soon? This problem had only occurred once or twice a month however it has caused failures three times just in the last week. -- ___ Python track

[issue17065] Fix sporadic buildbot failures for test_winreg

2013-01-28 Thread Brian Curtin
Changes by Brian Curtin : -- assignee: -> brian.curtin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue17065] Fix sporadic buildbot failures for test_winreg

2013-01-28 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Windows nosy: +brian.curtin, stutzbach stage: -> patch review type: -> behavior versions: -Python 3.5 ___ Python tracker ___

[issue17065] Fix sporadic buildbot failures for test_winreg

2013-01-28 Thread Jeremy Kloth
New submission from Jeremy Kloth: test_winreg fails sporadically on the AMD64 Windows buildbot. Looking at the test, it appears that concurrent runs of the test would fail if different processes attempted to modify the test key at the same time. The attached patch resolves this by using a per