summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Bump level to 1.5a2.Guido van Rossum1997-05-141-1/+1
|
* Update description of "make test" to new test harness.Guido van Rossum1997-05-141-13/+17
| | | | | Change DEC OSF/1 to DEC Unix. Add note about AIX bug in 4.2.1.
* Fix typo in error reporting.Guido van Rossum1997-05-141-1/+1
|
* Fix hex tests for 64-bit machines.Guido van Rossum1997-05-141-1/+3
|
* Instructions updated for 1.5. Added the important note to set theGuido van Rossum1997-05-141-21/+24
| | | | run-library to multithreaded dll.
* Add -Olimit 1500 to OPT if CC supports it.Guido van Rossum1997-05-142-175/+221
|
* Suppress fork part of socket test when we can't fork.Guido van Rossum1997-05-141-27/+29
|
* Updated, mappingobject -> dictobject plus some other minor things.Guido van Rossum1997-05-141-12/+3377
|
* Add sections for PIL (Fred Lundh).Guido van Rossum1997-05-141-1/+15
|
* Fix sys.platform test -- on Win, it is 'win32', not 'win'.Guido van Rossum1997-05-141-2/+2
|
* More rational implementation of get_qualified_path() -- search alongGuido van Rossum1997-05-141-12/+5
| | | | sys.path instead of assuming __file__ works.
* Fix reversed test for failure in PySequence_List() and PySequence_Tuple().Guido van Rossum1997-05-141-2/+2
| | | | This broke cPickle.
* Typo! \\lib\\<path> should be .\\lib\\<path>Guido van Rossum1997-05-141-1/+1
|
* Fix showstopping bug (^ wouldn't match after \n). Jeffrey Ollie.Guido van Rossum1997-05-141-1/+1
|
* A new set of symbols. Hopefully this will be sufficient, I have noGuido van Rossum1997-05-141-21/+28
| | | | idea how this is used, really.
* One last rename glitch: import_modules -> _PyImport_Modules.Guido van Rossum1997-05-143-17/+17
|
* New makefile, for 1.5, with CRLFGuido van Rossum1997-05-141-285/+285
|
* Add a cast to a malloc to shut up the DEC Unix compiler.Guido van Rossum1997-05-141-1/+1
|
* Subsumed mappingobject.h in dictobject.h.Guido van Rossum1997-05-133-68/+22
|
* Renamed mappingobject.c to dictobject.c.Guido van Rossum1997-05-132-1036/+3
|
* The usualGuido van Rossum1997-05-131-2/+2
|
* Renamed from mappingobject.c to dictobject.c.Guido van Rossum1997-05-131-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 Rossum1997-05-131-7/+29
| | | | By Aaron Watters.
* A completely new Rat.py by Sjoerd.Guido van Rossum1997-05-131-56/+260
|
* Longer default PYTHONPATH will find test, tkinter, and shared modulesGuido van Rossum1997-05-131-1/+1
| | | | in the build tree, when the current directory is the build tree root.
* Remove a spurious ^M.Guido van Rossum1997-05-130-0/+0
|
* Keep gcc -Wall happy.Guido van Rossum1997-05-131-2/+2
|
* Untested changes by Skip Montanaro to have an optional limit on theGuido van Rossum1997-05-131-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 Rossum1997-05-131-1/+9
| | | | This silences some compilers.
* Added $(srcdir)/ prefix to python.exp for AIX.Guido van Rossum1997-05-131-1/+1
| | | | No idea if this actually works...
* TESTPATH is no longer neededGuido van Rossum1997-05-131-3/+2
|
* Removed symbols that are no longer defined.Guido van Rossum1997-05-131-12/+0
| | | | Still have to find a way to add symbols that *are* defined...
* Keep picky compilers happy.Guido van Rossum1997-05-131-4/+3
|
* Support for various versions of the pthread draft.Guido van Rossum1997-05-131-12/+64
|
* (int) cast for strlen() to keep picky compilers happy.Guido van Rossum1997-05-131-1/+1
|
* Regenerated on newer Solaris versionGuido van Rossum1997-05-138-8/+2512
|
* 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.