Skip to content

FIX: do not try to help CPython with garbage collection #23712

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 1 commit into from
Aug 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions lib/matplotlib/_pylab_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

import atexit
from collections import OrderedDict
import gc


class Gcf:
Expand Down Expand Up @@ -66,10 +65,6 @@ def destroy(cls, num):
manager.canvas.mpl_disconnect(manager._cidgcf)
manager.destroy()
del manager, num
# Full cyclic garbage collection may be too expensive to do on every
# figure destruction, so we collect only the youngest two generations.
# see: https://github.com/matplotlib/matplotlib/pull/3045
gc.collect(1)

@classmethod
def destroy_fig(cls, fig):
Expand All @@ -82,14 +77,10 @@ def destroy_fig(cls, fig):
@classmethod
def destroy_all(cls):
"""Destroy all figures."""
# Reimport gc in case the module globals have already been removed
# during interpreter shutdown.
import gc
for manager in list(cls.figs.values()):
manager.canvas.mpl_disconnect(manager._cidgcf)
manager.destroy()
cls.figs.clear()
gc.collect(1)

@classmethod
def has_fignum(cls, num):
Expand Down