From 26d1ff83528c7fea168797a2f075a9f7864b69c4 Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Thu, 25 May 2017 19:33:05 -0700 Subject: [PATCH] add tempfile.TMP_MAX for py3 (#1353) --- stdlib/3/tempfile.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stdlib/3/tempfile.pyi b/stdlib/3/tempfile.pyi index ab8c38099..7c9626087 100644 --- a/stdlib/3/tempfile.pyi +++ b/stdlib/3/tempfile.pyi @@ -8,6 +8,7 @@ from types import TracebackType from typing import Any, AnyStr, Generic, IO, Optional, Tuple, Type # global variables +TMP_MAX: int tempdir = ... # type: Optional[str] template = ... # type: str