|
| 1 | +Fri Aug 12 15:00:20 1994 Guido van Rossum ( [email protected]) |
| 2 | + |
| 3 | + * Doc/libfuncs.tex: don't use $math$ in description of pow(x,y,z); |
| 4 | + describe tuple() |
| 5 | + |
| 6 | + * Doc/libposixfile.tex: use tableiii instead of tableii, so |
| 7 | + partparse will work again (I know, chicken!) |
| 8 | + |
| 9 | + * Doc/libthread.tex: Added get_ident(); updated text on module |
| 10 | + availability |
| 11 | + |
| 12 | + * Doc/myformat.perl: Added sub do_cmd_Cpp |
| 13 | + |
| 14 | + * Python/compile.c (com_argdefs, com_arglist): avoid referencing |
| 15 | + CHILD(n,i) for i >= NCH(n) |
| 16 | + |
| 17 | + * Python/bltinmodule.c: added tuple() builtin |
| 18 | + |
| 19 | +Thu Aug 11 16:41:14 1994 Guido van Rossum ( [email protected]) |
| 20 | + |
| 21 | + * Objects/classobject.c, Include/classobject.h: added __getattr__ |
| 22 | + and __setattr__ support to override getattr(x, name) and |
| 23 | + setattr(x, name, value) for class instances. This uses a special |
| 24 | + hack whereby the class is supposed to be static: the __getattr__ |
| 25 | + and __setattr__ methods are looked up only once and saved in the |
| 26 | + instance structure for speed |
| 27 | + |
| 28 | +Wed Aug 10 13:42:29 1994 Guido van Rossum ( [email protected]) |
| 29 | + |
| 30 | + * configure.in, Makefile.in: remove the AC_PREFIX() call -- it's |
| 31 | + more trouble than it's worth at CWI and most other people seem to |
| 32 | + install Python in the default (/usr/local) anway. Changed comment |
| 33 | + describing --prefix in Makefile.in |
| 34 | + |
| 35 | + * Lib/urllib.py (ftpcache): remove debug print statement |
| 36 | + |
| 37 | +Tue Aug 9 14:32:45 1994 Guido van Rossum ( [email protected]) |
| 38 | + |
| 39 | + * Objects/{int,long,float}object.c, Include/object.h, |
| 40 | + Python/bltinmodule.c: mods by Andrew Kuchling to implement |
| 41 | + pow(x,y,z) == pow(x,y)%z, but without incurring overflow |
| 42 | + |
| 43 | + * Python/import.c: if initializing a module did not enter the |
| 44 | + module into sys.modules, it may have raised an exception -- don't |
| 45 | + override this exception. |
| 46 | + |
| 47 | + * Include/rename1.h: added PyMethodDef and PyObject |
| 48 | + |
| 49 | +Mon Aug 8 09:51:08 1994 Guido van Rossum ( [email protected]) |
| 50 | + |
| 51 | + * Doc/{Makefile,*.tex}: Changes by Andrew Kuchling: |
| 52 | + * Added dependencies to the Makefile |
| 53 | + * Added \optional{} commands all over the place (possibly not |
| 54 | + finished yet) |
| 55 | + * Defined \optional and \Cpp in myformat.sty |
| 56 | + * Changed all occurrences of C++ to \Cpp{}, for nicely |
| 57 | + formatting the + signs. |
| 58 | + * Fixed typos, sentence structure in lots of places |
| 59 | + * Added documentation for the rotor module |
| 60 | + * Added a commented-out paragraph to libcrypto.tex that can be |
| 61 | + added once the Python Cryptography Kit is released. |
| 62 | + * Altered the table in libposixfile.tex a bit. |
| 63 | + * Documented socket.gethostname() |
| 64 | + * Started completely rewriting the Extending manual. |
| 65 | + |
| 66 | + * Modules/{Setup.in, gdbmmodule.c}, Doc/{lib,libgdbm}.tex: added |
| 67 | + Anthony Baxter's gdbm module (derived from Jack's dbm module) |
| 68 | + |
1 | 69 | Fri Aug 5 11:43:16 1994 Guido van Rossum ( [email protected]) |
2 | 70 |
|
3 | 71 | * BUGS: new file (merger of unofficial BUGS1.0.x files) |
|
23 | 91 |
|
24 | 92 | * Makefile.in (TAGS): Call etags w/o -t option |
25 | 93 |
|
26 | | - * Lib/rfc822.py: fix two bugs |
| 94 | + * Lib/rfc822.py: fix two bugs: error in readheaders interpreting |
| 95 | + regex.match() result, and wrong logic in getfirstmatchingheader() |
| 96 | + when the same header occurs twice consecutively |
27 | 97 |
|
28 | 98 | * Lib/test/test_types.py (6.4.1): test for particular bug in |
29 | 99 | integer multiply |
|
0 commit comments