summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-11-10 23:06:54 (GMT)
committerGuido van Rossum <guido@python.org>1994-11-10 23:06:54 (GMT)
commit5dee5e7dc0ba0a15a0b41fcaaf6b0577cabd4ea3 (patch)
treea9caf24417a1f6d5a8f7a84e8d64b750a328347b /ChangeLog
parent635649f90f69b7183a68df1d51e7875639bcdb8c (diff)
downloadcpython-5dee5e7dc0ba0a15a0b41fcaaf6b0577cabd4ea3.zip
cpython-5dee5e7dc0ba0a15a0b41fcaaf6b0577cabd4ea3.tar.gz
cpython-5dee5e7dc0ba0a15a0b41fcaaf6b0577cabd4ea3.tar.bz2
bugfix release
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog47
1 files changed, 47 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 307ead9..949ffe2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,50 @@
+
+===================================
+==> Release 1.1.1 (10 Nov 1994) <==
+===================================
+
+Thu Nov 10 13:09:26 1994 Guido van Rossum <guido@tesla>
+
+ * Objects/classobject.c (instance_compare): don't ever raise an
+ exception or return -2
+
+ * Python/compile.c: stick "<lambda>" in function name instead of
+ NULL or None
+
+ * Doc/tut.tex: corrected a few typos
+
+ * Modules/tkintermodule.c: added timer and file handler interfaces
+ and made mainloop/quit global functions (as well still being tk
+ methods)
+
+ * Modules/newmodule.c: made it compile on SunOS4.1.3 (there were
+ continuation backslashes on non-cpp lines :-)
+
+ * Modules/gdbmmodule.c: fix some bugs (freed the wrong objects)
+
+ * Modules/Setup.in: clarified some things a little in the comments
+
+ * Modules/Makefile.pre.in (sharedinstall): don't fail if there
+ aren't any shared modules
+
+ * Include/structmember.h: include stddef.h (for offsetof)
+
+ * Include/rename1.h: added PyArg_ParseTuple for newgetargs
+
+ * Python/bltinmodule.c: fix core dump in pow() (should be declared
+ varargs in methodlist array)
+
+ * Python/ceval.c: replace abort() calls with fatal() calls
+
+ * Python/errors.c (err_setval): call err_clear() to clear existing
+ error instead of calling XDECREF
+
+ * Python/getargs.c: fix core dump when old style call expecting
+ some arguments receives none
+
+ * Lib/test/{test_b[12].py,testall.out}: added more tests (now all
+ built-ins are covered again)
+
Thu Oct 20 08:31:02 1994 Guido van Rossum <guido@tesla>
* Modules/makesetup: should use $cc not cc