summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Defined array.array_type, the type object.Guido van Rossum1997-05-221-1/+6
|
* Fix typo in error checking spotted by Just...Guido van Rossum1997-05-221-1/+1
|
* Separate prologue/epilogue functions.Guido van Rossum1997-05-211-45/+69
| | | | | Get the current version on edit and reject commits based on an old version.
* Oops, left an 'n = n+1' in but n was undefined.Guido van Rossum1997-05-211-1/+0
|
* Add "Log info" to view rcs log.Guido van Rossum1997-05-211-4/+33
| | | | Speed up __getattr__ by storing the value as self.<key>.
* Lots of new features:Guido van Rossum1997-05-211-27/+183
| | | | | | | - got rid of the separate search page - added an index (lists the questions with links to the answers) - add a mechanism to add new entries - add a way to list most recently edited entries first
* Crude but functional, except for adding new entries.Guido van Rossum1997-05-211-46/+172
|
* Fix for boundary case (Jack)Guido van Rossum1997-05-211-1/+4
|
* generated from latest doc filesGuido van Rossum1997-05-211-639/+784
|
* Added description of socket_type.Guido van Rossum1997-05-212-0/+10
|
* Add test for presence of socket_type.Guido van Rossum1997-05-211-0/+1
|
* Add socket.socket_type, as discussed on c.l.p.Guido van Rossum1997-05-211-0/+5
|
* Fix ratecv test (Sjoerd).Guido van Rossum1997-05-211-5/+6
|
* Initial revisionGuido van Rossum1997-05-211-0/+255
|
* 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
|
* Don't use function prototypes in function definition headers.Guido van Rossum1997-05-201-4/+8
|
* Indent the #error directives so a classic K&R cpp doesn't see them.Guido van Rossum1997-05-201-3/+3
|
* Renamed a local variable from 'PyCFunction' (which is also a typedefGuido van Rossum1997-05-201-6/+6
| | | | in methodobject.h) to 'func'. /bin/cc on SunOS 4.x didn't grok this.
* Added Py_PROTO macros for SunOS 4.x /bin/cc.Guido van Rossum1997-05-201-6/+6
|
* More robust way of choosing a non-existant uid (faster, too).Guido van Rossum1997-05-201-1/+1
| | | | (Correct version -- the previous checkin was a keyboard slip.)
* More robust way of choosing a non-existant uid (faster, too).Guido van Rossum1997-05-201-4/+4
|
* Moved PyObject_{Get,Set}Attr to object.c.Guido van Rossum1997-05-201-33/+2
| | | | Fixed two 'return NULL' that should be 'return -1'.
* Moved PyObject_{Get,Set}Attr here (from dictobject) and add PyObject_HasAttr.Guido van Rossum1997-05-201-0/+43
|
* Got rid of c_error in favor of errno (and EDOM/ERANGE).Guido van Rossum1997-05-201-49/+43
| | | | | Assume that errno usage is thread-safe -- most vendors do this by making in a macro that refers to a per-thread storage area.
* Added some minimal comments and tweaked lay-out a bit.Guido van Rossum1997-05-201-3/+7
|
* Plug leak of stack frame object in exception handling code.Guido van Rossum1997-05-201-9/+26
| | | | | Also delay DECREF calls until after the structures have been updated (for reentrancy awareness).
* Handling of pathnames pointing to files on toplevel folder of disk wasGuido van Rossum1997-05-201-1/+6
| | | | incorrect (Jack)
* 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
|
* Workaround for bug in Metrowerks MSL headers on 68K Macs (Jack)Guido van Rossum1997-05-201-0/+47
|
* Logic for enabling mac-specific signal handling fixed (Jack)Guido van Rossum1997-05-201-1/+1
|
* Use #ifdef in stead of #if (Jack)Guido van Rossum1997-05-201-1/+1
|
* Updated Python version no to 1.5.Guido van Rossum1997-05-191-8/+8
| | | | Noted that we have used VC 4.2 and that 5.x should be able to convert it.
* Added AMK's SocketServer docs.Guido van Rossum1997-05-195-1/+379
|
* Add platform to welcome message.Guido van Rossum1997-05-191-2/+3
|
* Unlink before rename (for NT).Guido van Rossum1997-05-191-1/+5
|
* Jim Ahlstrom's contributions for DOS, OS/2, WIN3.1.Guido van Rossum1997-05-196-2721/+2985
|
* Renamed strndup to my_strndup to avoid conflict witth GNU libc.Guido van Rossum1997-05-161-5/+8
|
* Added CRLF for Notepad.Guido van Rossum1997-05-161-160/+160
|
* 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.
* Added CRLF for Notepad.Guido van Rossum1997-05-161-116/+116
|
* Got rid of all the last_name_* bogosities. I don't think theGuido van Rossum1997-05-161-53/+34
| | | | | | | complexity saved much any more. A simple benchmark (grail) showed that there were 3 times as many misses as hits, and the same number of times again the code was bypassed altogether due to the existence of setattro/getattro.
* Changes to make these tests work on the Mac.Guido van Rossum1997-05-163-4/+4
|
* Increase the child's sleep time to 5 for slow machines.Guido van Rossum1997-05-161-1/+1
|
* Correct comment; -c is off by default.Guido van Rossum1997-05-151-1/+1
|
* Made a start with api.tex, the Python-C API Reference Manual.Guido van Rossum1997-05-159-2042/+1800
| | | | | Removed extref.tex (which provided the starting point). Also removed qua.tex, which is out of date and no longer needed.
* Oops, another forgotten renaming: varobject -> PyVarObject.Guido van Rossum1997-05-155-9/+11
|
* Remove the last three uses of PyArg_GetInt() from the source.Guido van Rossum1997-05-151-3/+3
|