summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-08-01 12:04:41 (GMT)
committerGuido van Rossum <guido@python.org>1994-08-01 12:04:41 (GMT)
commit761c7a323c65f869ad851dbce48881a47d84a863 (patch)
treeab4166efdc3b94beda60e76f7351861e433be14f /ChangeLog
parentb6775db241f5fe5e3dc2ca09fc6c9e6164d4b2af (diff)
downloadcpython-761c7a323c65f869ad851dbce48881a47d84a863.zip
cpython-761c7a323c65f869ad851dbce48881a47d84a863.tar.gz
cpython-761c7a323c65f869ad851dbce48881a47d84a863.tar.bz2
The usual
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog39
1 files changed, 39 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index cc0028a..68bdd88 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,42 @@
+Mon Aug 1 01:28:29 1994 Guido van Rossum (guido@voorn.cwi.nl)
+
+ * Lib/test/test_types.py (6.4.1): test for particular bug in
+ integer multiply
+
+Sat Jul 30 13:31:40 1994 Guido van Rossum (guido@voorn.cwi.nl)
+
+ * Doc/libsocket.tex, Modules/socketmodule.c: send() and sendto()
+ now return actual byte count (useful for sockets in non-blocking
+ mode)
+
+Tue Jul 26 14:21:17 1994 Guido van Rossum (guido@voorn.cwi.nl)
+
+ * configure.in: check for <limits.h>
+
+ * Objects/longobject.c (newlongobject): fix long(0x80000000) and
+ add warning that it isn't actually correct on 64-bit machines;
+ include <limits.h> if HAVE_LIMITS_H is defined
+
+ * Objects/intobject.c (int_mul): check int*int overflow without
+ resorting to double precision (many thanks to John Tromp)
+
+ * Modules/signalmodule.c (signal_alarm): interface to Posix alarm()
+
+ * Python/ceval.c (call_object): print message before abort()
+
+Mon Jul 25 11:30:56 1994 Guido van Rossum (guido@voorn.cwi.nl)
+
+ * Doc/libstring.tex (section{Standard Module \sectcode{string}}):
+ documented string.count()
+
+ * Lib/string.py: added count(s, sub, i=0), returns number of
+ occurrences of sub in s[i:]
+
+ * Doc/keywords.py: program to sort table of keywords in ref2.tex
+
+ * Doc/ref2.tex (subsection{Keywords}): add 'access' and 'lambda'
+ to list of reserved words
+
Thu Jul 14 15:26:14 1994 Guido van Rossum (guido@voorn.cwi.nl)
* README, Misc/NEWS, Python/patchlevel.h,