]> granicus.if.org Git - python/commitdiff
Clean up some comments and the default VERSION.
authorGuido van Rossum <guido@python.org>
Tue, 23 Jan 2001 01:57:40 +0000 (01:57 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 23 Jan 2001 01:57:40 +0000 (01:57 +0000)
Modules/getpath.c

index 3fd0d8d7afdcf4682f73abb987a1bbbee7bf8eaa..aa5553debae9d7e73d3f66688b5491587794fd85 100644 (file)
@@ -98,7 +98,7 @@
  */
 
 #ifndef VERSION
-#define VERSION "2.0"
+#define VERSION "2.1"
 #endif
 
 #ifndef VPATH
 #endif
 
 #ifndef PYTHONPATH
-/* I know this isn't K&R C, but the Makefile specifies it anyway */
 #define PYTHONPATH PREFIX "/lib/python" VERSION ":" \
              EXEC_PREFIX "/lib/python" VERSION "/lib-dynload"
 #endif
@@ -224,7 +223,7 @@ joinpath(char *buffer, char *stuff)
     buffer[n+k] = '\0';
 }
 
-/* init_path_from_argv0 requirs that path be allocated at least
+/* init_path_from_argv0 requires that path be allocated at least
    MAXPATHLEN + 1 bytes and that argv0_path be no more than MAXPATHLEN
    bytes. 
 */