-
-
Notifications
You must be signed in to change notification settings - Fork 30.4k
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
Refleak after new OrderedDict
repr
#101747
Labels
type-bug
An unexpected behavior, bug, or error
Comments
Local repro:
|
sobolevn
added a commit
to sobolevn/cpython
that referenced
this issue
Feb 9, 2023
rhettinger
pushed a commit
that referenced
this issue
Feb 10, 2023
carljm
added a commit
to carljm/cpython
that referenced
this issue
Feb 10, 2023
* main: Fix some typos in asdl_c.py (pythonGH-101757) pythongh-101747: Fix refleak in new `OrderedDict` repr (pythonGH-101748) pythongh-101430: Update tracemalloc to handle presize properly. (pythongh-101745) pythonGH-101228: Fix typo in docstring for read method of `_io.TextIOWrapper` class (python#101227) Fix typo in `test_fstring.py` (python#101600) pythongh-101726: Update the OpenSSL version to 1.1.1t (pythonGH-101727) pythongh-101283: Fix 'versionchanged' for the shell=True fallback on Windows in 3.12 (pythonGH-101728) LibFFI build requires x64 Cygwin, and skip the ARM build (pythonGH-101743)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It is reported by @corona10 that after 790ff6b we have a new refleak:
Looks like
dcopy = PyDict_Copy((PyObject *)self);
is created, but never freed :(PR is on its way.
Linked PRs
OrderedDict
repr #101748The text was updated successfully, but these errors were encountered: