[Python-checkins] Don't skip pickle check_frame_opcodes() (GH-15027)

Neil Schemenauer webhook-mailer at python.org
Tue Jul 30 16:10:40 EDT 2019


https://github.com/python/cpython/commit/0f9efbcf9a051198dc9e226528d5c5d24a52d23a
commit: 0f9efbcf9a051198dc9e226528d5c5d24a52d23a
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: Neil Schemenauer <nas-github at arctrix.com>
date: 2019-07-30T13:10:15-07:00
summary:

Don't skip pickle check_frame_opcodes() (GH-15027)

This looks like the only place that proto 4 framing gets exercised
so leave it as part of the PGO task.
(cherry picked from commit eca7ffc61cf925eae5def8c64b05d47f24e60e1f)

Co-authored-by: Neil Schemenauer <nas-github at arctrix.com>

files:
M Lib/test/pickletester.py

diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py
index 5d402a4711bf..c9f374678ae3 100644
--- a/Lib/test/pickletester.py
+++ b/Lib/test/pickletester.py
@@ -2281,7 +2281,6 @@ def test_setitems_on_non_dicts(self):
     FRAME_SIZE_MIN = 4
     FRAME_SIZE_TARGET = 64 * 1024
 
-    @support.skip_if_pgo_task
     def check_frame_opcodes(self, pickled):
         """
         Check the arguments of FRAME opcodes in a protocol 4+ pickle.



More information about the Python-checkins mailing list