[issue20239] Allow repeated deletion of unittest.mock.Mock attributes

2019-01-21 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue20239] Allow repeated deletion of unittest.mock.Mock attributes

2019-01-21 Thread Chris Withers
Chris Withers added the comment: New changeset d358a8cda75446a8e0b5d99149f709395d5eae19 by Chris Withers (Miss Islington (bot)) in branch '3.7': bpo-20239: Allow repeated deletion of unittest.mock.Mock attributes (GH-11629) https://github.com/python/cpython/commit/d358a8cda75446a8e0b5d99149f7

[issue20239] Allow repeated deletion of unittest.mock.Mock attributes

2019-01-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +11395, 11396, 11397 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue20239] Allow repeated deletion of unittest.mock.Mock attributes

2019-01-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +11395, 11396 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue20239] Allow repeated deletion of unittest.mock.Mock attributes

2019-01-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +11395 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue20239] Allow repeated deletion of unittest.mock.Mock attributes

2019-01-21 Thread Chris Withers
Chris Withers added the comment: New changeset 222d303ade8aadf0adcae5190fac603bdcafe3f0 by Chris Withers (Pablo Galindo) in branch 'master': bpo-20239: Allow repeated deletion of unittest.mock.Mock attributes (#11057) https://github.com/python/cpython/commit/222d303ade8aadf0adcae5190fac603bdc

[issue20239] Allow repeated deletion of unittest.mock.Mock attributes

2018-12-09 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +10291 stage: needs patch -> patch review ___ Python tracker ___ __

[issue20239] Allow repeated deletion of unittest.mock.Mock attributes

2018-12-09 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: I find this to be a reasonable behavior as with normal objects that support setting the attribute after deletion. It also seems to be an easy issue since @michael.foord has already attached the patch for this from the original report. The patch als

[issue20239] Allow repeated deletion of unittest.mock.Mock attributes

2014-01-13 Thread Michael Foord
New submission from Michael Foord: Reported as mock issue 221: http://code.google.com/p/mock/issues/detail?id=221 >>> from unittest.mock import Mock >>> m = Mock() >>> m.foo = 3 >>> del m.foo >>> m.foo = 4 >>> del m.foo Traceback (most recent call last): File "", line 1, in File "/compile/p