Staging
v0.5.1
https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
4040ed0 Add test for mpz module 19 August 1994, 15:09:02 UTC
386a554 Added pathfix 19 August 1994, 15:03:41 UTC
9af22a0 newslist.py: Added search for .newslistrc.py; pindent.py: use /usr/local/bin/python; pathfix.py: new script to fix #! lines in a group of scripts. 19 August 1994, 15:02:57 UTC
72824ba Move all code from version.c into config.c 19 August 1994, 12:03:04 UTC
0c70954 Changes for Mac 19 August 1994, 12:01:32 UTC
a715274 No need to define THINK_C any more 19 August 1994, 11:16:32 UTC
d4d7728 Updates for THINK C 6.0. Moved the necessary UNIX emulation routines here. 19 August 1994, 10:51:31 UTC
e89bc75 Changes for dynamic linking under NT 18 August 1994, 16:18:13 UTC
14aa5da version.c is no longer... 18 August 1994, 16:03:36 UTC
6a3eb5f Changes to make it work and compile on NT, by Mark Hammond. (NT changes for posixmodule.c re-invented by Guido.) 18 August 1994, 15:42:46 UTC
8a38a6b Moved to Include and changed format to "<complete_version>" 17 August 1994, 14:39:22 UTC
a322862 Added #diagram:... comments for Kees Blom's railroad diagram generator 17 August 1994, 13:19:13 UTC
2828e9d * Doc/libstring.tex (section{Standard Module \sectcode{string}}): removed references to {ato{f,i,l},index}_error 17 August 1994, 13:16:34 UTC
710c352 * Lib/string.py: find/rfind is now the main implementation and index/rindex is a wrapper that raises index_error (which is now always ValueError) 17 August 1994, 13:16:11 UTC
5806a4f * Modules/stropmodule.c: implement find/rfind instead of index/rindex (raising and catching an exception is much more expensive than returning and testing -1) 17 August 1994, 13:15:46 UTC
3d67fee The usual 17 August 1994, 12:33:50 UTC
a28f2dc do fake "import posix" for freeze.py script 17 August 1994, 12:33:28 UTC
f8c76d0 1.12 -- new address for fu-berlin mirror, infoseek uses python, more info about windows stdwin, more about gnu getopt, correct typo 17 August 1994, 12:19:53 UTC
2d3a940 delattr, strncopy in parsetok.c 16 August 1994, 22:15:49 UTC
1efbb0f Added docs for delattr 16 August 1994, 22:15:11 UTC
91ab4a8 If an attribute is deleted, __setattr__ is called with 2 instead of 3 arguments (adding __delattr__ was deemed too much overhead) 16 August 1994, 22:13:47 UTC
fda5fb2 The usual 12 August 1994, 13:18:41 UTC
a0e9a77 * configure.in, Makefile.in: remove the AC_PREFIX() call -- it's more trouble than it's worth at CWI and most other people seem to install Python in the default (/usr/local) anway. Changed comment describing --prefix in Makefile.in 12 August 1994, 13:18:25 UTC
3f9a6ec * Lib/rfc822.py: fix two bugs: error in readheaders interpreting regex.match() result, and wrong logic in getfirstmatchingheader() when the same header occurs twice consecutively 12 August 1994, 13:16:50 UTC
dc1cdca Test set for new pow() function 12 August 1994, 13:14:22 UTC
b8b264b * Doc/libfuncs.tex: don't use $math$ in description of pow(x,y,z); describe tuple() * Doc/libposixfile.tex: use tableiii instead of tableii, so partparse will work again (I know, chicken!) * Doc/libthread.tex: Added get_ident(); updated text on module availability * Doc/myformat.perl: Added sub do_cmd_Cpp 12 August 1994, 13:13:50 UTC
0b7d02a New patches by Andrew to fix various problems 12 August 1994, 12:52:35 UTC
e149fa2 * Objects/classobject.c, Include/classobject.h: added __getattr__ and __setattr__ support to override getattr(x, name) and setattr(x, name, value) for class instances. This uses a special hack whereby the class is supposed to be static: the __getattr__ and __setattr__ methods are looked up only once and saved in the instance structure for speed 12 August 1994, 12:49:46 UTC
e025e31 * Include/rename1.h: added PyMethodDef and PyObject 12 August 1994, 12:46:05 UTC
03d8f74 Rewrote sections on GNU readline (now that I'm using 2.0), ftp, and mailing list / newsgroup. 12 August 1994, 12:45:02 UTC
9bb4fd6 * tkintermodule.c (*FileHandler): generalize to arbitrary file ids and objects that hav a fileno() method; fix bug in FileHandler (should call XDECREF instead of DECREF) 09 August 1994, 14:15:19 UTC
75abc63 * Objects/{int,long,float}object.c, Include/object.h, Python/bltinmodule.c: mods by Andrew Kuchling to implement pow(x,y,z) == pow(x,y)%z, but without incurring overflow 09 August 1994, 13:21:54 UTC
fba65fe Tree displaying class 08 August 1994, 12:48:36 UTC
ef8f881 Add Widget.unbind and {Canvas,Text}.tag_unbind. In Widget.__init__, call config only if cnf not empty. 08 August 1994, 12:47:33 UTC
16d6e71 Lots of small corrections by Andrew Kuchling (plus all new rotor docs) 08 August 1994, 12:30:22 UTC
4b4c664 * Modules/{Setup.in, gdbmmodule.c}, Doc/{lib,libgdbm}.tex: added Anthony Baxter's gdbm module (derived from Jack's dbm module) 08 August 1994, 08:06:37 UTC
b69e095 Added gdbm docs 08 August 1994, 08:03:24 UTC
e06752b Added cheatsheet 05 August 1994, 15:57:47 UTC
c8180cc Very useful file! 05 August 1994, 15:57:31 UTC
14cbecc Some new names... 05 August 1994, 15:56:13 UTC
5552eb7 * BUGS: new file (merger of unofficial BUGS1.0.x files) * Makefile.in (TAGS): Call etags w/o -t option 05 August 1994, 15:51:00 UTC
c65a525 * Modules/{Setup.in,Makefile.pre.in}: renamed some modules to shorter names (dropped the "module" from the name): sunaudiodev, imgformat, audioop, imageop, imgfile * Modules/stropmodule.c (strop_rindex): make rindex('abc', '') do the right thing (i.e. return 3 instead of 0) * Modules/socketmodule.c: disabled allowbroadcast() socket method 05 August 1994, 13:44:50 UTC
781db5d * Doc/libsocket.tex (subsection{Socket Object Methods}): documented gethostname() and a few misc things 05 August 1994, 13:37:36 UTC
3d0df46 AttrDialog.py: some structural changes listtree.py: "Print" -> "List" in description 03 August 1994, 08:10:35 UTC
d7b1948 Use new packing and 'name' in cnf dict 03 August 1994, 08:08:26 UTC
e2ca9bd * tkintermodule.c: OK, I've fixed the "tty" problem. You're right no need for the stdin handler, a Tk_DoOneEvent(TK_DONT_WAIT) did the trick. I've included a diff to tkintermodule.c. 03 August 1994, 08:01:43 UTC
46f2402 Strange... levels 1 and 2 were never committed? 01 August 1994, 13:16:27 UTC
379dc58 Move to revision level 2 (like the other files) 01 August 1994, 12:51:49 UTC
e7af5a0 Merge lost alpha100 revision 01 August 1994, 12:39:35 UTC
e991496 Merge lost revisions back 01 August 1994, 12:38:14 UTC
6938f06 Merge alpha100 branch back to main trunk 01 August 1994, 12:22:53 UTC
ab3a250 libsocket.tex: send[to] returns nbytes. libstring.tex: added count(). ref2.tex: new keywords; moved keyword printing program to keywords.py. 01 August 1994, 12:18:36 UTC
7f43da7 Merge rev alpha100 bck into main trunk 01 August 1994, 12:15:30 UTC
433c8ad Merge alpha100 branch back to main trunk 01 August 1994, 12:07:07 UTC
761c7a3 The usual 01 August 1994, 12:04:41 UTC
b6775db Merge alpha100 branch back to main trunk 01 August 1994, 11:34:53 UTC
2979b01 Merge changes 01 August 1994, 11:18:30 UTC
da5d518 Bring alpha100 revision back to mainline 01 August 1994, 11:00:20 UTC
16c40cd small usage note change 25 July 1994, 21:58:11 UTC
b5ddae7 small change in message 25 July 1994, 21:57:27 UTC
efae52e Initial revision 25 July 1994, 21:52:13 UTC
3de2736 Version 1.11 -- added several new answers on design questions 25 July 1994, 14:19:33 UTC
5f47e57 * Lib/mhlib.py (removefromallsequences): call putsequences with proper argument * Lib/{bdb,cmd,pdb}.py: Mods by Rickard Westman: No longer barfs on lambda:s (outputs "<lambda>" as the function name); "a(rgs)" in pdb now works; help messages added to pdb (lifted from pdb.doc). Also, "h pdb" calls pdb.help(). cmd.do_help() displays topics on a nicer way (I think). Also, topics for which there is a help_ method, but no do_method (like "pdb" above) are displayed in a special way. My own mod: fix break on function to also support methods. 14 July 1994, 14:01:00 UTC
8c97365 ACKS: some new names; NEWS: 1.0.3 14 July 1994, 13:57:11 UTC
e44e373 Added some names to Setup.in, and added syslogmodule.c. posixmodule.c: use pclose, not fclose! selectmodule.c: trap negative fileno's, change some error messages. stropmodule.c: change semantics of rindex to match string.py. 14 July 1994, 13:56:50 UTC
64ea535 Released 1.0.3. configure*: don't check for strtod! 14 July 1994, 13:47:08 UTC
ea2c6f7 rtfm.mit.edu IP number; unix.hensa.ac.uk mirror site 14 July 1994, 12:35:14 UTC
78b0c82 Made refile work -- basically set exportselection to 0 for list of folders, then fix minor bugs and remove debug print statement. Also needs a fix to mhlib.py 13 July 1994, 16:53:32 UTC
74f2565 Added comment about need of OO style 13 July 1994, 13:08:01 UTC
e7e8d1e Change remote operation -- display the widget tree in a listbox and open relevant dialogs on double click 13 July 1994, 12:56:10 UTC
3284abe Initial revision 13 July 1994, 12:54:42 UTC
50f437c Added names to demo widgets; added RemoteWidgetDialog. 12 July 1994, 16:37:21 UTC
3e4f182 Added names to all widgets 12 July 1994, 16:35:35 UTC
28bb652 correct typo 12 July 1994, 15:55:43 UTC
b78e03c Complete redesign for more code sharing. Added readonly options, used for .class field. 12 July 1994, 15:53:26 UTC
27b77a4 read various startup files in Tcl and Python based upon className and baseName. 12 July 1994, 15:52:32 UTC
5e0c25b Fix bug in At() (Steen) 12 July 1994, 09:04:41 UTC
c618ed9 Use disabled state to enforce read-only state (bit painful since it means switching states each time we insert some text but has to be done this way since else class bindings might allow editing...) 12 July 1994, 09:00:42 UTC
3e395be Initial revision 12 July 1994, 08:58:25 UTC
69170c5 Make Pack.newinfo() return a dict 11 July 1994, 15:21:31 UTC
36ea0e7 Add menu to change directories -- also generalize acceptable names from *.n into *.[ln123456789] 11 July 1994, 13:15:05 UTC
0f650f4 Use guido's Python 08 July 1994, 15:11:08 UTC
18886ab Initial revision 08 July 1994, 15:08:55 UTC
119749b Adapted to new async ManPage interface (kill, busy); Added case sensitive searching; Added explicit buttons for man page display and search (in addition to <Return> and double clicking in the listbox) 08 July 1994, 14:28:38 UTC
7d5e421 Rewritten somewhat again, distinguished between internal and external methods (internal ones start with '_'), asynchronous transfers are now killed synchronously (i.e. after t.kill(), t.busy() is false immediately). 08 July 1994, 14:15:05 UTC
9755b26 Always insert at 'end' 08 July 1994, 09:17:26 UTC
fdfa2b5 parsefile() now calls self.update() while filling the buffer, so you can read the top of the man page while the rest is being parsed 08 July 1994, 09:14:54 UTC
97aeca1 Added _exit and register as Tcl command exit. Micro lay-out fix. 07 July 1994, 13:12:12 UTC
d308e2b * tkintermodule.c (PyInit_tkinter): Only create stdin file handler when stdin is a tty. (Tkinter_Cleanup): New function. This is an exit handler that cleanup Tk. 07 July 1994, 09:25:12 UTC
460b6bb Totally changed, now it is actually derived from Text (This breaks something in MimeViewer.py, don't know what yet) 06 July 1994, 21:54:39 UTC
72cb020 Don't use self.text -- it's self now! 06 July 1994, 21:53:18 UTC
f09b770 Initial revision 06 July 1994, 21:17:21 UTC
5113569 tag_remove: add tagName to tk call 06 July 1994, 21:16:58 UTC
5179236 Added bind and tag_config methods; minor lay-out change 06 July 1994, 21:15:27 UTC
2a39031 Remove garbage '+ ' and reformat tag_delete function budy 06 July 1994, 10:20:11 UTC
a3cd357 * ScrolledText.py: added some more methods of Text (This should really be done differently, e.g. by deriving from the Text class.) 06 July 1994, 09:28:21 UTC
639b8b8 Misc changes by Steen 06 July 1994, 09:27:00 UTC
e20864d * kill.py: Don't use the exec Tcl command. 06 July 1994, 09:26:20 UTC
2dcf529 Tue Jul 5 13:22:45 1994 (lumholt@login.dkuug.dk) * Setup.in: moreButtons Tk extension support (again). * mklibapp: $1 is now the path to the Tk extension source directory. The default is /usr/local/src/tcl. * kill.py: Don't use the exec Tcl command. * Tkinter.py (Misc.bind_all): Bug fix; extra graves. (Misc.tk_strictMotif): Return the value. (mainloop, getint, getdouble, getboolean): New functions. (_cnfmerge): Flatten cnfs. Wed Jun 29 22:01:17 1994 Steen Lumholt (lumholt@login.dkuug.dk) * Tkinter.py: (Tk.destroy): master is always None; so don't del. Found by Tommy Burnette, solution from Guido van Rossum. (Misc.selection_get): Missing return. Found by Richard Neitzel. (Misc._options, Widget.config, Canvas._create): If cnf is a tuple or list then merge the contents. Suggested by Matthew Conway. 06 July 1994, 09:23:20 UTC
cd3c042 ... 04 July 1994, 22:15:27 UTC
back to top