blob: b5df2684094ec82590402da401fb7dfaf8de6a29 [file] [log] [blame]
Guido van Rossum5536a3c1994-01-02 23:28:55 +00001Mon Jan 3 00:02:24 1994 Guido van Rossum (guido@voorn.cwi.nl)
2
Guido van Rossum976877e1994-01-03 14:24:47 +00003 * configure.in: added AC_REVISION call to top
4
5 * Modules/flmodule.c (form_setattr): one NULL should be 0
6
7 * Include/myselect.h: this now implies mytime.h and attempts to
8 work around systems where sys/select.h and sys/time.h can't be
9 included together
10
11 * Modules/socketmodule.c, Doc/libsocket.tex: remove socket avail()
12 method -- you can use select instead
13
14 * Modules/Setup: disable dbm, it is not truly portable
15
16 * Lib/sunau.py: incorporate one-line fix by Sjoerd
17
18 * Include/pgenheaders.h: include <stdlib.h> if its symbol
19 defined, not just on the mac
20
21 * Include/grammar.h: remove redundant structure tags
22
23 * Include/cgensupport.h: avoid possible macro argument
24 substitution inside string literal
25
26 * configure.in, Include/config.h.in: add test whether sys/select.h
27 and sys/times.h can be included by the same program
28
Guido van Rossum313e5cb1994-01-03 03:51:06 +000029 * Include/config.h.in: add lines for HAVE_SYS_UN_H and
30 HAVE_GETPEERNAME
31
32 * Extensions/mkext.py: copy change in library order from
33 Modules/Makefile.in.in
34
35 * Modules/Makefile.in.in: change library order subtly so -ltermcap
36 follows instead of precedes -lgl_s on SGI systems; this solves
37 (hides?) problems with clashing entry points
38
39 * configure.in: added sys/un.h to list of tested header files;
40 added getpeername to list of tested functions (both for
41 Modules/socketmodule.c)
42
43 * Modules/socketmodule.c: conditionally include sys/un.h and
44 change tests for AF_UNIX to tests for HAVE_SYS_UN_H; test for
45 HAVE_GETPEERNAME instead of NO_PEERNAME
46
47 * Modules/config.c.in: add marshal and __main__ built-in modules
48
49 * Python/sysmodule.c (list_builtin_module_names): sort the list
50
Guido van Rossumbbf27191994-01-03 02:11:27 +000051 * Doc/Makefile: remove 'qua' from default targets
52
53 * Doc/README: add reference to ext.tex, change reference to
54 lib*.tex, explain that qua isn't built by default
55
56 * README: explain DESTDIR, clarify install procedure, add more
57 explanation to some options, add description of ChangeLog, add
58 wuarchive.wustl.edu to list of mirror sites
59
60 * Modules/socketmodule.c: make AF_UNIX code dependent on existence
61 of AF_UNIX (SCO ODT 3.0 doesn't support it -- let's hope it
62 doesn't define the symbol either)
63
64 * Makefile: attempt to fix install targets (added separate
65 libinstall and maninstall)
66
67 * Doc/libregex.tex: documented Tracy Tims' changes
68
Guido van Rossum5536a3c1994-01-02 23:28:55 +000069 * Modules/regexpr.c: redid Tracy Tims' changes to minimize diffs
70 (only two added lines now)
71
72 * Modules/regexmodule.c: fix core dump when asking a plain regex
73 object for a named group
74
75Sun Jan 2 23:10:44 1994 Guido van Rossum (guido@voorn.cwi.nl)
76
77 * README, Python/version.c: changed version string to 1.0.0 BETA 2
78
79 * Modules/{regexpr.{c,h},regexmodule.c}: merged in Tracy Tims'
80 mods for named subexpressions
81
82 * Include/regexpr.h: moved to Modules/regexpr.h
83
84 * Modules/timingmodule.c: change tests for no arguments
85
86 * configure.in: remove strtoul from AC_REPLACE_FUNCS; remove
87 initial blank line (which got copied into configure so it wouldn't
88 start with #!/bin/sh as required)
89
90 * Python/compile.c: call mystrto(u)l instrad of strto(u)l
91
92 * Python/Makefile.in: add mystrtoul.c to OBJS
93
94 * Python/mystrtoul.c: renamed from strtol.c; renamed functions to
95 mystrto(u)l; this is now a standard source file (since some
96 systems have a strto(u)l that doesn't report errors properly)
97
98 * Modules/Setup: added entry for timing module
99
100 * Modules/{timing.h,timingmodule.c}: new files implementing GNN's
101 timing module
102
103========================================================================
104Release of 1.0.0 BETA (Jan 1 1994)
105========================================================================
106