From ce8d1da5ce2baa16f40f38dcca1f56ce54f53c95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A7=8B=E8=91=89?= Date: Wed, 23 Oct 2019 20:31:44 +0800 Subject: [PATCH] Add sys._debugmallocstats (#3401) --- stdlib/3/sys.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stdlib/3/sys.pyi b/stdlib/3/sys.pyi index 7f16b07d0..14a9721fb 100644 --- a/stdlib/3/sys.pyi +++ b/stdlib/3/sys.pyi @@ -128,6 +128,7 @@ version_info: _version_info def call_tracing(fn: Callable[..., _T], args: Any) -> _T: ... def _clear_type_cache() -> None: ... def _current_frames() -> Dict[int, Any]: ... +def _debugmallocstats() -> None: ... def displayhook(value: Optional[int]) -> None: ... def excepthook(type_: Type[BaseException], value: BaseException, traceback: TracebackType) -> None: ...