Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7b4d460

Browse files
committed
the usual
1 parent 795a48c commit 7b4d460

4 files changed

Lines changed: 102 additions & 7 deletions

File tree

BUGS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ nother to make an entry in this file, unless it was a serious bug
99

1010
======================================================================
1111

12+
(-) "f()=0" generates syntax error msg without line number
13+
14+
======================================================================
15+
1216
Known BUGS in 1.2 BETA 1, fixed in 1.2 BETA 2
1317
---------------------------------------------
1418

ChangeLog

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,81 @@
1+
2+
========================================
3+
==> Release 1.2 BETA 4 (21 Mar 1995) <==
4+
========================================
5+
6+
Tue Mar 21 13:28:32 1995 Guido van Rossum <[email protected]>
7+
8+
* Python/ceval.c (call_object): removed #ifdef'ed out code
9+
10+
Mon Mar 20 17:14:14 1995 Guido van Rossum <[email protected]>
11+
12+
* Lib/copy.py (_copy_dispatch): fix typo in hasattr() exprs
13+
14+
Sat Mar 18 00:04:14 1995 Guido van Rossum <[email protected]>
15+
16+
* Makefile.in: change -f Makefile.in to -f $(srcdir)/Makefile.in
17+
18+
Fri Mar 17 10:52:07 1995 Guido van Rossum <[email protected]>
19+
20+
* Lib/tkinter/Tkinter.py: add TkVersion and TclVersion variables;
21+
handle crash in callback different (don't drop into debugger); add
22+
_getdoubles() and streamline _getints()
23+
24+
* Doc/lib*.tex: mass update
25+
26+
* Doc/partparse.py: fix several small things so it doesn't crash
27+
so easily
28+
29+
* Modules/threadmodule.c: change exit_thread so it raises
30+
SystemExit -- this allow proper cleanup in t_bootstrap
31+
32+
* Makefile.in (distclean): add -f Makefile.in (John Interrante)
33+
34+
Thu Mar 16 13:35:25 1995 Guido van Rossum <[email protected]>
35+
36+
* Doc/ref*.tex: made palatable to latex2html -- basically rewrote
37+
all math using \code{} and \var{} (and pow() and some integer
38+
literals), and added braces to some \item[]s containing \tt
39+
40+
* Modules/socketmodule.c: fixed up comments describing interface
41+
42+
* Lib/test/test_signal.py: new module to test signal module
43+
44+
Wed Mar 15 11:07:43 1995 Guido van Rossum <[email protected]>
45+
46+
* Modules/signalmodule.c (PySignal_Signal): use PyCallable_Check
47+
where suitable; split some lines
48+
49+
* Lib/posixfile.py (open) defaults mode='r', bufsize=-1
50+
51+
Tue Mar 14 10:42:39 1995 Guido van Rossum <[email protected]>
52+
53+
* Lib/copy.py: rename copy.Error to copy.error
54+
55+
* Lib/cgi.py: correct some typos that broke escape() and print_form()
56+
57+
* Lib/string.py: add (unsupported) optional base argument to
58+
atoi() and atol(); be more careful about very negative start
59+
indices in [r]find() and count()
60+
61+
* Modules/timemodule.c: tiny additions for Windows 3.1
62+
63+
* Modules/gdbmmodule.c: plugged some memory leaks (Steve Clift)
64+
65+
* Modules/socketmodule.c (makefile): made mode optional and added
66+
optional buffer size, like built-in open()
67+
68+
Mon Mar 13 11:26:20 1995 Guido van Rossum <[email protected]>
69+
70+
* Lib/pickle.py: added ability to pickle classes (could be used
71+
for exceptions in RPC); made format_version non-hidden variable,
72+
added compatible_formats variable, added shorthand functions
73+
dump(), load(), dumps() and loads() -- similar to marshal
74+
75+
* Python/pythonrun.c (fatal): In NT, write msg to debugging device
76+
77+
* Doc/lib*.tex: small changes by Soren Larsen
78+
179
Thu Mar 9 15:06:02 1995 Guido van Rossum <[email protected]>
280

381
* Lib/pickle.py: added explicit exception for unpicklable object

Makefile.in

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,13 +237,14 @@ clobber: localclobber
237237
(echo $$i; cd $$i; \
238238
if test -f Makefile; \
239239
then $(MAKE) clobber; \
240-
else $(MAKE) -f Makefile.in clobber; \
240+
else $(MAKE) -f $(srcdir)/Makefile.in clobber; \
241241
fi); \
242242
done
243243

244244
# Make things extra clean, before making a distribution
245245
distclean: clobber
246-
-$(MAKE) SUBDIRS="$(SUBDIRSTOO)" clobber
246+
-$(MAKE) -f $(srcdir)/Makefile.in \
247+
SUBDIRS="$(SUBDIRSTOO)" clobber
247248
-rm -f config.status config.log config.cache config.h Makefile
248249
-for i in $(SUBDIRS) $(SUBDIRSTOO); do \
249250
for f in $$i/*.in; do \

TODO

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,32 @@
1-
(-) always use my getopt.c
1+
(-) support lists in newgetargs()
22

3-
(-) get Extensions/X11/Doc checked in and out
3+
(-) syntax errors detected during compilation should give line number
4+
5+
(-) dbm.open(): rwmode, filemode should be made optional; same for gdbm
6+
7+
(-) find a bsd hash interface
8+
9+
(-) posix.mkdir(): mode should be made optional
10+
11+
(-) find a more useful order than alphabetical for Doc/libfuncs.tex
12+
13+
======================================================================
14+
15+
(*) use my getopt.c on Linux
16+
17+
(*) get Extensions/X11/Doc checked in and out
418

519
(-) investigate PPRC <URL:ftp://ftp.parc.xerox.com/pub/ppcr/>
620

721
(*) add buffering parameter to fdopen() and popen()
822

9-
(-) "f()=0" generates syntax error msg without line number
10-
1123
(-) interface to getdtablesize() in posix
1224

1325
(-) reentrancy with global variables vs. decref in
1426
./Modules/cdmodule.c ./Modules/flmodule.c ./Objects/accessobject.c
1527
./Objects/frameobject.c ./Python/traceback.c
1628

17-
(-) check reentrancy in list updates?
29+
(*) fix reentrancy in list updates?
1830

1931
(-) speed up regsub.gsub
2032

0 commit comments

Comments
 (0)