[issue13859] Lingering StandardError in logging module

2012-01-25 Thread Matt Joiner
Matt Joiner added the comment: Cheers, thanks for the fast turn around. -- ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue13859] Lingering StandardError in logging module

2012-01-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset e506848d6381 by Vinay Sajip in branch '3.2': Closes #13859: Replaced reference to StandardError with reference to Exception. Thanks to Matt Joiner for spotting this and submitting a patch. http://hg.python.org/cpython/rev/e506848d6381 New changese

[issue13859] Lingering StandardError in logging module

2012-01-25 Thread Vinay Sajip
Vinay Sajip added the comment: > Interesting this also occurs in 3.2 and 2.7, but not 2.6 or 3.1 Most likely it happened because a fix was backported and this got missed. I'll take care of it. -- assignee: -> vinay.sajip ___ Python tracker

[issue13859] Lingering StandardError in logging module

2012-01-25 Thread Matt Joiner
Matt Joiner added the comment: Interesting this also occurs in 3.2 and 2.7, but not 2.6 or 3.1. It's probably not an error in 2.x tho. -- versions: +Python 2.7, Python 3.2 ___ Python tracker _

[issue13859] Lingering StandardError in logging module

2012-01-25 Thread Matt Joiner
New submission from Matt Joiner : There's a lingering StandardError referenced in the logging module. StandardError was removed in Python 3, and execution across this code path generates a NameError: File "/home/matt/src/cpython/Lib/logging/__init__.py", line 291, in __init__ except Stan

[issue13859] Lingering StandardError in logging module

2012-01-25 Thread Brian Curtin
Changes by Brian Curtin : -- components: -2to3 (2.x to 3.x conversion tool) nosy: +vinay.sajip stage: -> patch review ___ Python tracker ___ ___