| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | 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 |
|
|
* | Speed up read() (i.e. read till EOF) considerably by doing a stat() to | Guido van Rossum | 1997-05-09 | 1 | -15/+65 |
|
|
* | removed last #ifdef SUPPORT_OBSOLETE_ACCESS bits. | Guido van Rossum | 1997-05-09 | 2 | -103/+5 |
|
|
* | Fix by Mark Hammond to enable truncate() on Windows. | Guido van Rossum | 1997-05-06 | 1 | -0/+6 |
|
|
* | Checkin of Jack's buffer mods. | Guido van Rossum | 1997-05-05 | 2 | -1/+77 |
|
|
* | Massive changes for separate thread state management. | Guido van Rossum | 1997-05-05 | 1 | -2/+13 |
|
|
* | Quickly renamed the last directory. | Guido van Rossum | 1997-05-02 | 18 | -3088/+3155 |
|
|
* | Quickly renamed. | Guido van Rossum | 1997-04-29 | 1 | -100/+101 |
|
|
* | (Jack:) Align mapping entries to 4-words if USE_CACHE_ALIGNED is defined. | Guido van Rossum | 1997-04-11 | 2 | -0/+6 |
|
|
* | Tweaks to keep the Microsoft compiler quiet. | Guido van Rossum | 1997-04-09 | 5 | -18/+18 |
|
|
* | Remove unused variable. | Guido van Rossum | 1997-04-09 | 1 | -1/+0 |
|
|
* | Remove a redundant XINCREF(value). This caused the reference count of | Guido van Rossum | 1997-04-03 | 1 | -1/+0 |
|
|
* | Several fixes reported by jim F. | Guido van Rossum | 1997-04-02 | 1 | -31/+28 |
|
|
* | Get rid of .conj pseudo data attribute for complex numbers. | Guido van Rossum | 1997-04-01 | 1 | -5/+2 |
|
|
* | Add clear() method to dictionary objects. | Guido van Rossum | 1997-03-21 | 2 | -0/+26 |
|
|
* | New long_lshift, without restriction on size of shift count, by Tim Peters. | Guido van Rossum | 1997-03-16 | 1 | -26/+22 |
|
|
* | New form of PyFPE_END_PROTECT macro. | Guido van Rossum | 1997-03-14 | 3 | -17/+17 |
|
|
* | Add casts to CMPERROR macro to silence SunPro compiler warnings about | Guido van Rossum | 1997-03-05 | 1 | -1/+1 |
|
|
* | Changes for Lee Busby's SIGFPE patch set. | Guido van Rossum | 1997-02-14 | 3 | -10/+63 |
|
|
* | Keep gcc -Wall happy. | Guido van Rossum | 1997-02-14 | 1 | -2/+2 |
|
|
* | Slight tweak: in string_hash(), if the hash hasn't been computed yet, | Guido van Rossum | 1997-02-14 | 1 | -0/+5 |
|
|
* | Kill all local variables when the frame is deallocated (moved here | Guido van Rossum | 1997-02-14 | 1 | -1/+11 |
|
|
* | Small lookmapping nits: | Guido van Rossum | 1997-01-29 | 2 | -10/+12 |
|
|
* | Fix bug reported by Per Lindqvist: "%#06x" % 1 stuck the 0 padding | Guido van Rossum | 1997-01-29 | 1 | -1/+13 |
|
|
* | Final three poly table entries corrected by Tim Peters. | Guido van Rossum | 1997-01-29 | 2 | -62/+60 |
|
|
* | Changed the lookup algorithm again, based on Reimer Behrends's post. | Guido van Rossum | 1997-01-28 | 2 | -228/+202 |
|
|
* | When a recycled frame has more local+stack slots than needed, | Guido van Rossum | 1997-01-24 | 1 | -2/+4 |
|
|
* | Forget keeping track of whether a dictionary contains all interned | Guido van Rossum | 1997-01-23 | 2 | -178/+110 |
|
|
* | Added PyCObject_Import. | Guido van Rossum | 1997-01-22 | 1 | -18/+39 |
|
|
* | Don't use static buffers internally for formatstring(). | Guido van Rossum | 1997-01-21 | 1 | -25/+26 |
|
|
* | Bugfix: remove ref to fast before it's defined. | Guido van Rossum | 1997-01-20 | 1 | -1/+1 |
|
|
* | Changes that appear to give another 12% speedup. | Guido van Rossum | 1997-01-20 | 1 | -87/+55 |
|
|
* | Intern the various string objects created to speed up lookups. | Guido van Rossum | 1997-01-18 | 1 | -25/+25 |
|
|
* | Intern the strings "__builtins__". | Guido van Rossum | 1997-01-18 | 1 | -1/+1 |
|
|
* | Intern the strings created in getattr() and setattr(). | Guido van Rossum | 1997-01-18 | 1 | -2/+2 |
|
|
* | String interning. | Guido van Rossum | 1997-01-18 | 3 | -32/+285 |
|
|
* | Comment out extend_stack() -- it is no longer needed. | Guido van Rossum | 1997-01-17 | 1 | -0/+2 |
|
|
* | Rewrote lookmapping() according to suggestions by Jyrki Alakuijala. | Guido van Rossum | 1997-01-16 | 2 | -42/+142 |
|
|
* | Increased buffer sizes used by hex() and oct() -- on 64-bit or 128-bit | Guido van Rossum | 1997-01-14 | 1 | -2/+2 |
|
|
* | Changed hex() and oct() again, to never emit a '-' sign. | Guido van Rossum | 1997-01-12 | 1 | -7/+2 |
|
|
* | New, better hash for floating point and complex | Guido van Rossum | 1997-01-11 | 2 | -6/+41 |
|
|
* | Subtle change to hex/oct formatting so the largest negative number | Guido van Rossum | 1997-01-10 | 1 | -2/+2 |
|
|
* | Fix overflow test for multiply to catch some cases it missed. | Guido van Rossum | 1997-01-06 | 1 | -2/+4 |
|
|