From 0392ccaa9c7c4e3ff18d63a9f07a0fb6e6bd8224 Mon Sep 17 00:00:00 2001 From: jgarvin Date: Tue, 13 Dec 2016 16:56:06 -0600 Subject: [PATCH] Add stub for _thread.get_ident() (#746) --- stdlib/3/_thread.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stdlib/3/_thread.pyi b/stdlib/3/_thread.pyi index fb45d933f..a8e38a91a 100644 --- a/stdlib/3/_thread.pyi +++ b/stdlib/3/_thread.pyi @@ -12,3 +12,4 @@ class LockType: def release(self) -> None: ... def allocate_lock() -> LockType: ... +def get_ident() -> int: ...