| Commit message (Expand) | Author | Age | Files | Lines |
* | Ugly band-aid to work around a bug in Linux ftell(). | Guido van Rossum | 1998-05-05 | 1 | -1/+3 |
|
|
* | Get rid of the unused ifdefed-out old sort code. | Guido van Rossum | 1998-04-28 | 1 | -76/+0 |
|
|
* | If USE_STACKCHECK is defined use PyOS_CheckStack() in the repr and str | Guido van Rossum | 1998-04-28 | 1 | -0/+12 |
|
|
* | Enable ftruncate() on the Mac. | Guido van Rossum | 1998-04-28 | 1 | -0/+6 |
|
|
* | Quicksort retuned by Tim Peters. | Guido van Rossum | 1998-04-28 | 1 | -33/+26 |
|
|
* | Clear the error condition set by ftell(). | Guido van Rossum | 1998-04-27 | 1 | -0/+2 |
|
|
* | Be less naive about null characters in an object's repr(). | Guido van Rossum | 1998-04-21 | 1 | -2/+2 |
|
|
* | Some robustness checks in Py_ReprLeave() in the unlikely event someone | Guido van Rossum | 1998-04-11 | 1 | -0/+4 |
|
|
* | Use Py_Repr{Enter,Leave} to display recursive lists in finite space. | Guido van Rossum | 1998-04-10 | 1 | -1/+20 |
|
|
* | Use Py_Repr{Enter,Leave} to display recursive dictionaries in finite space. | Guido van Rossum | 1998-04-10 | 1 | -5/+31 |
|
|
* | Add implementations of Py_Repr{Enter,Leave}. | Guido van Rossum | 1998-04-10 | 1 | -0/+64 |
|
|
* | Make new gcc -Wall happy | Guido van Rossum | 1998-04-10 | 4 | -7/+13 |
|
|
* | Add PyObject_Not(). | Guido van Rossum | 1998-04-09 | 1 | -0/+14 |
|
|
* | This was the reason a numeric array to a real power was not working. | Guido van Rossum | 1998-04-03 | 1 | -1/+2 |
|
|
* | Subtle fix in the read() code which could cause a read broken up in | Guido van Rossum | 1998-03-18 | 1 | -1/+1 |
|
|
* | When we have no setvbuf(), make the file totally unbuffered using | Guido van Rossum | 1998-03-06 | 1 | -1/+4 |
|
|
* | Of course, I shouldn't have used lseek() to find out the file's | Guido van Rossum | 1998-03-03 | 1 | -6/+3 |
|
|
* | Add back some safeguards on the index elements that were lost in the | Guido van Rossum | 1998-02-25 | 1 | -2/+2 |
|
|
* | Add internal routine _PyModule_Clear(), which does approximately what | Guido van Rossum | 1998-02-19 | 1 | -1/+50 |
|
|
* | Vladimir Marangozov' performance hack: copy f_builtins from ancestor | Guido van Rossum | 1998-02-19 | 1 | -3/+14 |
|
|
* | Check ferror(), not errno, for fread() error. | Guido van Rossum | 1998-02-19 | 1 | -1/+1 |
|
|
* | Instead of "attribute-less object", issue an error message that | Guido van Rossum | 1998-01-19 | 1 | -1/+4 |
|
|
* | Modified quicksort by Raymund Galvin, after studying the GNU libg++ | Guido van Rossum | 1997-12-10 | 1 | -23/+48 |
|
|
* | Change the default repr() and str() of class instance objects to look | Guido van Rossum | 1997-12-03 | 1 | -1/+9 |
|
|
* | Add a new function PyNumber_CoerceEx() which works just like | Guido van Rossum | 1997-11-19 | 1 | -3/+15 |
|
|
* | Undo another glitch of the automatic not-so-Grand Renaming; some local | Guido van Rossum | 1997-11-18 | 1 | -10/+10 |
|
|
* | Fix problem discovered by Barry: if you hit ^C to | Guido van Rossum | 1997-11-07 | 1 | -2/+2 |
|
|
* | Add cast to realloc/malloc call to shut up AIX compiler. (Vladimir Marangozov) | Guido van Rossum | 1997-10-31 | 1 | -2/+3 |
|
|
* | Hack suggested by Matthias Klose to pull in all relevant entry points | Guido van Rossum | 1997-10-31 | 1 | -0/+10 |
|
|
* | New CObject from Jim Fulton, adds PyCObject_FromVoidPtrAndDesc() and | Guido van Rossum | 1997-10-21 | 1 | -1/+52 |
|
|
* | Write a str() function for class objects that returns | Guido van Rossum | 1997-10-20 | 1 | -2/+36 |
|
|
* | Correct Barry's fix -- take care of {}.get(0). | Guido van Rossum | 1997-10-20 | 1 | -0/+3 |
|
|
* | dict_get(): Fixed a couple of stupid mistakes which caused crashes. | Barry Warsaw | 1997-10-20 | 1 | -8/+2 |
|
|
* | Check that all base classes are indeed class objects, rather than | Guido van Rossum | 1997-10-07 | 1 | -5/+30 |
|
|
* | dict_get(): New method for item access with different semantics than | Barry Warsaw | 1997-10-06 | 1 | -0/+38 |
|
|
* | Don't intern the key string for getitem and delitem. | Guido van Rossum | 1997-09-29 | 1 | -3/+1 |
|
|
* | When creating a class, set its __module__ attribute to the module | Guido van Rossum | 1997-09-12 | 1 | -1/+22 |
|
|
* | Patch submitted by Brad Howes (with one bug fixed by me): allow | Guido van Rossum | 1997-09-08 | 1 | -8/+17 |
|
|
* | Allow assignments to instance.__dict__ and instance.__class__. The | Guido van Rossum | 1997-08-25 | 1 | -17/+57 |
|
|
* | Rename roundup() to roundupsize(), as there's a macro roundup() in the | Guido van Rossum | 1997-08-25 | 1 | -2/+2 |
|
|
* | Use lseek instead of ftell; compensate by adding BUFSIZE | Guido van Rossum | 1997-08-21 | 1 | -2/+6 |
|
|
* | Made lookdict nearly twice as fast, resulting in a 5% overall | Guido van Rossum | 1997-08-18 | 1 | -11/+13 |
|
|
* | PyTuple_SetItem should require that the tuple's refcnt is one! | Guido van Rossum | 1997-08-17 | 1 | -1/+1 |
|
|
* | Fix mixup about PyErr_NoMemory() prototype. | Guido van Rossum | 1997-08-12 | 1 | -4/+8 |
|
|
* | Fix bug in comparing function objects detected by Sjoerd: | Guido van Rossum | 1997-08-05 | 1 | -3/+9 |
|
|
* | Added _Fini() routines to free up some memory | Guido van Rossum | 1997-08-05 | 3 | -1/+47 |
|
|
* | Change the Fini function to only remove otherwise unreferenced strings | Guido van Rossum | 1997-08-05 | 1 | -6/+16 |
|
|
* | Added separate free list for cfunction (builtin method) objects, for a | Guido van Rossum | 1997-08-05 | 1 | -7/+30 |
|
|
* | Provide a dummy empty directory as f_builtins instead of failing, when | Guido van Rossum | 1997-08-05 | 1 | -7/+22 |
|
|
* | Added separate free list for instance method objects, for a few | Guido van Rossum | 1997-08-05 | 1 | -4/+28 |
|
|