We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d58df3b commit 9150cd8Copy full SHA for 9150cd8
python/google/protobuf/internal/message_test.py
@@ -1832,8 +1832,9 @@ def testUnpackedFields(self):
1832
self.assertEqual(golden_data, message.SerializeToString())
1833
1834
1835
-@unittest.skipIf(api_implementation.Type() != 'cpp',
1836
- 'explicit tests of the C++ implementation')
+@unittest.skipIf(api_implementation.Type() != 'cpp' or
+ sys.version_info < (2, 7),
1837
+ 'explicit tests of the C++ implementation for PY27 and above')
1838
class OversizeProtosTest(BaseTestCase):
1839
1840
@classmethod
0 commit comments