1. 1a3b19a long_from_binary_base(): Sped this a little by computing the # of bits by Tim Peters · 22 years ago
  2. efb9625 Tightened a too-generous assert. by Tim Peters · 22 years ago
  3. bf2674b long(string, base) now takes time linear in len(string) when base is a by Tim Peters · 22 years ago
  4. ee1a53c cPickle.c: Full support for the new LONG1 and LONG4. Added comments. by Tim Peters · 22 years ago
  5. 1f1b2d2 Removed all uses of the out-of-favor __safe_for_unpickling__ magic by Tim Peters · 22 years ago
  6. 08a1d9c Squash compiler wng about signed/unsigned comparison mismatch. by Tim Peters · 22 years ago
  7. 4f0dcc9 Provide __module__ attributes for functions defined in C and Python. by Jeremy Hylton · 22 years ago
  8. 2e0b18a Change the treatment of positions returned by PEP293 by Walter Dörwald · 22 years ago
  9. 5b8132f _PyLong_NumBits(): The definition of this was too specific to the quirky by Tim Peters · 22 years ago
  10. 5d9113d Implement appropriate __getnewargs__ for all immutable subclassable builtin by Guido van Rossum · 22 years ago
  11. baefd9e Added new private API function _PyLong_NumBits. This will be used at the by Tim Peters · 22 years ago
  12. abcb0c0 Fix SF bug# 676155, RuntimeWarning with tp_compare by Neal Norwitz · 22 years ago
  13. 4440f22 Recursive compare machinery: The code that intended to exempt tuples by Tim Peters · 22 years ago
  14. fa56e2d SF # 669553, fix memory (ref) leaks by Neal Norwitz · 22 years ago
  15. 5d5e7c0 SF patch #664192 bug #661913: inconsistent error messages between string by Raymond Hettinger · 22 years ago
  16. 1a99750 Fix SF bug #667147, Segmentation fault printing str subclass by Neal Norwitz · 22 years ago
  17. adc7274 Fix charmapencode_lookup(), so that a None value in the mapping by Walter Dörwald · 22 years ago
  18. 034d976 Remove variable owned from PyUnicode_FromEncodedObject, which is unused by Walter Dörwald · 22 years ago
  19. 373c741 Fix for SF bug #642358: only provide a new with a __dict__ or by Guido van Rossum · 22 years ago
  20. cd11880 Add a refinement to SLOT1BINFULL() that fixes the problem reported in by Guido van Rossum · 22 years ago
  21. 0a2f849 GvR's idea to use memset() for the most common special case of repeating by Raymond Hettinger · 22 years ago
  22. 698258a Optimize string_repeat. by Raymond Hettinger · 22 years ago
  23. 541ceec PyCFunction_Call(): Combined two switch cases w/ identical bodies. by Tim Peters · 22 years ago
  24. bf43f8a SF Patch #661440: Refactor and streamline PyCFunction_Call by Raymond Hettinger · 22 years ago
  25. 6f2bb23 Grammatical fix in comment. by Greg Ward · 22 years ago
  26. af6a27a Allow PyFile_GetLine() to return Unicode objects. Fixes #660165. by Martin v. Löwis · 22 years ago
  27. 4abd5f0 Allow list sort's comparison function to explicitly be None. See SF patch by Skip Montanaro · 22 years ago
  28. a3a243e Merge to trunk from release branch: by Guido van Rossum · 22 years ago
  29. 768158c Fix an out-of-bound index in pmerge() discovered by Zooko (SF bug by Guido van Rossum · 22 years ago
  30. b2501f4 Since the *_Init() are private, prefix with _, suggested by Skip by Neal Norwitz · 22 years ago
  31. c91ed40 SF #561244, Micro optimizations by Neal Norwitz · 22 years ago
  32. 0df2958 Consolidate the int and long sequence repeat code. Before the change, by Neil Schemenauer · 22 years ago
  33. d4b0fea Always try nb_* slots before trying sq_concat, sq_inplace_concat, sq_repeat, by Neil Schemenauer · 22 years ago
  34. 79f5783 Patch for bug #659709: bogus computation of float length by Marc-André Lemburg · 22 years ago
  35. ea3fdf4 SF patch #659536: Use PyArg_UnpackTuple where possible. by Raymond Hettinger · 22 years ago
  36. f8bcfb1 SF Bug 645777: list.extend() works with any iterable and is no longer by Raymond Hettinger · 22 years ago
  37. ee65e22 Fix bug introduced by SF patch #643835, Set Next Statement for Python debuggers by Neal Norwitz · 22 years ago
  38. 91787cb Undefine MIN and MAX before defining by Neal Norwitz · 22 years ago
  39. 8feeabb SF # 654974, fix unchecked return values in structseq by Neal Norwitz · 22 years ago
  40. a080be8 * Objects/fileobject.c by Gustavo Niemeyer · 22 years ago
  41. cfd3884 This is Richie Hindle's patch by Michael W. Hudson · 22 years ago
  42. 786ddb2 Fixed bug by Gustavo Niemeyer · 22 years ago
  43. a828586 Punctuation fix. by Raymond Hettinger · 22 years ago
  44. 3bbc0ee Tighten the tests for assignment to __bases__: disallow empty tuple. by Guido van Rossum · 22 years ago
  45. 00b6127 Patch #650653: Raise always value error if the table is not 256 bytes long. by Martin v. Löwis · 22 years ago
  46. 7e5c6a0 Change issubclass() so that recursive tuples (directly or indirectly by Walter Dörwald · 22 years ago
  47. d9a6ad3 Enhance issubclass() and PyObject_IsSubclass() so that a tuple is by Walter Dörwald · 22 years ago
  48. 32b4a1b Constify char* API. Fixes #651363. 2.2 candidate. by Martin v. Löwis · 22 years ago
  49. 6233c9b Patch #650834: Document 'U' in file mode, remove stale variables. by Martin v. Löwis · 22 years ago
  50. d2bef82 Update comments about the performance of xrange(). by Raymond Hettinger · 22 years ago
  51. bca1cbc SF 548651: Fix the METH_CLASS implementation. by Tim Peters · 22 years ago
  52. ea7f75d slot_nb_nonzero(): Another leak uncovered by the sandbox datetime by Tim Peters · 22 years ago
  53. c2e095f Fix typo in abstract.c which caused __rpow__ to not be invoked. by Raymond Hettinger · 22 years ago
  54. e03e5b1 Remove assumption that cls is a subclass of dict. by Raymond Hettinger · 22 years ago
  55. 61ce0a9 slot_tp_hash(): In the normal path, this leaked a reference to the by Tim Peters · 22 years ago
  56. 79acb9e Patch #614055: Support OpenVMS. by Martin v. Löwis · 22 years ago
  57. a69c030 The final tweaks before closing by Michael W. Hudson · 22 years ago
  58. b02bb5e Replace BadInternalCall with TypeError. Add a test case. Fix whitespace. by Raymond Hettinger · 22 years ago
  59. ef786ae Add missing decref by Neal Norwitz · 22 years ago
  60. ade8c8b2 Nudge getting __module__ and __name__ for new-style classes so that by Michael W. Hudson · 22 years ago
  61. 7e7c00d I don't know why staring at the email to python-checkins made me by Michael W. Hudson · 22 years ago
  62. 586da8f Readjustments to the way we cope with exceptions from subclasses' by Michael W. Hudson · 22 years ago
  63. caf17be I had the inheritance cycle stuff backwards. Oops! by Michael W. Hudson · 22 years ago
  64. e33d3df SF Patch 643443. Added dict.fromkeys(iterable, value=None), a class by Raymond Hettinger · 22 years ago
  65. ac74f5d Initialize a variable. Hope this makes things work for Guido. by Michael W. Hudson · 22 years ago
  66. 98bbc49 This is my patch: by Michael W. Hudson · 22 years ago
  67. 98f3373 A tweaked version of Jeremy's patch #642489, to produce better error by Guido van Rossum · 22 years ago
  68. b5c980b Add unidata_version. Bump generator version number. by Martin v. Löwis · 22 years ago
  69. d5169ba Regenerate from Unicode 3.2.0 to include all First/Last ranges. by Martin v. Löwis · 22 years ago
  70. b808c5c Simplify use of NB_BINOP and NB_TERNOP by making them do the pointer by Neil Schemenauer · 22 years ago
  71. d46fbc3 Remove special handling of str and unicode in PyNumber_InPlaceRemainder. They by Neil Schemenauer · 22 years ago
  72. a797d81 Patch #642500 with slight modifications: allow keyword arguments in by Just van Rossum · 22 years ago
  73. 39f59b0 Remove MALLOC_ZERO_RETURNS_NULL. by Martin v. Löwis · 22 years ago
  74. 0073f2e Fix --disable-unicode compilation problems. by Martin v. Löwis · 22 years ago
  75. 7d79124 float_int(): Some systems raise an exception if a double is cast to by Tim Peters · 22 years ago
  76. f171540 Change int() so that passing a string, unicode, float or long argument by Walter Dörwald · 22 years ago
  77. ce30bc9 Add nb_remainder (i.e. __mod__) slot to unicode type. Fixes SF bug #615506. by Neil Schemenauer · 22 years ago
  78. a6cd4e6 Add nb_remainder (i.e. __mod__) slot to str type. Fixes SF bug #615506. by Neil Schemenauer · 22 years ago
  79. 2c77e90 Improve exception message raised by PyFloat_AsDouble if the object does not by Neil Schemenauer · 22 years ago
  80. 26db587 str and unicode objects now have a __mod__ slot so don't special case them in by Neil Schemenauer · 22 years ago
  81. 89350a4 Remove _Py_ResetReferences. Fixes bug #529750 "Circular reference makes by Neil Schemenauer · 22 years ago
  82. 9a6b8d8 Repaired illegal syntax most compilers probably let slide (but MSVC by Tim Peters · 22 years ago
  83. 1f12131 Use the new C3 MRO algorithm, implemented by Samuele Pedroni (SF patch by Guido van Rossum · 22 years ago
  84. 80a1bf4 Fix SF # 635969, No error "not all arguments converted" by Neal Norwitz · 22 years ago
  85. b9099c3 SF patch 637176: list.sort crasher by Tim Peters · 22 years ago
  86. 5ae8e01 Restore attribute access so that the following work again: by Raymond Hettinger · 22 years ago
  87. 07e1476 Make int("...") return a long if an int would overflow. by Walter Dörwald · 22 years ago
  88. cbd6fb9 Handle really big steps in extended slices. by Michael W. Hudson · 22 years ago
  89. 03b109a Use PyOS_snprintf() instead of sprintf and wrap the long line by Neal Norwitz · 22 years ago
  90. 2801fe1 Use PyList_CheckExact and PyTuple_CheckExact for checking whether by Michael W. Hudson · 22 years ago
  91. 5da854f This is Alex Martelli's patch by Michael W. Hudson · 22 years ago
  92. 173f11d Some days, I think my comment of by Michael W. Hudson · 22 years ago
  93. f740bdf Since properties are supported here, is possible that by Guido van Rossum · 22 years ago
  94. 8c14028 Patch #627105: Document that SYSTEM_PAGE_SIZE really should not be by Martin v. Löwis · 22 years ago
  95. 9cd87aa Fix for bug #626172: crash using unicode latin1 single char by Marc-André Lemburg · 22 years ago
  96. edf368c Make lower/upper/title work for non-BMP characters. by Martin v. Löwis · 22 years ago
  97. 673cd82 Fix SF # 624982, Potential AV in slot_sq_item, by Greg Chapman by Neal Norwitz · 22 years ago
  98. 9def6a3 Update to Unicode 3.2 database. by Martin v. Löwis · 22 years ago
  99. 617080b Fix (real! :-) memory leaks in half_cmp and half_binop. by Guido van Rossum · 22 years ago
  100. 3930bc3 Sigh. That wasn't a memory leak, that was Guido committing before by Guido van Rossum · 22 years ago