diff options
author | Guido van Rossum <guido@python.org> | 1993-01-04 09:09:59 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-01-04 09:09:59 (GMT) |
commit | a2b7f40513ba5d75a2063c3fabe47377cd8c0416 (patch) | |
tree | a49810320cbb0291ed16424b8d7ca980b5c2b1b1 /Modules/config.c.in | |
parent | 349f2b516b89c46f915a57029ed2bd33f85ff363 (diff) | |
download | cpython-a2b7f40513ba5d75a2063c3fabe47377cd8c0416.zip cpython-a2b7f40513ba5d75a2063c3fabe47377cd8c0416.tar.gz cpython-a2b7f40513ba5d75a2063c3fabe47377cd8c0416.tar.bz2 |
* Configure.py: use #!/usr/local/bin/python
* posixmodule.c: move extern function declarations to top
* listobject.c: cmp() arguments must be void* if __STDC__
* Makefile, allobjects.h, panelmodule.c, modsupport.c: get rid of
strdup() -- it is a portability risk
* Makefile: enclosed ranlib command in parentheses for Sequent Make
which aborts if the command is not found even if '-' is present
* timemodule.c: time() returns a floating point number, in microsecond
precision if BSD_TIME is defined.
Diffstat (limited to 'Modules/config.c.in')
-rw-r--r-- | Modules/config.c.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in index 6189c33..cfe82d7 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -45,7 +45,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #ifdef __DATE__ #define DATE __DATE__ #else -#define DATE ">= 10 Aug 1992" +#define DATE ">= 1 Jan 1993" #endif #include <stdio.h> |