- 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
- 019f424 More efficient handling of "__doc__" lookup. by Guido van Rossum · 28 years ago
- 89227eb Write warning about exception in __del__ to stderr, not stdout. by Guido van Rossum · 28 years ago
- 926518b Changes to make the file acceptable to K&R C compilers (HPUX, SunOS 4.x). by Guido van Rossum · 28 years ago
- c13bcca Test for negative # to the nonintegral float power here. by Guido van Rossum · 28 years ago
- 0dfcf75 Disable support for access statement by Guido van Rossum · 28 years ago
- aacdc9d Define reference count admin debug functions to return void. by Guido van Rossum · 28 years ago
- 2878a69 Optimizations by Sjoerd: by Guido van Rossum · 28 years ago
- d8eb1b3 Support for tp_getattro, tp_setattro (Sjoerd) by Guido van Rossum · 28 years ago
- 929f1b8 Use pre-created string objects for most common exceptions by Guido van Rossum · 28 years ago
- 86c04c2 Correct wrong calculation of pow(0.0, 0.0, negative_number) by Guido van Rossum · 28 years ago
- cee555b Allow compilation by K&R C compiler. by Guido van Rossum · 28 years ago
- fd4904c repr("...") -> "Ellipses" by Guido van Rossum · 28 years ago
- f2d125b Added sliceobject.c by Guido van Rossum · 28 years ago
- 310968d Speedup suggested by Sjoerd by Guido van Rossum · 28 years ago
- 6c02a2f Use NEWOBJ() macro instead of calling newobject() directly. by Guido van Rossum · 28 years ago
- 9e720e3 complex -> Py_complex by Guido van Rossum · 28 years ago
- f5030ab Hacks for MS_COREDLL by Guido van Rossum · 28 years ago
- 3cb4868 Only __dict__ and __class__ are read-only instance attributes by Guido van Rossum · 28 years ago
- 9d81b55 Different logic for defining CHECK(); 16-bit MSC specific define. by Guido van Rossum · 28 years ago
- ded690f rename printrefs, getobjects to _Py_ prefix by Guido van Rossum · 28 years ago
- 363078a make some things static by Guido van Rossum · 28 years ago
- 441e4ab new debugger symbol names by Guido van Rossum · 28 years ago
- 84a9032 TRACE_REFS -> Py_TRACE_REFS. by Guido van Rossum · 28 years ago
- f976326 Plug memory leak in the previous fix :-( by Guido van Rossum · 28 years ago
- 993952b Fix obscure bug in string%mapping where the mapping creates its items by Guido van Rossum · 28 years ago
- 6dabc98 Added __name__ attribute to class instance method objects. by Guido van Rossum · 29 years ago
- 7241879 use 'j' instead of 'i' for imaginary constants by Guido van Rossum · 29 years ago
- 1e7b2aa Removed unused var by Jack Jansen · 29 years ago
- d8b4925 added complex and c objects by Guido van Rossum · 29 years ago
- 97ead3f Hack to force loading of cobject.o by Guido van Rossum · 29 years ago
- 39739ea better power implementation by Guido van Rossum · 29 years ago
- cf3d108 Added PyComplex_AsCComplex by Guido van Rossum · 29 years ago
- f9fca92 complex numbers a la Konrad Hinsen by Guido van Rossum · 29 years ago
- 77654a7 opaque C object a la Jim Fulton by Guido van Rossum · 29 years ago
- 992ded8 fix free memory reads in dictlookup et al by Guido van Rossum · 29 years ago
- 8ba873b adapted to K&R C by Guido van Rossum · 29 years ago
- 6f011d7 Get ordering right for TRACE_REFS/COUNT_ALLOCS combination (otherwise by Sjoerd Mullender · 29 years ago
- 6ec3c65 Implemented two new functions in sys: by Sjoerd Mullender · 29 years ago
- 740f357 Fixed calling of __del__ method with TRACE_REFS defined. by Sjoerd Mullender · 29 years ago
- ac21f6a class objects are read-only in restricted mode by Guido van Rossum · 29 years ago
- 055968c better err checks in resizetuple by Guido van Rossum · 29 years ago
- a83f270 changes for keyword args to built-in functions and classes by Guido van Rossum · 29 years ago
- bdd207a better policy regarding NULL locals by Guido van Rossum · 29 years ago
- 2271bf7 changes for keyword arguments and fast function call; added abstract.c by Guido van Rossum · 29 years ago
- e15dee5 Generic Abstract Object Interface by Guido van Rossum · 29 years ago
- 1311e3c args to call_object must be tuple or NULL by Guido van Rossum · 29 years ago
- d3f9a1a fix read(0), readline(0); make tuple for call_object args by Guido van Rossum · 29 years ago
- e08dea19 MW does not always set errno on failing fopen() by Jack Jansen · 30 years ago
- e9df727 change comparing instance methods by Guido van Rossum · 30 years ago
- d8953cb change in counting freed objects by Guido van Rossum · 30 years ago
- 5b7f3cd Use mappinglookup instead of dictlookup for looking up __builtin__. by Sjoerd Mullender · 30 years ago
- 6f9e433 fix dusty debugging macros by Guido van Rossum · 30 years ago
- 5fe6058 a few peephole optimizations by Guido van Rossum · 30 years ago
- 687ec18 changes for MPW by Guido van Rossum · 30 years ago
- 07e3a7e for MPW __SC__ compiler by Guido van Rossum · 30 years ago
- caeaafc don't complain about too many args if arg is a dict by Guido van Rossum · 30 years ago
- 295d171 explicitly init flags in methodlists by Guido van Rossum · 30 years ago
- 67ca701 NeXT/Sparc 3.3 fix by Guido van Rossum · 30 years ago
- 9fa2c11 use Py_CHARMASK; and don't check for neg. float to the float power here by Guido van Rossum · 30 years ago
- 2497ead make size arg signed by Guido van Rossum · 30 years ago