Skip to content

Commit

Permalink
Fix for dis module is not yet available in 3.11b3 (#475)
Browse files Browse the repository at this point in the history
  • Loading branch information
frenzymadness committed Jul 11, 2022
1 parent 8bbea3e commit f5472e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cloudpickle_test.py
Expand Up @@ -979,7 +979,7 @@ def g(y):
self.assertEqual(res, 7)

@pytest.mark.skipif(
(3, 11, 0, 'beta') <= sys.version_info < (3, 11, 0, 'beta', 2),
(3, 11, 0, 'beta') <= sys.version_info < (3, 11, 0, 'beta', 4),
reason="https://github.com/python/cpython/issues/92932"
)
def test_extended_arg(self):
Expand Down

0 comments on commit f5472e1

Please sign in to comment.