summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Removed out-of-date TODO fileGuido van Rossum1997-05-131-645/+0
|
* Use ProgressBar to show progress in stead of printJack Jansen1997-05-131-15/+29
|
* Don't free the MacOS_Splash() dialog twice...Jack Jansen1997-05-131-2/+4
|
* Add a few more BringToFont callsJack Jansen1997-05-131-0/+3
|
* Export a few more New/Convert routines, on Just's requestJack Jansen1997-05-132-0/+14
|
* Regenrated from CW11 IDEJack Jansen1997-05-131-32/+200
|
* Finally found a wat to set a file nonblocking that works on Irix,Guido van Rossum1997-05-121-2/+2
| | | | Solaris and Linux: use os.O_NONBLOCK.
* Another change suggested by Donn Cave -- forget "step 5", whichGuido van Rossum1997-05-121-21/+2
| | | | searches /usr/local, /usr and /.
* Fix problem reported by Donn Cave: if VPATH is an absolute path, itGuido van Rossum1997-05-121-18/+25
| | | | | would always be a hit. Prevent this by only using VPATH if we know we are in the build directory.
* Fix big ineficciency in regobj.search/match (introduced by Barry in anGuido van Rossum1997-05-121-10/+12
| | | | | | | | otherwise laudible attempt to rationalize the argument parsing): it would save a copy of the original string instead of a reference to it. Go back to saving a reference, but keep the "s#" format (using a hack that involves two argument parsing steps, first using "O", then using "s#").
* Fixes to progress bar by SDM, modified by Jack:Jack Jansen1997-05-122-401/+464
| | | | | | | - Window has a titlebar, and title() changes it - The label is changed with label() - The window is now movable-modal - Cancel is now called Stop, and works.
* Add optional 'sizehint' argument to readlines(). After approximatelyGuido van Rossum1997-05-101-23/+33
| | | | | | | | | | | | this many bytes have been read, readlines stops. Because of buffering, the amount of bytes read is usually at least 8K more than the hint. Also changed read() and readline() to use PyArg_ParseTuple(). (Note that the *previous* checkin also fixed error handling and narrowed the range of thread unblocking for all methods using fread().)
* Rewrite readlines() to speed it up -- about a factor of 2 on myGuido van Rossum1997-05-101-25/+89
| | | | Indigo2, reading a 9Meg file from the local disk.
* Speed up read() (i.e. read till EOF) considerably by doing a stat() toGuido van Rossum1997-05-091-15/+65
| | | | | | see if we can guess the #bytes until the end of the file. If we can't, increment the buffer size increments up to 0.5Meg to avoid realloc'ing too much.
* This commit was manufactured by cvs2svn to create tag 'r15a1'.v1.5a1cvs2svn1997-05-091-0/+1
|
* Modernized for 1.5Guido van Rossum1997-05-091-5/+8
|
* New heros.Guido van Rossum1997-05-091-0/+6
|
* Scroll to top of info window when done.Guido van Rossum1997-05-091-0/+1
|
* Oops -- missed FloatingPointError.Guido van Rossum1997-05-091-0/+1
|
* Oops -- missed FloatingPointError in renaming.Guido van Rossum1997-05-092-2/+3
|
* The usual.Guido van Rossum1997-05-091-198/+235
|
* Added --with-fpectl. Change checks for -lm, -lc.Guido van Rossum1997-05-091-4/+25
|
* Move WANT_SIGFPE_HANDLER.Guido van Rossum1997-05-091-3/+3
|
* Add HAVE_PTHREAD_H; move WANT_SIGFPE_HANDLER.Guido van Rossum1997-05-091-3/+6
|
* 1.5a1 adaptations.Guido van Rossum1997-05-091-18/+19
|
* Latest from Jeffrey Ollie.Guido van Rossum1997-05-092-1473/+1680
| | | | Infinite failure stack, some bugs fixed (fastmap, star_jump, register bug).
* Fix the date.Guido van Rossum1997-05-092-2/+2
|
* Added docs for dumbdbm (AMK), and misc small fixes.Guido van Rossum1997-05-092-14/+22
|
* Document return value of wait[pid]() more carefully.Guido van Rossum1997-05-092-14/+24
| | | | Document how to get exit status of a popen() command.
* Document "" and "<broadcast>".Guido van Rossum1997-05-092-0/+8
|
* Regenerated on a newer Linux version.Guido van Rossum1997-05-092-14/+268
|
* Avoid warning from gcc on Linux about dropping const.Guido van Rossum1997-05-091-1/+1
|
* Fix the NDELAY test; avoid outputting binary garbage.Guido van Rossum1997-05-091-3/+3
|
* Print less in test_socket.Guido van Rossum1997-05-092-21/+6
|
* removed last #ifdef SUPPORT_OBSOLETE_ACCESS bits.Guido van Rossum1997-05-092-103/+5
|
* Latest and greatest.Guido van Rossum1997-05-091-257/+21
|
* Add root.tkraise() to the _test() program so the window doesn't hideGuido van Rossum1997-05-092-0/+2
| | | | behind the shell window on NT.
* Get rid of obsolete support for access statement.Guido van Rossum1997-05-091-67/+0
|
* Get rid of obsolete ACCESS_MODE opcode.Guido van Rossum1997-05-091-1/+0
|
* Add warning that it's out of date.Guido van Rossum1997-05-081-0/+4
|
* forgot to rename import_filetabGuido van Rossum1997-05-081-1/+1
|
* ??? maybe window sizeGuido van Rossum1997-05-081-0/+0
|
* Added assert statement.Guido van Rossum1997-05-081-0/+0
|
* Added assert resword.Guido van Rossum1997-05-081-0/+0
|
* Tiny utility prints the latest set of reserved words.Guido van Rossum1997-05-081-0/+32
|
* Checking in old changes -- no idea why (probably window size).Guido van Rossum1997-05-084-0/+0
|
* The usual.Guido van Rossum1997-05-0820-172/+564
|
* Improve getting the mailbox from the environment.Guido van Rossum1997-05-081-5/+5
|
* Set correct RFC number.Guido van Rossum1997-05-081-1/+1
|
* Set correct RFC number. Open input in binary.Guido van Rossum1997-05-081-2/+2
|