Merge branch 'master' into newbranching

This commit is contained in:
holger krekel 2015-09-22 10:22:05 +02:00
commit 745cd26850
2 changed files with 7 additions and 2 deletions

View File

@ -1,4 +1,4 @@
x.y.z 2.8.x
----- -----
- (experimental) adapt more SEMVER style versioning and change meaning of - (experimental) adapt more SEMVER style versioning and change meaning of
@ -9,6 +9,8 @@ x.y.z
- Fix issue #766 by removing documentation references to distutils. - Fix issue #766 by removing documentation references to distutils.
Thanks Russel Winder. Thanks Russel Winder.
- Fix issue #411: Add __eq__ method to assertion comparison example.
Thanks Ben Webb.
2.8.0 2.8.0
----------------------------- -----------------------------

View File

@ -200,7 +200,10 @@ now, given this test module::
# content of test_foocompare.py # content of test_foocompare.py
class Foo: class Foo:
def __init__(self, val): def __init__(self, val):
self.val = val self.val = val
def __eq__(self, other):
return self.val == other.val
def test_compare(): def test_compare():
f1 = Foo(1) f1 = Foo(1)