1. a027efa Massive changes for separate thread state management. by Guido van Rossum · 27 years ago
  2. c0b618a Quickly renamed the last directory. by Guido van Rossum · 27 years ago
  3. 1875247 Quickly renamed. by Guido van Rossum · 27 years ago
  4. 3648884 (Jack:) Align mapping entries to 4-words if USE_CACHE_ALIGNED is defined. by Guido van Rossum · 27 years ago
  5. 2095d24 Tweaks to keep the Microsoft compiler quiet. by Guido van Rossum · 27 years ago
  6. 8017767 Remove unused variable. by Guido van Rossum · 27 years ago
  7. 6191551 Remove a redundant XINCREF(value). This caused the reference count of by Guido van Rossum · 27 years ago
  8. 4669fb4 Several fixes reported by jim F. by Guido van Rossum · 27 years ago
  9. c054d70 Get rid of .conj pseudo data attribute for complex numbers. by Guido van Rossum · 27 years ago
  10. fb8f1ca Add clear() method to dictionary objects. by Guido van Rossum · 27 years ago
  11. f2e499b New long_lshift, without restriction on size of shift count, by Tim Peters. by Guido van Rossum · 27 years ago
  12. 45b8391 New form of PyFPE_END_PROTECT macro. by Guido van Rossum · 27 years ago
  13. 19700b6 Add casts to CMPERROR macro to silence SunPro compiler warnings about by Guido van Rossum · 27 years ago
  14. 09e6ad0 Changes for Lee Busby's SIGFPE patch set. by Guido van Rossum · 28 years ago
  15. 0f4bbd2 Keep gcc -Wall happy. by Guido van Rossum · 28 years ago
  16. 36b9f79 Slight tweak: in string_hash(), if the hash hasn't been computed yet, by Guido van Rossum · 28 years ago
  17. 7582bfb Kill all local variables when the frame is deallocated (moved here by Guido van Rossum · 28 years ago
  18. efb4609 Small lookmapping nits: by Guido van Rossum · 28 years ago
  19. 4acdc23 Fix bug reported by Per Lindqvist: "%#06x" % 1 stuck the 0 padding by Guido van Rossum · 28 years ago
  20. 9e5656c Final three poly table entries corrected by Tim Peters. by Guido van Rossum · 28 years ago
  21. 16e93a8 Changed the lookup algorithm again, based on Reimer Behrends's post. by Guido van Rossum · 28 years ago
  22. 747596a When a recycled frame has more local+stack slots than needed, by Guido van Rossum · 28 years ago
  23. ca756f2 Forget keeping track of whether a dictionary contains all interned by Guido van Rossum · 28 years ago
  24. e0e6962 Added PyCObject_Import. by Guido van Rossum · 28 years ago
  25. a04d47b Don't use static buffers internally for formatstring(). by Guido van Rossum · 28 years ago
  26. 3bb63a8 Bugfix: remove ref to fast before it's defined. by Guido van Rossum · 28 years ago
  27. f3e85a0 Changes that appear to give another 12% speedup. by Guido van Rossum · 28 years ago
  28. a412d24 Intern the various string objects created to speed up lookups. by Guido van Rossum · 28 years ago
  29. b56933e Intern the strings "__builtins__". by Guido van Rossum · 28 years ago
  30. c6d0670 Intern the strings created in getattr() and setattr(). by Guido van Rossum · 28 years ago
  31. 2a61e74 String interning. by Guido van Rossum · 28 years ago
  32. 792fd43 Comment out extend_stack() -- it is no longer needed. by Guido van Rossum · 28 years ago
  33. 7d18159 Rewrote lookmapping() according to suggestions by Jyrki Alakuijala. by Guido van Rossum · 28 years ago
  34. 6f72f97 Increased buffer sizes used by hex() and oct() -- on 64-bit or 128-bit by Guido van Rossum · 28 years ago
  35. ebee025 Changed hex() and oct() again, to never emit a '-' sign. by Guido van Rossum · 28 years ago
  36. 919cf1a New, better hash for floating point and complex by Guido van Rossum · 28 years ago
  37. 80dd9b6 Subtle change to hex/oct formatting so the largest negative number by Guido van Rossum · 28 years ago
  38. 541cdd8 Fix overflow test for multiply to catch some cases it missed. by Guido van Rossum · 28 years ago
  39. 53756b1 Added PyLong_FromUnsignedLong() and PyLong_AsUnsignedLong(). by Guido van Rossum · 28 years ago
  40. babab68 Removed all traces of accessobject.c. by Guido van Rossum · 28 years ago
  41. f90edde PySequence_Index(): set exception when object is not found in by Barry Warsaw · 28 years ago
  42. 0969ad2 Better tuple hash function. by Guido van Rossum · 28 years ago
  43. cc15b42 Change comment about MINSIZE -- 10 is optimal for Python. by Guido van Rossum · 28 years ago
  44. 3176bb1 Some more tuning of quicksort: use pointers instead of indexing. by Guido van Rossum · 28 years ago
  45. 3f236de Added new quicksort implementation, tailored to sorting arrays of by Guido van Rossum · 28 years ago
  46. 067998f Add const to error and newstring functions by Guido van Rossum · 28 years ago
  47. 9478dd4 Fix core dump from pow(x,y,0). Make gcc -Wall happy. by Guido van Rossum · 28 years ago
  48. da9c271 Make gcc -Wall happy by Guido van Rossum · 28 years ago
  49. 472c04f Fix newlongobject so it will work for 64-bit as well as 32-bit hardware by Guido van Rossum · 28 years ago
  50. a0a69b8 Experimental new implementation of dictionary comparison. This by Guido van Rossum · 28 years ago
  51. 685a38e Make gcc -Wall happy. by Guido van Rossum · 28 years ago
  52. 04f95d5 Better implementation of PyCObject_AsVoidPtr(). by Guido van Rossum · 28 years ago
  53. cbd1e4e Yet more elaborate message for exception in __del__. Make gcc -Wall happy. by Guido van Rossum · 28 years ago
  54. 3c5936a Added missing PySequence_List. by Guido van Rossum · 28 years ago
  55. 052b7e1 Make Py_ReturnNullError() statis as it should be. by Guido van Rossum · 28 years ago
  56. 08ef9d9 Only call sq_length in Sequence_GetItem for negative index. by Guido van Rossum · 28 years ago
  57. 8dbcdd0 correct typo in return variable for PySequence_Index() by Guido van Rossum · 28 years ago
  58. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  59. fde7a75 Fixed compare function to do first char comparison in unsigned mode, by Guido van Rossum · 28 years ago
  60. 8bcf369 Support passing in an empty dictionary of keywords to newinstanceobject. by Guido van Rossum · 28 years ago
  61. e449af7 Ellipses -> Ellipsis rename (the dictionary really says that it should by Guido van Rossum · 28 years ago
  62. 336c699 Fix subtle bug detected by Jim F. by Guido van Rossum · 28 years ago
  63. 2404858 Oops... Need to clear c_error before calling c_quot(). by Guido van Rossum · 28 years ago
  64. 3be12e9 Properly(?) implemented remainder and divmod (Tim Hochberg) by Guido van Rossum · 28 years ago
  65. d4ab3cd Raise exception instead of dropping imag part for conversion to int, by Guido van Rossum · 28 years ago
  66. 22a85e5 More detailed error message about exception in __del__ by Guido van Rossum · 28 years ago
  67. b7fc304 Correct typo in setattr: return -1 for error, not NULL by Guido van Rossum · 28 years ago
  68. eddcb3b Multiply by 1000003 instead of 3 in string hach by Guido van Rossum · 28 years ago
  69. b23a60f Get rid of bogus MSC_VER undef of CHECK() by Guido van Rossum · 28 years ago
  70. ee09fc1 Don't dump core on complex % or divmod -- raise a TypeError exception. by Guido van Rossum · 28 years ago
  71. e5920bc Use getstringsize where available instead of strlen. by Guido van Rossum · 28 years ago
  72. ad89978 Be a bit more careful with printing a warning for a failed __del__. by Guido van Rossum · 28 years ago
  73. 6cdc6f4 Added PyObject_DelItem and PySequence_Del{Item,Slice}. by Guido van Rossum · 28 years ago
  74. 019f424 More efficient handling of "__doc__" lookup. by Guido van Rossum · 28 years ago
  75. 89227eb Write warning about exception in __del__ to stderr, not stdout. by Guido van Rossum · 28 years ago
  76. 926518b Changes to make the file acceptable to K&R C compilers (HPUX, SunOS 4.x). by Guido van Rossum · 28 years ago
  77. c13bcca Test for negative # to the nonintegral float power here. by Guido van Rossum · 28 years ago
  78. 0dfcf75 Disable support for access statement by Guido van Rossum · 28 years ago
  79. aacdc9d Define reference count admin debug functions to return void. by Guido van Rossum · 28 years ago
  80. 2878a69 Optimizations by Sjoerd: by Guido van Rossum · 28 years ago
  81. d8eb1b3 Support for tp_getattro, tp_setattro (Sjoerd) by Guido van Rossum · 28 years ago
  82. 929f1b8 Use pre-created string objects for most common exceptions by Guido van Rossum · 28 years ago
  83. 86c04c2 Correct wrong calculation of pow(0.0, 0.0, negative_number) by Guido van Rossum · 28 years ago
  84. cee555b Allow compilation by K&R C compiler. by Guido van Rossum · 28 years ago
  85. fd4904c repr("...") -> "Ellipses" by Guido van Rossum · 28 years ago
  86. f2d125b Added sliceobject.c by Guido van Rossum · 28 years ago
  87. 310968d Speedup suggested by Sjoerd by Guido van Rossum · 28 years ago
  88. 6c02a2f Use NEWOBJ() macro instead of calling newobject() directly. by Guido van Rossum · 28 years ago
  89. 9e720e3 complex -> Py_complex by Guido van Rossum · 28 years ago
  90. f5030ab Hacks for MS_COREDLL by Guido van Rossum · 28 years ago
  91. 3cb4868 Only __dict__ and __class__ are read-only instance attributes by Guido van Rossum · 28 years ago
  92. 9d81b55 Different logic for defining CHECK(); 16-bit MSC specific define. by Guido van Rossum · 28 years ago
  93. ded690f rename printrefs, getobjects to _Py_ prefix by Guido van Rossum · 28 years ago
  94. 363078a make some things static by Guido van Rossum · 28 years ago
  95. 441e4ab new debugger symbol names by Guido van Rossum · 28 years ago
  96. 84a9032 TRACE_REFS -> Py_TRACE_REFS. by Guido van Rossum · 28 years ago
  97. f976326 Plug memory leak in the previous fix :-( by Guido van Rossum · 28 years ago
  98. 993952b Fix obscure bug in string%mapping where the mapping creates its items by Guido van Rossum · 28 years ago
  99. 6dabc98 Added __name__ attribute to class instance method objects. by Guido van Rossum · 28 years ago
  100. 7241879 use 'j' instead of 'i' for imaginary constants by Guido van Rossum · 29 years ago