Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | The usual | Guido van Rossum | 1997-05-13 | 1 | -2/+2 |
| | |||||
* | Renamed from mappingobject.c to dictobject.c. | Guido van Rossum | 1997-05-13 | 1 | -110/+104 |
| | | | | (Sorry Jack, all your projects will have to be changed again. :-( ) | ||||
* | Faster floating point allocator, same idea as the int allocator. | Guido van Rossum | 1997-05-13 | 1 | -7/+29 |
| | | | | By Aaron Watters. | ||||
* | A completely new Rat.py by Sjoerd. | Guido van Rossum | 1997-05-13 | 1 | -56/+260 |
| | |||||
* | Longer default PYTHONPATH will find test, tkinter, and shared modules | Guido van Rossum | 1997-05-13 | 1 | -1/+1 |
| | | | | in the build tree, when the current directory is the build tree root. | ||||
* | Remove a spurious ^M. | Guido van Rossum | 1997-05-13 | 0 | -0/+0 |
| | |||||
* | Keep gcc -Wall happy. | Guido van Rossum | 1997-05-13 | 1 | -2/+2 |
| | |||||
* | Untested changes by Skip Montanaro to have an optional limit on the | Guido van Rossum | 1997-05-13 | 1 | -0/+23 |
| | | | | size of uploads to POST (new version of these patches). | ||||
* | Use compile-time test for 64-bit hardware instead of run-time test. | Guido van Rossum | 1997-05-13 | 1 | -1/+9 |
| | | | | This silences some compilers. | ||||
* | Added $(srcdir)/ prefix to python.exp for AIX. | Guido van Rossum | 1997-05-13 | 1 | -1/+1 |
| | | | | No idea if this actually works... | ||||
* | TESTPATH is no longer needed | Guido van Rossum | 1997-05-13 | 1 | -3/+2 |
| | |||||
* | Removed symbols that are no longer defined. | Guido van Rossum | 1997-05-13 | 1 | -12/+0 |
| | | | | Still have to find a way to add symbols that *are* defined... | ||||
* | Keep picky compilers happy. | Guido van Rossum | 1997-05-13 | 1 | -4/+3 |
| | |||||
* | Support for various versions of the pthread draft. | Guido van Rossum | 1997-05-13 | 1 | -12/+64 |
| | |||||
* | (int) cast for strlen() to keep picky compilers happy. | Guido van Rossum | 1997-05-13 | 1 | -1/+1 |
| | |||||
* | Regenerated on newer Solaris version | Guido van Rossum | 1997-05-13 | 8 | -8/+2512 |
| | |||||
* | Removed out-of-date TODO file | Guido van Rossum | 1997-05-13 | 1 | -645/+0 |
| | |||||
* | Use ProgressBar to show progress in stead of print | Jack Jansen | 1997-05-13 | 1 | -15/+29 |
| | |||||
* | Don't free the MacOS_Splash() dialog twice... | Jack Jansen | 1997-05-13 | 1 | -2/+4 |
| | |||||
* | Add a few more BringToFont calls | Jack Jansen | 1997-05-13 | 1 | -0/+3 |
| | |||||
* | Export a few more New/Convert routines, on Just's request | Jack Jansen | 1997-05-13 | 2 | -0/+14 |
| | |||||
* | Regenrated from CW11 IDE | Jack Jansen | 1997-05-13 | 1 | -32/+200 |
| | |||||
* | Finally found a wat to set a file nonblocking that works on Irix, | Guido van Rossum | 1997-05-12 | 1 | -2/+2 |
| | | | | Solaris and Linux: use os.O_NONBLOCK. | ||||
* | Another change suggested by Donn Cave -- forget "step 5", which | Guido van Rossum | 1997-05-12 | 1 | -21/+2 |
| | | | | searches /usr/local, /usr and /. | ||||
* | Fix problem reported by Donn Cave: if VPATH is an absolute path, it | Guido van Rossum | 1997-05-12 | 1 | -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 an | Guido van Rossum | 1997-05-12 | 1 | -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 Jansen | 1997-05-12 | 2 | -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 approximately | Guido van Rossum | 1997-05-10 | 1 | -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 my | Guido van Rossum | 1997-05-10 | 1 | -25/+89 |
| | | | | Indigo2, reading a 9Meg file from the local disk. | ||||
* | Speed up read() (i.e. read till EOF) considerably by doing a stat() to | Guido van Rossum | 1997-05-09 | 1 | -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.5a1 | cvs2svn | 1997-05-09 | 1 | -0/+1 |
| | |||||
* | Modernized for 1.5 | Guido van Rossum | 1997-05-09 | 1 | -5/+8 |
| | |||||
* | New heros. | Guido van Rossum | 1997-05-09 | 1 | -0/+6 |
| | |||||
* | Scroll to top of info window when done. | Guido van Rossum | 1997-05-09 | 1 | -0/+1 |
| | |||||
* | Oops -- missed FloatingPointError. | Guido van Rossum | 1997-05-09 | 1 | -0/+1 |
| | |||||
* | Oops -- missed FloatingPointError in renaming. | Guido van Rossum | 1997-05-09 | 2 | -2/+3 |
| | |||||
* | The usual. | Guido van Rossum | 1997-05-09 | 1 | -198/+235 |
| | |||||
* | Added --with-fpectl. Change checks for -lm, -lc. | Guido van Rossum | 1997-05-09 | 1 | -4/+25 |
| | |||||
* | Move WANT_SIGFPE_HANDLER. | Guido van Rossum | 1997-05-09 | 1 | -3/+3 |
| | |||||
* | Add HAVE_PTHREAD_H; move WANT_SIGFPE_HANDLER. | Guido van Rossum | 1997-05-09 | 1 | -3/+6 |
| | |||||
* | 1.5a1 adaptations. | Guido van Rossum | 1997-05-09 | 1 | -18/+19 |
| | |||||
* | Latest from Jeffrey Ollie. | Guido van Rossum | 1997-05-09 | 2 | -1473/+1680 |
| | | | | Infinite failure stack, some bugs fixed (fastmap, star_jump, register bug). | ||||
* | Fix the date. | Guido van Rossum | 1997-05-09 | 2 | -2/+2 |
| | |||||
* | Added docs for dumbdbm (AMK), and misc small fixes. | Guido van Rossum | 1997-05-09 | 2 | -14/+22 |
| | |||||
* | Document return value of wait[pid]() more carefully. | Guido van Rossum | 1997-05-09 | 2 | -14/+24 |
| | | | | Document how to get exit status of a popen() command. | ||||
* | Document "" and "<broadcast>". | Guido van Rossum | 1997-05-09 | 2 | -0/+8 |
| | |||||
* | Regenerated on a newer Linux version. | Guido van Rossum | 1997-05-09 | 2 | -14/+268 |
| | |||||
* | Avoid warning from gcc on Linux about dropping const. | Guido van Rossum | 1997-05-09 | 1 | -1/+1 |
| | |||||
* | Fix the NDELAY test; avoid outputting binary garbage. | Guido van Rossum | 1997-05-09 | 1 | -3/+3 |
| | |||||
* | Print less in test_socket. | Guido van Rossum | 1997-05-09 | 2 | -21/+6 |
| |