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
@ -9,6 +9,8 @@ x.y.z
- Fix issue #766 by removing documentation references to distutils.
Thanks Russel Winder.
- Fix issue #411: Add __eq__ method to assertion comparison example.
Thanks Ben Webb.
2.8.0
-----------------------------

View File

@ -202,6 +202,9 @@ now, given this test module::
def __init__(self, val):
self.val = val
def __eq__(self, other):
return self.val == other.val
def test_compare():
f1 = Foo(1)
f2 = Foo(2)