diff options
author | Neil Schemenauer <nas-github@arctrix.com> | 2019-07-30 12:08:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-30 12:08:17 -0700 |
commit | eca7ffc61cf925eae5def8c64b05d47f24e60e1f (patch) | |
tree | 83401b4d2674230ab77eaf8a140569a14ef24878 /Lib/test/pickletester.py | |
parent | 52a48e62c6a94577152f9301bbe5f3bc806cfcf1 (diff) | |
download | cpython-git-eca7ffc61cf925eae5def8c64b05d47f24e60e1f.tar.gz |
Don't skip pickle check_frame_opcodes() (GH-15025)
This looks like the only place that proto 4 framing gets exercised
so leave it as part of the PGO task.
Diffstat (limited to 'Lib/test/pickletester.py')
-rw-r--r-- | Lib/test/pickletester.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py index 5d402a4711..c9f374678a 100644 --- a/Lib/test/pickletester.py +++ b/Lib/test/pickletester.py @@ -2281,7 +2281,6 @@ class AbstractPickleTests(unittest.TestCase): 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. |