From fdaeea620f8c78da89cddba4ab010c64535800e0 Mon Sep 17 00:00:00 2001 From: Masayuki Yamamoto Date: Fri, 5 May 2017 17:04:13 +0900 Subject: bpo-30279: Remove unused Python/thread_foobar.h (#1473) Python/thread_foobar.h is the template code that is threading adaptation for new platforms, also hasn't been used on actual platforms. Python/thread_*.h give concrete examples of adaptation instead of the template code. --- Python/thread.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'Python/thread.c') diff --git a/Python/thread.c b/Python/thread.c index 3a52e1e892..8fa978abd8 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -92,12 +92,6 @@ static size_t _pythread_stacksize = 0; #endif -/* -#ifdef FOOBAR_THREADS -#include "thread_foobar.h" -#endif -*/ - /* return the current thread stack size */ size_t PyThread_get_stacksize(void) -- cgit v1.2.1