@@ -611,7 +611,7 @@ def test_overflow(self):
611
611
self .assertRaises (OverflowError , lambda : - timedelta .max )
612
612
613
613
day = timedelta (1 )
614
- self .assertRaises (OverflowError , day .__mul__ , 10 ** 9 )
614
+ self .assertRaises (OverflowError , day .__mul__ , 10 ** 9 )
615
615
self .assertRaises (OverflowError , day .__mul__ , 1e9 )
616
616
self .assertRaises (OverflowError , day .__truediv__ , 1e-20 )
617
617
self .assertRaises (OverflowError , day .__truediv__ , 1e-10 )
@@ -1692,7 +1692,7 @@ def test_computations(self):
1692
1692
self .assertRaises (TypeError , lambda : a + a )
1693
1693
1694
1694
def test_pickling (self ):
1695
- args = 6 , 7 , 23 , 20 , 59 , 1 , 64 ** 2
1695
+ args = 6 , 7 , 23 , 20 , 59 , 1 , 64 ** 2
1696
1696
orig = self .theclass (* args )
1697
1697
for pickler , unpickler , proto in pickle_choices :
1698
1698
green = pickler .dumps (orig , proto )
@@ -1709,7 +1709,7 @@ def test_more_pickling(self):
1709
1709
1710
1710
@unittest .skip ("Skip pickling for MicroPython" )
1711
1711
def test_pickling_subclass_datetime (self ):
1712
- args = 6 , 7 , 23 , 20 , 59 , 1 , 64 ** 2
1712
+ args = 6 , 7 , 23 , 20 , 59 , 1 , 64 ** 2
1713
1713
orig = SubclassDatetime (* args )
1714
1714
for pickler , unpickler , proto in pickle_choices :
1715
1715
green = pickler .dumps (orig , proto )
@@ -2298,7 +2298,7 @@ def test_resolution_info(self):
2298
2298
self .assertTrue (self .theclass .max > self .theclass .min )
2299
2299
2300
2300
def test_pickling (self ):
2301
- args = 20 , 59 , 16 , 64 ** 2
2301
+ args = 20 , 59 , 16 , 64 ** 2
2302
2302
orig = self .theclass (* args )
2303
2303
for pickler , unpickler , proto in pickle_choices :
2304
2304
green = pickler .dumps (orig , proto )
@@ -2307,7 +2307,7 @@ def test_pickling(self):
2307
2307
2308
2308
@unittest .skip ("Skip pickling for MicroPython" )
2309
2309
def test_pickling_subclass_time (self ):
2310
- args = 20 , 59 , 16 , 64 ** 2
2310
+ args = 20 , 59 , 16 , 64 ** 2
2311
2311
orig = SubclassTime (* args )
2312
2312
for pickler , unpickler , proto in pickle_choices :
2313
2313
green = pickler .dumps (orig , proto )
@@ -2686,7 +2686,7 @@ def test_hash_edge_cases(self):
2686
2686
2687
2687
def test_pickling (self ):
2688
2688
# Try one without a tzinfo.
2689
- args = 20 , 59 , 16 , 64 ** 2
2689
+ args = 20 , 59 , 16 , 64 ** 2
2690
2690
orig = self .theclass (* args )
2691
2691
for pickler , unpickler , proto in pickle_choices :
2692
2692
green = pickler .dumps (orig , proto )
@@ -2916,7 +2916,7 @@ def utcoffset(self, dt):
2916
2916
2917
2917
def test_pickling (self ):
2918
2918
# Try one without a tzinfo.
2919
- args = 6 , 7 , 23 , 20 , 59 , 1 , 64 ** 2
2919
+ args = 6 , 7 , 23 , 20 , 59 , 1 , 64 ** 2
2920
2920
orig = self .theclass (* args )
2921
2921
for pickler , unpickler , proto in pickle_choices :
2922
2922
green = pickler .dumps (orig , proto )
0 commit comments