8000 Revert "bpo-31356: Add context manager to temporarily disable GC #4224 by 1st1 · Pull Request #5495 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

Revert "bpo-31356: Add context manager to temporarily disable GC #4224 #5495

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 2 commits into from
Feb 2, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Update NEWS
  • Loading branch information
1st1 committed Feb 2, 2018
commit 43fa047cc2096f315244e280ff71525722870d55
11 changes: 0 additions & 11 deletions Misc/NEWS.d/3.7.0b1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -196,17 +196,6 @@ by Sanyam Khurana.

..

.. bpo: 31356
.. date: 2017-11-02-00-34-42
.. nonce: 54Lb8U
.. section: Core and Builtins

Add a new contextmanager to the gc module that temporarily disables the GC
and restores the previous state. The implementation is done in C to assure
atomicity and speed.

..

.. bpo: 31179
.. date: 2017-08-10-17-32-48
.. nonce: XcgLYI
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Remove the new API added in bpo-31356 (gc.ensure_disabled() context
manager).
0