Merge branch 'master' into newbranching
This commit is contained in:
commit
745cd26850
|
@ -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
|
||||
-----------------------------
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue