From 5b8cd5abe5924646b9ed90e7ba90085b56d5f634 Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Fri, 12 May 2023 15:36:12 +0300 Subject: [PATCH] gh-104415: Fix refleak tests for `typing.ByteString` deprecation (#104416) --- Lib/typing.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Lib/typing.py b/Lib/typing.py index bf7bd241972a..513d4d96dd6e 100644 --- a/Lib/typing.py +++ b/Lib/typing.py @@ -3586,3 +3586,12 @@ def __getattr__(attr): ) return ByteString raise AttributeError(f"module 'typing' has no attribute {attr!r}") + + +def _remove_cached_ByteString_from_globals(): + try: + del globals()["ByteString"] + except KeyError: + pass + +_cleanups.append(_remove_cached_ByteString_from_globals) -- 2.47.3