blob: 81a3a3584049dbb6d216f59a8a229a974f8ad349 [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 Rossum313e5cb1994-01-03 03:51:06 +00003 * Include/config.h.in: add lines for HAVE_SYS_UN_H and
4 HAVE_GETPEERNAME
5
6 * Extensions/mkext.py: copy change in library order from
7 Modules/Makefile.in.in
8
9 * Modules/Makefile.in.in: change library order subtly so -ltermcap
10 follows instead of precedes -lgl_s on SGI systems; this solves
11 (hides?) problems with clashing entry points
12
13 * configure.in: added sys/un.h to list of tested header files;
14 added getpeername to list of tested functions (both for
15 Modules/socketmodule.c)
16
17 * Modules/socketmodule.c: conditionally include sys/un.h and
18 change tests for AF_UNIX to tests for HAVE_SYS_UN_H; test for
19 HAVE_GETPEERNAME instead of NO_PEERNAME
20
21 * Modules/config.c.in: add marshal and __main__ built-in modules
22
23 * Python/sysmodule.c (list_builtin_module_names): sort the list
24
Guido van Rossumbbf27191994-01-03 02:11:27 +000025 * Doc/Makefile: remove 'qua' from default targets
26
27 * Doc/README: add reference to ext.tex, change reference to
28 lib*.tex, explain that qua isn't built by default
29
30 * README: explain DESTDIR, clarify install procedure, add more
31 explanation to some options, add description of ChangeLog, add
32 wuarchive.wustl.edu to list of mirror sites
33
34 * Modules/socketmodule.c: make AF_UNIX code dependent on existence
35 of AF_UNIX (SCO ODT 3.0 doesn't support it -- let's hope it
36 doesn't define the symbol either)
37
38 * Makefile: attempt to fix install targets (added separate
39 libinstall and maninstall)
40
41 * Doc/libregex.tex: documented Tracy Tims' changes
42
Guido van Rossum5536a3c1994-01-02 23:28:55 +000043 * Modules/regexpr.c: redid Tracy Tims' changes to minimize diffs
44 (only two added lines now)
45
46 * Modules/regexmodule.c: fix core dump when asking a plain regex
47 object for a named group
48
49Sun Jan 2 23:10:44 1994 Guido van Rossum (guido@voorn.cwi.nl)
50
51 * README, Python/version.c: changed version string to 1.0.0 BETA 2
52
53 * Modules/{regexpr.{c,h},regexmodule.c}: merged in Tracy Tims'
54 mods for named subexpressions
55
56 * Include/regexpr.h: moved to Modules/regexpr.h
57
58 * Modules/timingmodule.c: change tests for no arguments
59
60 * configure.in: remove strtoul from AC_REPLACE_FUNCS; remove
61 initial blank line (which got copied into configure so it wouldn't
62 start with #!/bin/sh as required)
63
64 * Python/compile.c: call mystrto(u)l instrad of strto(u)l
65
66 * Python/Makefile.in: add mystrtoul.c to OBJS
67
68 * Python/mystrtoul.c: renamed from strtol.c; renamed functions to
69 mystrto(u)l; this is now a standard source file (since some
70 systems have a strto(u)l that doesn't report errors properly)
71
72 * Modules/Setup: added entry for timing module
73
74 * Modules/{timing.h,timingmodule.c}: new files implementing GNN's
75 timing module
76
77========================================================================
78Release of 1.0.0 BETA (Jan 1 1994)
79========================================================================
80