Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Generator .close does not release resources #118272

Closed
Labels
3.12only security fixes3.13bugs and security fixestype-bugAn unexpected behavior, bug, or error
@gsbrodal

Description

@gsbrodal

Bug report

Bug description:

Sending a generator.close() in Python 3.12 does not release resources used by local variables as it used to do in earlier versions of Python. Wrapping the generator content in atry: ... except GeneratorExit: pass releases the resources as expected.

The following shows the difference in space usage between wrapping the code withtry-except and not.

defgenerator_using_a_lot_of_space():a_big_set=set(range(10_000_000))yield42g=generator_using_a_lot_of_space()input('A <press enter>')# 13.4 MBprint(next(g))input('B <press enter>')# 576.6 MBg.close()input('C <press enter>')# 576.6 MB  <== space usage used to drop to 13-14 MBdefgenerator_using_a_lot_of_space():a_big_set=set(range(10_000_000))try:yield42exceptGeneratorExit:passg=generator_using_a_lot_of_space()input('D <press enter>')# 14.6 MBprint(next(g))input('E <press enter>')# 575.6 MBg.close()input('F <press enter>')# 14.6 MB  <== drop in space usage as expected

The above space measurements were done with
Python 3.12.3 (tags/v3.12.3:f6650f9, Apr 9 2024, 14:05:25) [MSC v.1938 64 bit (AMD64)] on win32
and looking at the space usage reported by the Windows 11 Task Manager.

CPython versions tested on:

3.12

Operating systems tested on:

Windows

Linked PRs

Metadata

Metadata

Assignees

No one assigned

    Labels

    3.12only security fixes3.13bugs and security fixestype-bugAn unexpected behavior, bug, or error

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions


      [8]ページ先頭

      ©2009-2025 Movatter.jp