venv: add logger (#9508)

Not particularly useful but unreleased stubtest will require this:
https://github.com/python/typeshed/actions/runs/3898630022/jobs/6657546205
This commit is contained in:
Jelle Zijlstra
2023-01-11 19:33:16 -08:00
committed by GitHub
parent 1ce1c1ad17
commit 6a366c99a9

View File

@@ -1,8 +1,11 @@
import logging
import sys
from _typeshed import StrOrBytesPath
from collections.abc import Sequence
from types import SimpleNamespace
logger: logging.Logger
if sys.version_info >= (3, 9):
CORE_VENV_DEPS: tuple[str, ...]