summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Collapse)AuthorAgeFilesLines
* Removed remaining support for Tk versions below 4.0.Guido van Rossum1997-07-191-28/+7
|
* Adapted to new build procedure (hopefully correct -- can't test it!).Guido van Rossum1997-07-191-5/+5
|
* Removed a bunch of extern declarations of functions that are nowGuido van Rossum1997-07-191-6/+0
| | | | properly declared in Python.h.
* New build procedure.Guido van Rossum1997-07-191-26/+28
|
* This is now the "real" main program -- it calls Py_Main(argc, argv)Guido van Rossum1997-07-191-0/+10
| | | | which is in the library and does all the work.
* This is no longer the real main program; it now defines Py_Main(), soGuido van Rossum1997-07-191-30/+7
| | | | | | | | | | | | | | | | it can be placed in the library. Other, related changes: - Moved the inspection of some environment variables to Py_Initialize(). - Got rid of -s option. - Moved Py_GetProgramName() and related logic to pythonrun.c; call Py_SetProgramName() instead. - Print the version header *after* successful initialization.
* Use the new functions PyEval_AcquireThread() andGuido van Rossum1997-07-181-5/+3
| | | | | | | PyEval_ReleaseThread() (in ceval.c) to set/reset the current thread, and at the same time acquire/release the interpreter lock. Much saner.
* Patches by AMK to check that the db is still open.Guido van Rossum1997-07-173-0/+54
|
* Add 'return' keyword before error calls.Guido van Rossum1997-07-171-8/+8
|
* Jeffrey's latestsGuido van Rossum1997-07-173-32/+165
|
* Jeffrey's newestGuido van Rossum1997-07-151-10/+8
|
* Reformatted.Guido van Rossum1997-07-151-1557/+1548
| | | | | Fixed some problem with uninitialized syntax tables. Jeffrey.
* Added reop (moved reop and regex to non-shared section).Guido van Rossum1997-07-111-2/+3
| | | | Added -I$(DBPORT) for bsddb compilation line.
* Allow '@' character as end of line padding in uuencode format.Guido van Rossum1997-07-111-1/+3
| | | | | | | Not sure why this is generated, but this fixes a problem with a particular file that was received with the following final line: F-WE<-*A5]AY]%7>8'&!!(_Y<F*55_"*%46"<OFG=>_5(F/\'``!@
* New version from Jeffrey after I complained about some glaring bugs.Guido van Rossum1997-07-111-0/+8
|
* New versions straight from Jeffrey Ollie's web siteGuido van Rossum1997-07-103-169/+700
|
* MACDEPPATH: Remove `sharedmodules' from default value of this variableBarry Warsaw1997-06-131-1/+1
| | | | | | since calculate_path() in getpath.c will automatically add this. Including this here will put the sharedmodules directory on sys.path twice.
* Add sys/types.h include for pid_t when threading.Guido van Rossum1997-06-061-0/+1
|
* Moved the definition of posix_times__doc__ to outside of #ifdef HAVE_TIMESRoger E. Masse1997-06-051-3/+3
| | | | so that MSVC 4.2 doesn't complain under NT.
* Small changes (casts etc.) by Jack, for Mac compilation.Guido van Rossum1997-06-031-12/+16
|
* Doc strings (AMK).Guido van Rossum1997-06-031-11/+88
|
* Added doc strings (Neil Schemenauer).Guido van Rossum1997-06-021-59/+364
|
* Use string.h, not strings.hGuido van Rossum1997-06-021-1/+1
|
* socket_type -> SocketTypeGuido van Rossum1997-06-021-2/+2
|
* array_type -> ArrayTypeGuido van Rossum1997-06-021-2/+2
|
* Mac hack to make select() work again...Guido van Rossum1997-06-021-0/+61
|
* Add doc string to type object.Fred Drake1997-05-231-1/+12
|
* PyObject_Compare can raise an exception now.Guido van Rossum1997-05-231-4/+4
|
* Partial(?) 64bit patch (AMK).Guido van Rossum1997-05-221-6/+6
|
* Enable putenv and waitpid (== wait4) for NeXT.Guido van Rossum1997-05-221-0/+87
|
* Defined array.array_type, the type object.Guido van Rossum1997-05-221-1/+6
|
* Add socket.socket_type, as discussed on c.l.p.Guido van Rossum1997-05-211-0/+5
|
* Include config.h so it can define const away for K&R.Guido van Rossum1997-05-201-0/+2
|
* Make delimiter and separator static for K&R C.Guido van Rossum1997-05-201-3/+11
|
* fixed ratecv to continue working if product of rates is bigger than 32 bitsGuido van Rossum1997-05-201-0/+21
| | | | (Sjoerd)
* Removed MetroWerks workaround, replaced by defines in mymath.h (Jack)Guido van Rossum1997-05-201-5/+0
|
* workaround for Mac MSL header definitions of TRUE and FALSE (Jack)Guido van Rossum1997-05-201-0/+4
|
* Add platform to welcome message.Guido van Rossum1997-05-191-2/+3
|
* Renamed strndup to my_strndup to avoid conflict witth GNU libc.Guido van Rossum1997-05-161-5/+8
|
* Address the following problem on DOS and Win 3.1, reported by JimGuido van Rossum1997-05-161-12/+12
| | | | | | | | | Ahlstrom: Arraymodule.c has static functions H_getitem and h_getitem, and a few others which differ only in case. These are a problem on Windows 3.1, since a case-sensitive link causes Winsock to fail (hey, it's not my fault). Please convert H_etc to HH_etc etc.
* Remove the last three uses of PyArg_GetInt() from the source.Guido van Rossum1997-05-151-3/+3
|
* Add sections for PIL (Fred Lundh).Guido van Rossum1997-05-141-1/+15
|
* 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.
* Add a cast to a malloc to shut up the DEC Unix compiler.Guido van Rossum1997-05-141-1/+1
|
* Keep gcc -Wall happy.Guido van Rossum1997-05-131-2/+2
|
* Use compile-time test for 64-bit hardware instead of run-time test.Guido van Rossum1997-05-131-1/+9
| | | | This silences some compilers.
* 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
|
* Another change suggested by Donn Cave -- forget "step 5", whichGuido van Rossum1997-05-121-21/+2
| | | | searches /usr/local, /usr and /.