From a33025214bf82c668dae9667eb8d3d01aaba9170 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 20 Feb 2011 10:41:31 +0000 Subject: More automated version replacement. --- PC/pyconfig.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'PC/pyconfig.h') diff --git a/PC/pyconfig.h b/PC/pyconfig.h index cbddbd87c9..77d49380b0 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -319,11 +319,11 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */ their Makefile (other compilers are generally taken care of by distutils.) */ # if defined(_DEBUG) -# pragma comment(lib,"python32_d.lib") +# pragma comment(lib,"python33_d.lib") # elif defined(Py_LIMITED_API) # pragma comment(lib,"python3.lib") # else -# pragma comment(lib,"python32.lib") +# pragma comment(lib,"python33.lib") # endif /* _DEBUG */ # endif /* _MSC_VER */ # endif /* Py_BUILD_CORE */ -- cgit v1.2.1 From aae9ecd9c079903bd0736541d806d07878b2b9c6 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Fri, 8 Jul 2011 23:47:50 +0200 Subject: Issue #11863: Remove support for legacy systems deprecated in Python 3.2 (following PEP 11). These systems are systems using Mach C Threads, SunOS lightweight processes, GNU pth threads and IRIX threads. --- PC/pyconfig.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'PC/pyconfig.h') diff --git a/PC/pyconfig.h b/PC/pyconfig.h index 77d49380b0..752d64f2ed 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -711,9 +711,6 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */ /* Define if you have the header file. */ /* #define HAVE_SYS_UTSNAME_H 1 */ -/* Define if you have the header file. */ -/* #undef HAVE_THREAD_H */ - /* Define if you have the header file. */ /* #define HAVE_UNISTD_H 1 */ -- cgit v1.2.1 From d1d013c01c268d869597b35cbcd8b5d7c5baf2ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Wed, 28 Sep 2011 07:41:54 +0200 Subject: Implement PEP 393. --- PC/pyconfig.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'PC/pyconfig.h') diff --git a/PC/pyconfig.h b/PC/pyconfig.h index 752d64f2ed..983fa3d40d 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -550,10 +550,6 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */ /* Define if you want to use the GNU readline library */ /* #define WITH_READLINE 1 */ -/* Define as the size of the unicode type. */ -/* This is enough for unicodeobject.h to do the "right thing" on Windows. */ -#define Py_UNICODE_SIZE 2 - /* Use Python's own small-block memory-allocator. */ #define WITH_PYMALLOC 1 -- cgit v1.2.1