This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients amaury.forgeotdarc, benjamin.peterson, pitrou, vstinner
Date 2008-08-21.17:16:28
SpamBayes Score 1.7302223e-06
Marked as misclassified No
Message-id <1219338989.6.0.223587694946.issue3611@psf.upfronthosting.co.za>
In-reply-to
Content
Here is a new snippet with strange exception handling:
--------------------- 8< -------------------------
from gc import collect
import _weakref

class FuzzingUserClass:
    pass

obj = _weakref.ref(FuzzingUserClass)

# Exception not raised??
obj.__init__(
    0,
    0,
    0,
)

# Exception catched here??
collect()
--------------------- 8< -------------------------

Result:
    Exception TypeError: '__init__ expected at most 2 arguments, 
    got 3' in 'garbage collection' ignored
    Fatal Python error: unexpected exception during garbage collection
    Abandon (core dumped)

The exception is raised in Objects/weakrefobject.c:
  weakref___init__() 
  => parse_weakref_init_args() 
  => PyArg_UnpackTuple() *here*
History
Date User Action Args
2008-08-21 17:16:29vstinnersetrecipients: + vstinner, amaury.forgeotdarc, pitrou, benjamin.peterson
2008-08-21 17:16:29vstinnersetmessageid: <1219338989.6.0.223587694946.issue3611@psf.upfronthosting.co.za>
2008-08-21 17:16:29vstinnerlinkissue3611 messages
2008-08-21 17:16:28vstinnercreate