From 68306484ae3255d5300fb430d97d48c3fc991e16 Mon Sep 17 00:00:00 2001 From: Pas Date: Mon, 11 Apr 2016 06:42:49 +0200 Subject: [PATCH] py3: traceback.pyi: added format_stack (#125) --- stdlib/3/traceback.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stdlib/3/traceback.pyi b/stdlib/3/traceback.pyi index de7d74b9c..9d4d2fd9b 100644 --- a/stdlib/3/traceback.pyi +++ b/stdlib/3/traceback.pyi @@ -13,5 +13,6 @@ def format_exc(limit: int = ..., chain: bool = ...) -> str: ... def extract_stack(f=..., limit=...): ... def extract_tb(traceback, limit=...): ... def format_list(list): ... +def format_stack(f=..., limit=...) -> List[str]: ... # TODO add more