- f6ca6aa New build procedure. by Guido van Rossum · 27 years ago
- 5d8123f Reordered list of methods to hopefully put the most frequently used by Guido van Rossum · 27 years ago
- 74ba247 Reordered list of methods to hopefully put the most frequently used by Guido van Rossum · 27 years ago
- 71160aa Use #include "mymath.h" instead of declaring fabs() explicitly. by Guido van Rossum · 28 years ago
- a8d5131 Renamed dict.absorb() (too spungy) to dict.update(). by Guido van Rossum · 28 years ago
- 80c2a16 American spelling in doc string. by Guido van Rossum · 28 years ago
- e3f5b9c Added dict.absorb() and dict.copy(). by Guido van Rossum · 28 years ago
- c8b6df9 PyObject_Compare can raise an exception now. by Guido van Rossum · 28 years ago
- 5b2121b PyObject_Compare can now return an error. Unfortunately, there are a by Guido van Rossum · 28 years ago
- 27a60b1 PyFile_WriteString now returns an error indicator instead of calling by Guido van Rossum · 28 years ago
- e9eec54 Fix typo in error checking spotted by Just... by Guido van Rossum · 28 years ago
- a9040ec Renamed a local variable from 'PyCFunction' (which is also a typedef by Guido van Rossum · 28 years ago
- 037b220 Moved PyObject_{Get,Set}Attr to object.c. by Guido van Rossum · 28 years ago
- 98ff96a Moved PyObject_{Get,Set}Attr here (from dictobject) and add PyObject_HasAttr. by Guido van Rossum · 28 years ago
- 9678394 Got rid of c_error in favor of errno (and EDOM/ERANGE). by Guido van Rossum · 28 years ago
- 3cca245 Got rid of all the last_name_* bogosities. I don't think the by Guido van Rossum · 28 years ago
- d0c87ee Oops, another forgotten renaming: varobject -> PyVarObject. by Guido van Rossum · 28 years ago
- e61093c Fix reversed test for failure in PySequence_List() and PySequence_Tuple(). by Guido van Rossum · 28 years ago
- 9637432 Renamed mappingobject.c to dictobject.c. by Guido van Rossum · 28 years ago
- a9e7a81 Renamed from mappingobject.c to dictobject.c. by Guido van Rossum · 28 years ago
- 93ad0df Faster floating point allocator, same idea as the int allocator. by Guido van Rossum · 28 years ago
- 789a161 Add optional 'sizehint' argument to readlines(). After approximately by Guido van Rossum · 28 years ago
- 6263d54 Rewrite readlines() to speed it up -- about a factor of 2 on my by Guido van Rossum · 28 years ago
- 5449b6e Speed up read() (i.e. read till EOF) considerably by doing a stat() to by Guido van Rossum · 28 years ago
- 0add15f removed last #ifdef SUPPORT_OBSOLETE_ACCESS bits. by Guido van Rossum · 28 years ago
- b819914 Fix by Mark Hammond to enable truncate() on Windows. by Guido van Rossum · 28 years ago
- fdf95dd Checkin of Jack's buffer mods. by Guido van Rossum · 28 years ago
- a027efa Massive changes for separate thread state management. by Guido van Rossum · 28 years ago
- c0b618a Quickly renamed the last directory. by Guido van Rossum · 28 years ago
- 1875247 Quickly renamed. by Guido van Rossum · 28 years ago
- 3648884 (Jack:) Align mapping entries to 4-words if USE_CACHE_ALIGNED is defined. by Guido van Rossum · 28 years ago
- 2095d24 Tweaks to keep the Microsoft compiler quiet. by Guido van Rossum · 28 years ago
- 8017767 Remove unused variable. by Guido van Rossum · 28 years ago
- 6191551 Remove a redundant XINCREF(value). This caused the reference count of by Guido van Rossum · 28 years ago
- 4669fb4 Several fixes reported by jim F. by Guido van Rossum · 28 years ago
- c054d70 Get rid of .conj pseudo data attribute for complex numbers. by Guido van Rossum · 28 years ago
- fb8f1ca Add clear() method to dictionary objects. by Guido van Rossum · 28 years ago
- f2e499b New long_lshift, without restriction on size of shift count, by Tim Peters. by Guido van Rossum · 28 years ago
- 45b8391 New form of PyFPE_END_PROTECT macro. by Guido van Rossum · 28 years ago
- 19700b6 Add casts to CMPERROR macro to silence SunPro compiler warnings about by Guido van Rossum · 28 years ago
- 09e6ad0 Changes for Lee Busby's SIGFPE patch set. by Guido van Rossum · 28 years ago
- 0f4bbd2 Keep gcc -Wall happy. by Guido van Rossum · 28 years ago
- 36b9f79 Slight tweak: in string_hash(), if the hash hasn't been computed yet, by Guido van Rossum · 28 years ago
- 7582bfb Kill all local variables when the frame is deallocated (moved here by Guido van Rossum · 28 years ago
- efb4609 Small lookmapping nits: by Guido van Rossum · 28 years ago
- 4acdc23 Fix bug reported by Per Lindqvist: "%#06x" % 1 stuck the 0 padding by Guido van Rossum · 28 years ago
- 9e5656c Final three poly table entries corrected by Tim Peters. by Guido van Rossum · 28 years ago
- 16e93a8 Changed the lookup algorithm again, based on Reimer Behrends's post. by Guido van Rossum · 28 years ago
- 747596a When a recycled frame has more local+stack slots than needed, by Guido van Rossum · 28 years ago
- ca756f2 Forget keeping track of whether a dictionary contains all interned by Guido van Rossum · 28 years ago
- e0e6962 Added PyCObject_Import. by Guido van Rossum · 28 years ago
- a04d47b Don't use static buffers internally for formatstring(). by Guido van Rossum · 28 years ago
- 3bb63a8 Bugfix: remove ref to fast before it's defined. by Guido van Rossum · 28 years ago
- f3e85a0 Changes that appear to give another 12% speedup. by Guido van Rossum · 28 years ago
- a412d24 Intern the various string objects created to speed up lookups. by Guido van Rossum · 28 years ago
- b56933e Intern the strings "__builtins__". by Guido van Rossum · 28 years ago
- c6d0670 Intern the strings created in getattr() and setattr(). by Guido van Rossum · 28 years ago
- 2a61e74 String interning. by Guido van Rossum · 28 years ago
- 792fd43 Comment out extend_stack() -- it is no longer needed. by Guido van Rossum · 28 years ago
- 7d18159 Rewrote lookmapping() according to suggestions by Jyrki Alakuijala. by Guido van Rossum · 28 years ago
- 6f72f97 Increased buffer sizes used by hex() and oct() -- on 64-bit or 128-bit by Guido van Rossum · 28 years ago
- ebee025 Changed hex() and oct() again, to never emit a '-' sign. by Guido van Rossum · 28 years ago
- 919cf1a New, better hash for floating point and complex by Guido van Rossum · 28 years ago
- 80dd9b6 Subtle change to hex/oct formatting so the largest negative number by Guido van Rossum · 28 years ago
- 541cdd8 Fix overflow test for multiply to catch some cases it missed. by Guido van Rossum · 28 years ago
- 53756b1 Added PyLong_FromUnsignedLong() and PyLong_AsUnsignedLong(). by Guido van Rossum · 28 years ago
- babab68 Removed all traces of accessobject.c. by Guido van Rossum · 28 years ago
- f90edde PySequence_Index(): set exception when object is not found in by Barry Warsaw · 28 years ago
- 0969ad2 Better tuple hash function. by Guido van Rossum · 28 years ago
- cc15b42 Change comment about MINSIZE -- 10 is optimal for Python. by Guido van Rossum · 28 years ago
- 3176bb1 Some more tuning of quicksort: use pointers instead of indexing. by Guido van Rossum · 28 years ago
- 3f236de Added new quicksort implementation, tailored to sorting arrays of by Guido van Rossum · 28 years ago
- 067998f Add const to error and newstring functions by Guido van Rossum · 28 years ago
- 9478dd4 Fix core dump from pow(x,y,0). Make gcc -Wall happy. by Guido van Rossum · 28 years ago
- da9c271 Make gcc -Wall happy by Guido van Rossum · 28 years ago
- 472c04f Fix newlongobject so it will work for 64-bit as well as 32-bit hardware by Guido van Rossum · 28 years ago
- a0a69b8 Experimental new implementation of dictionary comparison. This by Guido van Rossum · 28 years ago
- 685a38e Make gcc -Wall happy. by Guido van Rossum · 28 years ago
- 04f95d5 Better implementation of PyCObject_AsVoidPtr(). by Guido van Rossum · 28 years ago
- cbd1e4e Yet more elaborate message for exception in __del__. Make gcc -Wall happy. by Guido van Rossum · 28 years ago
- 3c5936a Added missing PySequence_List. by Guido van Rossum · 28 years ago
- 052b7e1 Make Py_ReturnNullError() statis as it should be. by Guido van Rossum · 28 years ago
- 08ef9d9 Only call sq_length in Sequence_GetItem for negative index. by Guido van Rossum · 28 years ago
- 8dbcdd0 correct typo in return variable for PySequence_Index() by Guido van Rossum · 28 years ago
- d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
- fde7a75 Fixed compare function to do first char comparison in unsigned mode, by Guido van Rossum · 28 years ago
- 8bcf369 Support passing in an empty dictionary of keywords to newinstanceobject. by Guido van Rossum · 28 years ago
- e449af7 Ellipses -> Ellipsis rename (the dictionary really says that it should by Guido van Rossum · 28 years ago
- 336c699 Fix subtle bug detected by Jim F. by Guido van Rossum · 28 years ago
- 2404858 Oops... Need to clear c_error before calling c_quot(). by Guido van Rossum · 28 years ago
- 3be12e9 Properly(?) implemented remainder and divmod (Tim Hochberg) by Guido van Rossum · 28 years ago
- d4ab3cd Raise exception instead of dropping imag part for conversion to int, by Guido van Rossum · 28 years ago
- 22a85e5 More detailed error message about exception in __del__ by Guido van Rossum · 28 years ago
- b7fc304 Correct typo in setattr: return -1 for error, not NULL by Guido van Rossum · 28 years ago
- eddcb3b Multiply by 1000003 instead of 3 in string hach by Guido van Rossum · 28 years ago
- b23a60f Get rid of bogus MSC_VER undef of CHECK() by Guido van Rossum · 28 years ago
- ee09fc1 Don't dump core on complex % or divmod -- raise a TypeError exception. by Guido van Rossum · 28 years ago
- e5920bc Use getstringsize where available instead of strlen. by Guido van Rossum · 28 years ago
- ad89978 Be a bit more careful with printing a warning for a failed __del__. by Guido van Rossum · 28 years ago
- 6cdc6f4 Added PyObject_DelItem and PySequence_Del{Item,Slice}. by Guido van Rossum · 28 years ago