Drop Python 3.8 support in typeshed utilities (#13774)

This commit is contained in:
Brian Schubert
2025-04-02 10:09:17 -04:00
committed by GitHub
parent 5d15355717
commit c7ab79ed1b
4 changed files with 9 additions and 8 deletions
+2 -1
View File
@@ -2,8 +2,9 @@ from __future__ import annotations
import subprocess
import sys
from collections.abc import Iterable
from http.client import HTTPResponse
from typing import TYPE_CHECKING, Iterable
from typing import TYPE_CHECKING
from urllib.request import urlopen
from zipfile import ZipFile