summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Test set for new pow() functionGuido van Rossum1994-08-121-0/+92
|
* * Doc/libfuncs.tex: don't use $math$ in description of pow(x,y,z);Guido van Rossum1994-08-127-28/+69
| | | | | | | | | | | | 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
* New patches by Andrew to fix various problemsGuido van Rossum1994-08-121-5/+24
|
* * Objects/classobject.c, Include/classobject.h: added __getattr__Guido van Rossum1994-08-122-17/+111
| | | | | | | | 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
* * Include/rename1.h: added PyMethodDef and PyObjectGuido van Rossum1994-08-121-0/+2
|
* Rewrote sections on GNU readline (now that I'm using 2.0), ftp, andGuido van Rossum1994-08-121-42/+47
| | | | mailing list / newsgroup.
* * tkintermodule.c (*FileHandler): generalize to arbitrary file idsGuido van Rossum1994-08-091-10/+48
| | | | | and objects that hav a fileno() method; fix bug in FileHandler (should call XDECREF instead of DECREF)
* * Objects/{int,long,float}object.c, Include/object.h,Guido van Rossum1994-08-091-1/+2
| | | | | Python/bltinmodule.c: mods by Andrew Kuchling to implement pow(x,y,z) == pow(x,y)%z, but without incurring overflow
* Tree displaying classGuido van Rossum1994-08-081-0/+23
|
* Add Widget.unbind and {Canvas,Text}.tag_unbind.Guido van Rossum1994-08-082-4/+18
| | | | In Widget.__init__, call config only if cnf not empty.
* Lots of small corrections by Andrew Kuchling (plus all new rotor docs)Guido van Rossum1994-08-0862-282/+520
|
* * Modules/{Setup.in, gdbmmodule.c}, Doc/{lib,libgdbm}.tex: addedGuido van Rossum1994-08-082-1/+284
| | | | Anthony Baxter's gdbm module (derived from Jack's dbm module)
* Added gdbm docsGuido van Rossum1994-08-084-0/+62
|
* Added cheatsheetGuido van Rossum1994-08-051-0/+1
|
* Very useful file!Guido van Rossum1994-08-051-0/+541
|
* Some new names...Guido van Rossum1994-08-051-0/+3
|
* * BUGS: new file (merger of unofficial BUGS1.0.x files)Guido van Rossum1994-08-054-3/+194
| | | | * Makefile.in (TAGS): Call etags w/o -t option
* * Modules/{Setup.in,Makefile.pre.in}: renamed some modules toGuido van Rossum1994-08-055-10/+21
| | | | | | | | | | 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
* * Doc/libsocket.tex (subsection{Socket Object Methods}):Guido van Rossum1994-08-052-6/+24
| | | | documented gethostname() and a few misc things
* AttrDialog.py: some structural changesGuido van Rossum1994-08-032-29/+45
| | | | listtree.py: "Print" -> "List" in description
* Use new packing and 'name' in cnf dictGuido van Rossum1994-08-032-6/+10
|
* * tkintermodule.c: OK, I've fixed the "tty" problem. You're rightGuido van Rossum1994-08-031-14/+1
| | | | | no need for the stdin handler, a Tk_DoOneEvent(TK_DONT_WAIT) did the trick. I've included a diff to tkintermodule.c.
* Strange... levels 1 and 2 were never committed?Guido van Rossum1994-08-011-1/+1
|
* Move to revision level 2 (like the other files)Guido van Rossum1994-08-010-0/+0
|
* Merge lost alpha100 revisionGuido van Rossum1994-08-011-3/+3
|
* Merge lost revisions backGuido van Rossum1994-08-016-262/+308
|
* Merge alpha100 branch back to main trunkGuido van Rossum1994-08-0127-1526/+2934
|
* libsocket.tex: send[to] returns nbytes.Guido van Rossum1994-08-016-4/+56
| | | | | libstring.tex: added count(). ref2.tex: new keywords; moved keyword printing program to keywords.py.
* Merge rev alpha100 bck into main trunkGuido van Rossum1994-08-011-497/+1521
|
* Merge alpha100 branch back to main trunkGuido van Rossum1994-08-014-128/+1014
|
* The usualGuido van Rossum1994-08-011-0/+39
|
* Merge alpha100 branch back to main trunkGuido van Rossum1994-08-01176-3596/+5230
|
* Merge changesGuido van Rossum1994-08-011-39/+57
|
* Bring alpha100 revision back to mainlineGuido van Rossum1994-08-011-3/+12
|
* small usage note changeBarry Warsaw1994-07-251-1/+1
|
* small change in messageBarry Warsaw1994-07-251-1/+1
|
* Initial revisionBarry Warsaw1994-07-251-0/+146
|
* Version 1.11 -- added several new answers on design questionsGuido van Rossum1994-07-251-18/+132
|
* * Lib/mhlib.py (removefromallsequences): call putsequences withGuido van Rossum1994-07-141-1/+1
| | | | | | | | | | | | | 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.
* ACKS: some new names; NEWS: 1.0.3Guido van Rossum1994-07-142-0/+22
|
* Added some names to Setup.in, and added syslogmodule.c.Guido van Rossum1994-07-141-0/+199
| | | | | | 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.
* Released 1.0.3.Guido van Rossum1994-07-141-1/+149
| | | | configure*: don't check for strtod!
* rtfm.mit.edu IP number; unix.hensa.ac.uk mirror siteGuido van Rossum1994-07-141-3/+4
|
* Made refile work -- basically set exportselection to 0 for list ofGuido van Rossum1994-07-131-8/+5
| | | | | folders, then fix minor bugs and remove debug print statement. Also needs a fix to mhlib.py
* Added comment about need of OO styleGuido van Rossum1994-07-131-0/+2
|
* Change remote operation -- display the widget tree in a listbox andGuido van Rossum1994-07-131-4/+22
| | | | open relevant dialogs on double click
* Initial revisionGuido van Rossum1994-07-131-0/+36
|
* Added names to demo widgets; added RemoteWidgetDialog.Guido van Rossum1994-07-121-9/+79
|
* Added names to all widgetsGuido van Rossum1994-07-121-12/+26
|
* correct typoGuido van Rossum1994-07-121-1/+1
|