Fixed typo in pickle tests.

This commit is contained in:
Serhiy Storchaka 2016-03-04 09:40:03 +02:00
commit 96c058b4de
1 changed files with 2 additions and 2 deletions

View File

@ -2446,7 +2446,7 @@ class REX_six(object):
def __init__(self, items=None):
self.items = items if items is not None else []
def __eq__(self, other):
return type(self) is type(other) and self.items == self.items
return type(self) is type(other) and self.items == other.items
def append(self, item):
self.items.append(item)
def __reduce__(self):
@ -2459,7 +2459,7 @@ class REX_seven(object):
def __init__(self, table=None):
self.table = table if table is not None else {}
def __eq__(self, other):
return type(self) is type(other) and self.table == self.table
return type(self) is type(other) and self.table == other.table
def __setitem__(self, key, value):
self.table[key] = value
def __reduce__(self):