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 xdegaye
Recipients xdegaye
Date 2018-05-08.18:29:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1525804155.74.0.682650639539.issue33446@psf.upfronthosting.co.za>
In-reply-to
Content
In the following code, the destructors of objects referenced by the 'a' and 'b' local variables are not traced by the 'step' command of pdb.

 1 class C:
 2     def __init__(self, name):
 3         self.name = name
 4
 5     def __del__(self):
 6         print('"%s" destructor' % self.name)
 7
 8 def main():
 9     a = C('a')
10     b = C('b')
11     import pdb; pdb.set_trace()
12     a = 1
13
14 main()
History
Date User Action Args
2018-05-08 18:29:15xdegayesetrecipients: + xdegaye
2018-05-08 18:29:15xdegayesetmessageid: <1525804155.74.0.682650639539.issue33446@psf.upfronthosting.co.za>
2018-05-08 18:29:15xdegayelinkissue33446 messages
2018-05-08 18:29:15xdegayecreate