Skip to content

gh-131998: Fix NULL dereference when using an unbound method descriptor in a specialized code path #132000

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Apr 8, 2025
Merged
Prev Previous commit
Next Next commit
Fix the damn import.
  • Loading branch information
ZeroIntensity committed Apr 7, 2025
commit 0eb6933d428ea9707b6d8c46b127685652db4cb0
3 changes: 2 additions & 1 deletion Lib/test/test_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
run_with_locale, cpython_only, no_rerun,
MISSING_C_DOCSTRINGS, EqualToForwardRef,
)
from test.support.script_helper import assert_python_ok, import_fresh_module
from test.support.script_helper import assert_python_ok
from test.support.import_helper import import_fresh_module
import collections.abc
from collections import namedtuple, UserDict
import copy
Expand Down
Loading