Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Always use 'anonymous' if os.environ doesn't exist | Jack Jansen | 1995-01-19 | 1 | -5/+10 |
| | |||||
* | evolution | Guido van Rossum | 1995-01-17 | 1 | -16/+4 |
| | |||||
* | new files | Guido van Rossum | 1995-01-12 | 4 | -0/+772 |
| | |||||
* | use getattr() instead of eval(), fix string representations | Guido van Rossum | 1995-01-12 | 1 | -4/+4 |
| | |||||
* | fix comments for list command | Guido van Rossum | 1995-01-10 | 1 | -2/+2 |
| | |||||
* | Fix exec test so presence of __builtins__ doesn't break it | Guido van Rossum | 1995-01-10 | 1 | -0/+3 |
| | |||||
* | shallow and deep copy operations | Guido van Rossum | 1995-01-10 | 1 | -0/+240 |
| | |||||
* | shelve.py: database of persistent objects, on top of pickle.py and anydbm.py | Guido van Rossum | 1995-01-10 | 3 | -0/+556 |
| | | | | | | pickle.py: new low-level persistency module (used to be called flatten) dbmac.py: stupid dbm clone for the Mac anydbm.py: generic dbm interface (should be extended to support gdbm) | ||||
* | Added clarifying comment | Guido van Rossum | 1995-01-04 | 1 | -0/+2 |
| | |||||
* | * Lib/test/test_b1.py: test eval() and execfile() with globals, | Guido van Rossum | 1995-01-02 | 1 | -0/+13 |
| | | | | locals arguments | ||||
* | * Lib/mhlib.py: added movemessage(), copymessage(), added copy | Guido van Rossum | 1995-01-02 | 1 | -8/+81 |
| | | | | fallback for refilemessages(), and updated the docs | ||||
* | Add hacks for switching protocol and path but leaving host unchanged | Guido van Rossum | 1994-12-30 | 2 | -2/+14 |
| | |||||
* | Test new __import__ module, test reload of built-in module, test | Guido van Rossum | 1994-12-30 | 4 | -2/+12 |
| | | | | has_key() on empty dictionary | ||||
* | Fixed 'propagate' method | Guido van Rossum | 1994-12-30 | 2 | -8/+10 |
| | |||||
* | Let extensions start at the last period after the last slash in the | Sjoerd Mullender | 1994-12-14 | 1 | -1/+6 |
| | | | | name. | ||||
* | improved prompt format | Guido van Rossum | 1994-11-10 | 2 | -5/+13 |
| | |||||
* | more complete tests of built-in functions | Guido van Rossum | 1994-11-10 | 3 | -2/+95 |
| | |||||
* | added option interface | Guido van Rossum | 1994-10-20 | 2 | -0/+16 |
| | |||||
* | fix bug in poly.minus | Guido van Rossum | 1994-10-20 | 1 | -5/+2 |
| | |||||
* | initial commit | Guido van Rossum | 1994-10-09 | 10 | -0/+558 |
| | |||||
* | fix buffer size | Guido van Rossum | 1994-10-09 | 2 | -2/+2 |
| | |||||
* | Import posixpath for freeze script | Guido van Rossum | 1994-10-05 | 1 | -0/+1 |
| | |||||
* | Ignore empty markers. | Sjoerd Mullender | 1994-10-03 | 1 | -1/+5 |
| | |||||
* | Cosmetic changes | Guido van Rossum | 1994-09-29 | 1 | -14/+17 |
| | |||||
* | Fix bug if tmpcache is None | Guido van Rossum | 1994-09-21 | 1 | -1/+2 |
| | |||||
* | audiodev.py: Mac port. | Guido van Rossum | 1994-09-16 | 2 | -3/+26 |
| | | | | | Audio_mac.py: Mac specific class for audiodev.py. aifc.py: open files for reading/writing in binary mode ('rb', 'wb'). | ||||
* | * Lib/whrandom.py: if seed is (0,0,0), initialize from current | Guido van Rossum | 1994-09-14 | 1 | -9/+9 |
| | | | | time; default seed's arguments to (0,0,0) | ||||
* | Added TERMIOS module | Guido van Rossum | 1994-09-12 | 4 | -2/+682 |
| | |||||
* | New tty/pty modules by Steen; new urlparser. | Guido van Rossum | 1994-09-12 | 3 | -0/+336 |
| | |||||
* | mhlib.py: delay opening of sequences file so we don't overwrite it when | Guido van Rossum | 1994-09-09 | 3 | -3/+233 |
| | | | | | | putsequences is called with a bad argument rfc822.py: better handling of dates with no or bad timezones uu.py: contributed by Lance -- uu{en,de}code | ||||
* | Can now also give a hashed ID to Cddb. | Sjoerd Mullender | 1994-09-06 | 2 | -82/+112 |
| | |||||
* | Added support for ADPCM compression. | Sjoerd Mullender | 1994-09-06 | 1 | -6/+47 |
| | |||||
* | Dialog.py: d.num should be numeric, not string | Guido van Rossum | 1994-08-30 | 4 | -10/+16 |
| | | | | Tkinter.py: on destroy(), remove self from master's dict of children | ||||
* | New way of generating .pyc files, thanks to Sjoerd. | Guido van Rossum | 1994-08-29 | 5 | -2/+96 |
| | | | | | | urllib.py: '+' is not always safe (even though the RFC says so :-( ) whrandom.py: throw away top bits of time to avoid overflow on Mac (where times can be negative) | ||||
* | * Lib/linecache.py: don't crash on empty filename | Guido van Rossum | 1994-08-23 | 6 | -18/+131 |
| | | | | | | | | | | | * Lib/macpath.py: don't return trailing colon for dirname() (XXX won't do for volume names -- but otherwise glob(':*:*.py') loops forever) * Lib/traceback.py: print SyntaxError correctly * Lib/stat.py: moved to posixstat.py; added macstat.py which has the constants for the Mac; and created new stat.py which includes the right one * Lib/urllib.py: fix caching bug (by disabling the cache) | ||||
* | * Lib/sgi/flp.py: fix caching bug (always write the whole file to | Guido van Rossum | 1994-08-23 | 2 | -28/+8 |
| | | | | the cache!) | ||||
* | * Lib/string.py: find/rfind is now the main implementation and | Guido van Rossum | 1994-08-17 | 2 | -126/+82 |
| | | | | | index/rindex is a wrapper that raises index_error (which is now always ValueError) | ||||
* | do fake "import posix" for freeze.py script | Guido van Rossum | 1994-08-17 | 1 | -0/+4 |
| | |||||
* | * Lib/rfc822.py: fix two bugs: error in readheaders interpreting | Guido van Rossum | 1994-08-12 | 2 | -6/+6 |
| | | | | | regex.match() result, and wrong logic in getfirstmatchingheader() when the same header occurs twice consecutively | ||||
* | Test set for new pow() function | Guido van Rossum | 1994-08-12 | 1 | -0/+92 |
| | |||||
* | Add Widget.unbind and {Canvas,Text}.tag_unbind. | Guido van Rossum | 1994-08-08 | 2 | -4/+18 |
| | | | | In Widget.__init__, call config only if cnf not empty. | ||||
* | Use new packing and 'name' in cnf dict | Guido van Rossum | 1994-08-03 | 2 | -6/+10 |
| | |||||
* | Merge alpha100 branch back to main trunk | Guido van Rossum | 1994-08-01 | 63 | -881/+2596 |
| | |||||
* | Merge changes | Guido van Rossum | 1994-08-01 | 1 | -39/+57 |
| | |||||
* | * Lib/mhlib.py (removefromallsequences): call putsequences with | Guido van Rossum | 1994-07-14 | 1 | -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. | ||||
* | read various startup files in Tcl and Python based upon className and | Guido van Rossum | 1994-07-12 | 2 | -2/+46 |
| | | | | baseName. | ||||
* | Fix bug in At() (Steen) | Guido van Rossum | 1994-07-12 | 2 | -6/+6 |
| | |||||
* | Make Pack.newinfo() return a dict | Guido van Rossum | 1994-07-11 | 2 | -2/+20 |
| | |||||
* | Added _exit and register as Tcl command exit. Micro lay-out fix. | Guido van Rossum | 1994-07-07 | 2 | -4/+12 |
| | |||||
* | Totally changed, now it is actually derived from Text | Guido van Rossum | 1994-07-06 | 2 | -62/+40 |
| | | | | (This breaks something in MimeViewer.py, don't know what yet) |