Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7cd9fbe

Browse files
committed
Fix whitespace
1 parent c9dc4a2 commit 7cd9fbe

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Lib/test/test_descr.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4525,7 +4525,7 @@ class Base2(object):
45254525

45264526
class PicklingTests(unittest.TestCase):
45274527

4528-
def _check_reduce(self, proto, obj, args=(), kwargs={}, state=None,
4528+
def _check_reduce(self, proto, obj, args=(), kwargs={}, state=None,
45294529
listitems=None, dictitems=None):
45304530
if proto >= 4:
45314531
reduce_value = obj.__reduce_ex__(proto)
@@ -4559,7 +4559,7 @@ def _check_reduce(self, proto, obj, args=(), kwargs={}, state=None,
45594559
base_type = type(obj).__base__
45604560
reduce_value = (copyreg._reconstructor,
45614561
(type(obj),
4562-
base_type,
4562+
base_type,
45634563
None if base_type is object else base_type(obj)))
45644564
if state is not None:
45654565
reduce_value += (state,)
@@ -4774,7 +4774,7 @@ class C:
47744774
def __getstate__(self):
47754775
state = getattr(self, '__dict__', {}).copy()
47764776
for cls in type(self).__mro__:
4777-
for slot in cls.__dict__.get('__slots__', ()):
4777+
for slot in cls.__dict__.get('__slots__', ()):
47784778
try:
47794779
state[slot] = getattr(self, slot)
47804780
except AttributeError:

0 commit comments

Comments
 (0)