From 5b8cd5abe5924646b9ed90e7ba90085b56d5f634 Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Fri, 12 May 2023 15:36:12 +0300 Subject: 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 bf7bd24..513d4d9 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) -- cgit v0.12