From a68aa254d9e6641f58a7c4f45ab20782226fbfc2 Mon Sep 17 00:00:00 2001 From: Guo Ci Date: Tue, 6 Jan 2026 12:22:22 -0500 Subject: [PATCH] [tarfile] Fix `pax_headers` type annotation in tarfile.pyi (#15215) --- stdlib/tarfile.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/tarfile.pyi b/stdlib/tarfile.pyi index 4ef096be3..ba2bd16db 100644 --- a/stdlib/tarfile.pyi +++ b/stdlib/tarfile.pyi @@ -127,7 +127,7 @@ class TarFile: encoding: str | None errors: str fileobject: type[ExFileObject] # undocumented - pax_headers: Mapping[str, str] | None + pax_headers: Mapping[str, str] debug: int | None errorlevel: int | None offset: int # undocumented