On 3/2/06, Brett Cannon <[EMAIL PROTECTED]> wrote:
> On 3/2/06, Neal Norwitz <[EMAIL PROTECTED]> wrote:
> > The following code leaks a reference. Original test case from
> > Lib/test/test_sys.py in test_original_excepthook.
> >
> > import sys, StringIO
> > eh = sys.__excepthook__
> > try:
> > ra
On 3/2/06, Neal Norwitz <[EMAIL PROTECTED]> wrote:
> The following code leaks a reference. Original test case from
> Lib/test/test_sys.py in test_original_excepthook.
>
> import sys, StringIO
> eh = sys.__excepthook__
> try:
> raise ValueError(42)
> except ValueError, exc:
> exc_type, exc_valu
On Thu, Mar 02, 2006, Neal Norwitz wrote:
>
> The following code leaks a reference. Original test case from
> Lib/test/test_sys.py in test_original_excepthook.
Did you submit a SF bug report?
--
Aahz ([EMAIL PROTECTED]) <*> http://www.pythoncraft.com/
"19. A language that does
The following code leaks a reference. Original test case from
Lib/test/test_sys.py in test_original_excepthook.
import sys, StringIO
eh = sys.__excepthook__
try:
raise ValueError(42)
except ValueError, exc:
exc_type, exc_value, exc_tb = sys.exc_info()
eh(exc_type, None, None)
__