summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-04-28 12:29:44 (GMT)
committerGuido van Rossum <guido@python.org>1994-04-28 12:29:44 (GMT)
commita83d954912dfc0d3bb938da234677f410bc35030 (patch)
treed8cdec05a4052eb1aa65f3b8a369f12158981830 /ChangeLog
parentc7b688232664ed8e5ec08b07aae0568c4aa2cd3f (diff)
downloadcpython-a83d954912dfc0d3bb938da234677f410bc35030.zip
cpython-a83d954912dfc0d3bb938da234677f410bc35030.tar.gz
cpython-a83d954912dfc0d3bb938da234677f410bc35030.tar.bz2
zzz
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog42
1 files changed, 40 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 3a685af..f4987ac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,43 @@
+Wed Apr 27 13:15:42 1994 Guido van Rossum (guido@voorn.cwi.nl)
+
+ * Misc/python-mode.el: version 1.09 from Tim (grand new
+ indentation scheme)
+
+ * configure.in: test for setvbuf
+
+ * Python/ceval.c (PRINT_EXPR): assign a non-None value to '_'
+ before printing it
+
+ * Python/compile.c: only call PRINT_EXPR for interactive code
+ (start symbol single_input), else call POP_TOP after evaluating an
+ expression
+
+Tue Apr 26 16:23:06 1994 Guido van Rossum (guido@voorn.cwi.nl)
+
+ * Python/bltinmodule.c (builtin_reduce): added essential INCREF()
+ if a third argument is present
+
+ * Doc/tut.tex: added chapter "Recent Additions"
+
+Mon Apr 25 11:27:09 1994 Guido van Rossum (guido@voorn.cwi.nl)
+
+ * Doc/ref7.tex (section{Function definitions}): add missing '}'.
+
+ * Doc/ref2.tex (subsection{String literals}): documented triple
+ quotes and double quotes.
+
+ * Lib/test/test_grammar.py: added tests for triple-quoted strings
+ and strings continued with backslash-newline
+
+ * Objects/fileobject.c (writestring): don't do anything when
+ writing to a Python object while an error is already set
+
+ * Parser/tokenizer.c: added support for triple-quoted strings and
+ strings continued with backslash
+
+ * Python/compile.c (parsenumber): support triple-quoted strings.
+ Raise SyntaxError, not SystemError for bad number syntax
+
Fri Apr 22 17:39:20 1994 Guido van Rossum (guido@voorn.cwi.nl)
* Objects/{tuple,list,string,mapping}object.c,
@@ -46,8 +86,6 @@ Fri Apr 15 10:10:17 1994 Guido van Rossum (guido@voorn.cwi.nl)
* Doc/libtypes.tex (subsubsection{File Objects}): documented
file.setbufsize
- * Objects/fileobject.c (file_setbufsize): interface to setvbuf
-
Thu Apr 14 12:36:25 1994 Guido van Rossum (guido@voorn.cwi.nl)
* Lib/test/test_thread.py: new module to test threads (very basic)