From: Serhiy Storchaka Date: Sat, 18 Jul 2015 20:21:16 +0000 (+0300) Subject: Issue #24206: Fixed __eq__ and __ne__ methods of inspect classes. X-Git-Tag: v3.6.0a1~1955 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=44a5cd654d8f617df72936167c5f57141b8e86bb;p=python Issue #24206: Fixed __eq__ and __ne__ methods of inspect classes. --- 44a5cd654d8f617df72936167c5f57141b8e86bb diff --cc Misc/NEWS index 663010a81b,b400a91211..db0e776144 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -41,8 -19,16 +41,10 @@@ Core and Builtin Library ------- + - Issue #24206: Fixed __eq__ and __ne__ methods of inspect classes. + - Issue #24631: Fixed regression in the timeit module with multiline setup. -- Issue #18622: unittest.mock.mock_open().reset_mock would recurse infinitely. - Patch from Nicola Palumbo and Laurent De Buyst. - -- Issue #23661: unittest.mock side_effects can now be exceptions again. This - was a regression vs Python 3.4. Patch from Ignacio Rossi - - Issue #24608: chunk.Chunk.read() now always returns bytes, not str. - Issue #18684: Fixed reading out of the buffer in the re module.