| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Added _Py_ResetReferences(), if tracing references. | Guido van Rossum | 1997-08-05 | 1 | -3/+84 |
|
|
* | Avoid function calls to access the current thread state and builtins | Guido van Rossum | 1997-08-02 | 1 | -4/+2 |
|
|
* | Added internal routine PyString_Fini() which deletes all interned | Guido van Rossum | 1997-08-02 | 1 | -0/+18 |
|
|
* | New build procedure. | Guido van Rossum | 1997-07-19 | 1 | -8/+9 |
|
|
* | Reordered list of methods to hopefully put the most frequently used | Guido van Rossum | 1997-07-13 | 2 | -7/+7 |
|
|
* | Reordered list of methods to hopefully put the most frequently used | Guido van Rossum | 1997-07-13 | 1 | -8/+10 |
|
|
* | Use #include "mymath.h" instead of declaring fabs() explicitly. | Guido van Rossum | 1997-06-03 | 1 | -2/+1 |
|
|
* | Renamed dict.absorb() (too spungy) to dict.update(). | Guido van Rossum | 1997-06-02 | 1 | -3/+3 |
|
|
* | American spelling in doc string. | Guido van Rossum | 1997-06-02 | 1 | -1/+1 |
|
|
* | Added dict.absorb() and dict.copy(). | Guido van Rossum | 1997-05-28 | 1 | -6/+70 |
|
|
* | PyObject_Compare can raise an exception now. | Guido van Rossum | 1997-05-23 | 3 | -22/+40 |
|
|
* | PyObject_Compare can now return an error. Unfortunately, there are a | Guido van Rossum | 1997-05-23 | 1 | -0/+8 |
|
|
* | PyFile_WriteString now returns an error indicator instead of calling | Guido van Rossum | 1997-05-22 | 1 | -12/+18 |
|
|
* | Fix typo in error checking spotted by Just... | Guido van Rossum | 1997-05-22 | 1 | -1/+1 |
|
|
* | Renamed a local variable from 'PyCFunction' (which is also a typedef | Guido van Rossum | 1997-05-20 | 1 | -6/+6 |
|
|
* | Moved PyObject_{Get,Set}Attr to object.c. | Guido van Rossum | 1997-05-20 | 1 | -33/+2 |
|
|
* | Moved PyObject_{Get,Set}Attr here (from dictobject) and add PyObject_HasAttr. | Guido van Rossum | 1997-05-20 | 1 | -0/+43 |
|
|
* | Got rid of c_error in favor of errno (and EDOM/ERANGE). | Guido van Rossum | 1997-05-20 | 1 | -49/+43 |
|
|
* | Got rid of all the last_name_* bogosities. I don't think the | Guido van Rossum | 1997-05-16 | 1 | -53/+34 |
|
|
* | Oops, another forgotten renaming: varobject -> PyVarObject. | Guido van Rossum | 1997-05-15 | 1 | -5/+5 |
|
|
* | Fix reversed test for failure in PySequence_List() and PySequence_Tuple(). | Guido van Rossum | 1997-05-14 | 1 | -2/+2 |
|
|
* | Renamed mappingobject.c to dictobject.c. | Guido van Rossum | 1997-05-13 | 2 | -1036/+3 |
|
|
* | Renamed from mappingobject.c to dictobject.c. | Guido van Rossum | 1997-05-13 | 1 | -110/+104 |
|
|
* | Faster floating point allocator, same idea as the int allocator. | Guido van Rossum | 1997-05-13 | 1 | -7/+29 |
|
|
* | Add optional 'sizehint' argument to readlines(). After approximately | Guido van Rossum | 1997-05-10 | 1 | -23/+33 |
|
|
* | Rewrite readlines() to speed it up -- about a factor of 2 on my | Guido van Rossum | 1997-05-10 | 1 | -25/+89 |
|
|