]> granicus.if.org Git - python/commitdiff
Patch #505375: Make doc strings optional.
authorMartin v. Löwis <martin@v.loewis.de>
Sun, 9 Jun 2002 13:41:37 +0000 (13:41 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Sun, 9 Jun 2002 13:41:37 +0000 (13:41 +0000)
Mac/Include/pyconfig.h
PC/os2emx/pyconfig.h
PC/os2vacpp/pyconfig.h
PC/pyconfig.h
RISCOS/pyconfig.h

index 3f719d53db33ff6613d25a7bcaa3369446e2238a..2229df4f0e2908e133dc0b5d71ea1d45a7a0287b 100644 (file)
@@ -300,6 +300,9 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
    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 use the new-style (Openstep, Rhapsody, MacOS)
    dynamic linker (dyld) instead of the old-style (NextStep) dynamic
    linker (rld). Dyld is necessary to support frameworks. */
index a72f9818e72393cfe543c457fe236fd0e66bceb6..d3207d609084879af33b1b27ca310a022e0fdd22 100644 (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
index 1ce73c7e89564c8cec435fa24632e291b4b07569..8a27059ed90f12e925a23371bc76f28d6df382da 100644 (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
index 081142f851cb2e816b94b23d00df28bb184c4293..893db4302d16771dc29dca45cbe687175442f281 100644 (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 */
 
index 7934fa4ea4a78618934a6e7b8d5dbc379ff01d24..12f8fc64976ba739505dfd0ee97b57706804a88f 100644 (file)
    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 use the new-style (Openstep, Rhapsody, MacOS)
    dynamic linker (dyld) instead of the old-style (NextStep) dynamic
    linker (rld). Dyld is necessary to support frameworks. */