Skip to content

Commit 2dc67fe

Browse files
make patchcheck
1 parent edd799d commit 2dc67fe

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

Lib/test/libregrtest/cmdline.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@
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
122122
To enable all resources except one, use '-uall,-<resource>'. For

Lib/test/test_xpickle.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -247,14 +247,14 @@ class CPicklePython39Compat(PicklePython39Compat):
247247
def 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

259259
if __name__ == '__main__':
260-
test_main()
260+
test_main()

Lib/test/xpickle_worker.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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-

0 commit comments

Comments
 (0)