Patch #505375: Make doc strings optional.

This commit is contained in:
Martin v. Löwis 2002-06-09 13:41:37 +00:00
parent a3fb4f7816
commit 2befa48926
5 changed files with 15 additions and 0 deletions

View file

@ -32,6 +32,9 @@
/* enable the GC module */
#define WITH_CYCLE_GC 1
/* Define if you want documentation strings in extension modules */
#define WITH_DOC_STRINGS 1
/* Unicode related */
#define Py_USING_UNICODE
#define PY_UNICODE_TYPE wchar_t

View file

@ -202,6 +202,9 @@ typedef int pid_t;
/* #define HAVE_UNISTD_H 1 */ /* #include <unistd.h> */
/* #define HAVE_UNAME 1 */ /* uname () */
/* Define if you want documentation strings in extension modules */
#define WITH_DOC_STRINGS 1
#ifdef USE_DL_EXPORT
#define DL_IMPORT(RTYPE) RTYPE _System
#endif

View file

@ -481,6 +481,9 @@ typedef int pid_t;
shared libraries */
/* #undef WITH_DL_DLD */
/* Define if you want documentation strings in extension modules */
#define WITH_DOC_STRINGS 1
/* Define if you want to compile in rudimentary thread support */
/* #undef WITH_THREAD */