File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed
Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 115115
116116 tzdata - Run tests that require timezone data.
117117
118- xpickle - Test pickle and _pickle against Python 3.6, 3.7, 3.8
119- and 3.9 to test backwards compatibility. These tests
118+ xpickle - Test pickle and _pickle against Python 3.6, 3.7, 3.8
119+ and 3.9 to test backwards compatibility. These tests
120120 may take very long to complete.
121121
122122To enable all resources except one, use '-uall,-<resource>'. For
Original file line number Diff line number Diff line change @@ -247,14 +247,14 @@ class CPicklePython39Compat(PicklePython39Compat):
247247def test_main ():
248248 support .requires ('xpickle' )
249249 tests = [PicklePython36Compat ,
250- PicklePython37Compat , PicklePython38Compat ,
250+ PicklePython37Compat , PicklePython38Compat ,
251251 PicklePython39Compat ]
252252 if has_c_implementation :
253253 tests .extend ([CPicklePython36Compat ,
254- CPicklePython37Compat , CPicklePython38Compat ,
254+ CPicklePython37Compat , CPicklePython38Compat ,
255255 CPicklePython39Compat ])
256256 support .run_unittest (* tests )
257257
258258
259259if __name__ == '__main__' :
260- test_main ()
260+ test_main ()
Original file line number Diff line number Diff line change @@ -86,4 +86,3 @@ class Recursive:
8686 pickle .dump (e , out_stream )
8787 sys .stderr .write (repr (e ))
8888 sys .exit (1 )
89-
You can’t perform that action at this time.
0 commit comments