summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorGustavo Niemeyer <gustavo@niemeyer.net>2010-06-20 15:04:54 -0300
committerGustavo Niemeyer <gustavo@niemeyer.net>2010-06-20 15:04:54 -0300
commit3a4c487d0d08f51dca83e31f35aae5ecb3affb82 (patch)
treefd641989efbaec56956bbadaa9cbe2fd7ce5e3c2 /NEWS
parent1a572f6c05cc6c7aa2b58e810684525cb8b66de7 (diff)
downloadmocker-3a4c487d0d08f51dca83e31f35aae5ecb3affb82.tar.gz
Fixed support for MockerTestCase.addCleanup() in Python 2.3,
by Anders F Björklund (#528657).
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS5
1 files changed, 4 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 2022549..2b8fca3 100644
--- a/NEWS
+++ b/NEWS
@@ -11,10 +11,13 @@
certain cases because, even though that's *not* documented, Python
tries to use __length_hint__ in some cases.
+- Fixed support for MockerTestCase.addCleanup() in Python 2.3,
+ by Anders F Björklund (#528657).
+
- Implemented Expect helper, which allows creating a new expect()
"function" with an explicitly provided Mocker instance. This
helps in cases where the expression can't result in a Mock
- instance (e.g. expect(iter(mock))) (#196388).
+ instance (e.g. expect(iter(mock))) (#196388, #179072).
"function" with an explicitly provided Mocker instance.