Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #Plug small memory leaks in constructors. | Guido van Rossum | 1997-09-03 | 1 | -2/+5 |
| | |||||
* | Removed JF's dollar-Log-dollar RCS turd that caused compilation to | Barry Warsaw | 1997-08-21 | 1 | -52/+0 |
| | | | | | crash due to GvR's last check in message :-). Will try to convince JF to remove all this evilness. | ||||
* | Added /**/ around #end tags | Guido van Rossum | 1997-08-21 | 1 | -1/+4 |
| | |||||
* | Renamed strndup to pystrndup, to avoid conflicting prototype | Guido van Rossum | 1997-08-20 | 1 | -5/+9 |
| | | | | in GNU libc on some platforms. | ||||
* | cPickle release 0.3 from Jim Fulton | Guido van Rossum | 1997-08-13 | 1 | -49/+102 |
| | |||||
* | Renamed strndup to my_strndup to avoid conflict witth GNU libc. | Guido van Rossum | 1997-05-16 | 1 | -5/+8 |
| | |||||
* | 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. | ||||
* | Instead of importing graminit.h whenever one of the three grammar 'root' | Guido van Rossum | 1997-05-07 | 1 | -3/+6 |
| | | | | symbols is needed, define these in Python.h with a Py_ prefix. | ||||
* | Give PyErr_Format a new name and make it static. | Guido van Rossum | 1997-04-09 | 1 | -0/+5 |
| | |||||
* | Jim Fulton's version 2.2. | Guido van Rossum | 1997-04-09 | 1 | -2810/+2931 |
| | |||||
* | Eliminated gcc -Wall complaints: | Barry Warsaw | 1997-01-14 | 1 | -26/+22 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Quieted gcc -Wall by removing unused local variables. - Added some choice parentheses around assignments in conditional tests. - Removed an unused (and seemingly unreachable) err label in load_short_binstring(). - in Unpickler_load(), removed \. in string format. - init_stuff() was declared to return an int, but had these problems: - it was returning NULL instead of 0 or 1 in some cases - it was falling of the end of the routine without returning anything - the call of init_stuff() in initcPickle() was never checking the return value anyway. I changed all this by returning 1 in the case of errors, 0 when no error occurred. Then in initcPickle(), if init_stuff() returns non-zero, I call Py_FatalError(). Suppressing my urge to reformat according to Python coding standards! :-) | ||||
* | cPickle, version 0.1. | Guido van Rossum | 1997-01-06 | 1 | -0/+3767 |