]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Moved definition of search path DELIM here (from sysmodule.c).
authorGuido van Rossum <guido@python.org>
Mon, 23 Mar 1992 18:20:32 +0000 (18:20 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 23 Mar 1992 18:20:32 +0000 (18:20 +0000)
Include/osdefs.h

index f09b88d211d09e173c53cd8e13d3d370268f03f9..938394308cd5d948b1f4a509e421f17afc94f069 100644 (file)
@@ -27,17 +27,26 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 #ifdef macintosh
 #define SEP ':'
 #define MAXPATHLEN 256
+#define DELIM ' '
 #endif
 
 #ifdef MSDOS
 #define SEP '\\'
 #define MAXPATHLEN 256
+#define DELIM ';'
 #endif
 
+/* Filename separator */
 #ifndef SEP
 #define SEP '/'
 #endif
 
+/* Max pathname length */
 #ifndef MAXPATHLEN
 #define MAXPATHLEN 1024
 #endif
+
+/* Search path entry delimiter */
+#ifndef DELIM
+#define DELIM ':'
+#endif