[issue1956] Lib/bsddb/test/test_thread.py uses old 'except' syntax

2008-01-28 Thread Georgij Kondratjev
Georgij Kondratjev added the comment: If you notice that at http://svn.python.org/view/python/branches/py3k/Lib/bsddb/test/test_thread.py?rev=60350r1=58058r2=60350 shutil.rmtree(self.homeDir) didn`t change between revisions, that would be false: in fact extra space () was added. Is this a

[issue1956] Lib/bsddb/test/test_thread.py uses old 'except' syntax

2008-01-28 Thread Georgij Kondratjev
New submission from Georgij Kondratjev: except OSError, e: (appears twice) should be changed to except OSError as e: -- components: Library (Lib) messages: 61777 nosy: orivej severity: normal status: open title: Lib/bsddb/test/test_thread.py uses old 'except' syntax type: compile error

[issue1956] Lib/bsddb/test/test_thread.py uses old 'except' syntax

2008-01-28 Thread Christian Heimes
Christian Heimes added the comment: I normally don't run the tests with -uall when I merge changes. from the trunk. -- assignee: - tiran nosy: +tiran priority: - high resolution: - accepted __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1956

[issue1956] Lib/bsddb/test/test_thread.py uses old 'except' syntax

2008-01-28 Thread Christian Heimes
Christian Heimes added the comment: Fixed in r60394 The bug wasn't detected because the tests couldn't be imported. One test file still used an absolute import instead of a relative. -- resolution: accepted - fixed status: open - closed __ Tracker

[issue1956] Lib/bsddb/test/test_thread.py uses old 'except' syntax

2008-01-28 Thread Christian Heimes
Christian Heimes added the comment: Guido van Rossum wrote: Chris: I think it's worth running all tests before submitting a merge. Catch them early is what I say. :-) An ordianry test run already takes a considerable amount of time on my system. I usually wait until the build bots notify me

[issue1956] Lib/bsddb/test/test_thread.py uses old 'except' syntax

2008-01-28 Thread Georgij Kondratjev
Georgij Kondratjev added the comment: Appeared in 60350 svnmerge: http://svn.python.org/view/python/branches/py3k/Lib/bsddb/test/test_thread.py?rev=60350view=log http://svn.python.org/view/python/branches/py3k/Lib/bsddb/test/test_thread.py?rev=60350r1=58058r2=60350

[issue1956] Lib/bsddb/test/test_thread.py uses old 'except' syntax

2008-01-28 Thread Guido van Rossum
Guido van Rossum added the comment: Chris: I think it's worth running all tests before submitting a merge. Catch them early is what I say. :-) -- nosy: +gvanrossum __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1956