1. 17d9054 Issue #7818: set().test_c_api() doesn't expect a set('abc'), modify the set. by Victor Stinner · 15 years ago
  2. fb50112 #8030: more docstring fix for builtin types. by Ezio Melotti · 15 years ago
  3. b36e63a The set types can also be called without arguments. by Georg Brandl · 15 years ago
  4. bca1169 #8030: make builtin type docstrings more consistent: use "iterable" instead of "seq(uence)", use "new" to show that set() always returns a new object. by Georg Brandl · 15 years ago
  5. 3212515 #7649: "u'%c' % char" now behaves like "u'%s' % char" and raises a UnicodeDecodeError if 'char' is a byte string that can't be decoded using the default encoding. by Ezio Melotti · 15 years ago
  6. 2d9856d Issue #7309: Unchecked pointer access when converting UnicodeEncodeError, UnicodeDecodeError, and UnicodeTranslateError to strings. by Eric Smith · 15 years ago
  7. f20f9c2 Issue #7649: Fix u'%c' % char for character in range 0x80..0xFF by Victor Stinner · 15 years ago
  8. 87bcb24 Issue #6902: Fix problem with built-in types format incorrectly with 0 padding. by Eric Smith · 15 years ago
  9. 00b6a5c #7706: DONT_HAVE_ERRNO_H is no longer defined by configure (after rev.46819). by Andrew M. Kuchling · 15 years ago
  10. f32d4ac Issue #7988: Fix default alignment to be right aligned for complex.__format__. Now it matches other numeric types. by Eric Smith · 15 years ago
  11. bce3e17 #7482: clarify error message in case of division by zero of float and complex numbers. by Ezio Melotti · 15 years ago
  12. 82b34c5 Issue #5211: Fix complex type to avoid implicit calls to by Mark Dickinson · 15 years ago
  13. 2d7911e Silence more compiler warnings; fix an instance of potential undefined behaviour from signed overflow. by Mark Dickinson · 15 years ago
  14. ac5685e Silence some 'comparison between signed and unsigned' compiler warnings. by Mark Dickinson · 15 years ago
  15. bb445a1 Issue #5677: Explicitly forbid write operations on read-only file objects, by Antoine Pitrou · 16 years ago
  16. 526e421 Issue #7385: Fix a crash in `MemoryView_FromObject` when by Antoine Pitrou · 16 years ago
  17. a36507c Issue #7767: Add new C-API function PyLong_AsLongLongAndOverflow, a by Mark Dickinson · 16 years ago
  18. 36ecd67 Issue #7788: Fix a crash produced by deleting a list slice with huge by Mark Dickinson · 16 years ago
  19. 1fafaab #7775: fixed docstring for rpartition by Ezio Melotti · 16 years ago
  20. e80a6a4 Issue #7561: Operations on empty bytearrays (such as `int(bytearray())`) by Antoine Pitrou · 16 years ago
  21. aee9003 Add note about usage of STRINGLIB_EMPTY. by Georg Brandl · 16 years ago
  22. d234208 Fixed typo by Ezio Melotti · 16 years ago
  23. 1004292 Sanitize bloom filter macros by Antoine Pitrou · 16 years ago
  24. a913a20 Test commit to try to diagnose failures of the IA-64 buildbot by Antoine Pitrou · 16 years ago
  25. 5c767c2 Fix Windows build (re r77461) by Antoine Pitrou · 16 years ago
  26. 6467213 Issue #7622: Improve the split(), rsplit(), splitlines() and replace() by Antoine Pitrou · 16 years ago
  27. 58a96ef Fixed repr of dictionary views. by Alexandre Vassalotti · 16 years ago
  28. 69eb516 Issue #1967: Backport dictionary views. by Alexandre Vassalotti · 16 years ago
  29. 3694366 factor out __complex__ lookup code to fix another case by Benjamin Peterson · 16 years ago
  30. ecdae19 do correct lookup of the __complex__ method by Benjamin Peterson · 16 years ago
  31. 5b7139a Issue #7462: Implement the stringlib fast search algorithm for the `rfind`, by Antoine Pitrou · 16 years ago
  32. d3e3232 Refactor some longobject internals: PyLong_AsDouble and _PyLong_AsScaledDouble by Mark Dickinson · 16 years ago
  33. 99d652e Issue #7534: Fix handling of nans, infinities, and negative zero in ** by Mark Dickinson · 16 years ago
  34. 4657283 Issue #1811: Improve accuracy and consistency of true division for integers. by Mark Dickinson · 16 years ago
  35. f84caf4 #6108: unicode(exception) and str(exception) should return the same message by Ezio Melotti · 16 years ago
  36. e31d300 Issue #7528: Backport PyLong_AsLongAndOverflow from py3k to trunk. by Mark Dickinson · 16 years ago
  37. 0c0dcaf remove type_compare, since type_richcompare does the same trick by Benjamin Peterson · 16 years ago
  38. 0a0a1a8 Issue #1680159: unicode coercion during an 'in' operation was masking by R. David Murray · 16 years ago
  39. 4895af4 fix the ignoring of __cmp__ method on metaclasses #7491 by Benjamin Peterson · 16 years ago
  40. c169c78 Issue #7466: segmentation fault when the garbage collector is called by Antoine Pitrou · 16 years ago
  41. 5fb8770 substitute PyDict_Check() for PyObject_IsInstance by Benjamin Peterson · 16 years ago
  42. 1691025 Avoid undefined behaviour due to overflow in i_divmod (Objects/intobject.c). by Mark Dickinson · 16 years ago
  43. 91c12eb disable pymalloc tricks with the --with-valgrind option #2422 by Benjamin Peterson · 16 years ago
  44. 3439818 Issue #7406: Fix some occurrences of potential signed overflow in int by Mark Dickinson · 16 years ago
  45. c4ab833 Issue #3382: Make '%F' and float.__format__('F') convert results to upper case. Much of the patch came from Mark Dickinson. by Eric Smith · 16 years ago
  46. 31f0cfe Include ieeefp.h (when available) in pyport.h instead of individually in by Mark Dickinson · 16 years ago
  47. 9dd5e16 Issue #7117, continued: Remove substitution of %g-style formatting for by Mark Dickinson · 16 years ago
  48. 18cfada Remove restriction on precision when formatting floats. This is the by Mark Dickinson · 16 years ago
  49. dc3c239 #5037 proxy __unicode__ correctly by Benjamin Peterson · 16 years ago
  50. 79628d3 Issue 7263: Fix set.intersection() docstring. by Raymond Hettinger · 16 years ago
  51. bd15a06 Issue #7117, continued: Change round implementation to use the correctly-rounded by Mark Dickinson · 16 years ago
  52. 3d6790e Silence another MSVC warning about unary minus. by Mark Dickinson · 16 years ago
  53. b2c3ca1 Silence MSVC warning about unary minus applied to unsigned type. by Mark Dickinson · 16 years ago
  54. 82864d1 Issue #7228: Add '%lld' and '%llu' support to PyFormat_FromString, by Mark Dickinson · 16 years ago
  55. 009ae86 Avoid signed overflow in some xrange calculations, and extend by Mark Dickinson · 16 years ago
  56. c45a0cf grant list.index() a more informative error message #7252 by Benjamin Peterson · 16 years ago
  57. e2caf1f prevent a rather unlikely segfault by Benjamin Peterson · 16 years ago
  58. c04c7c5 Issue #7117: Use PyOS_string_to_double instead of PyOS_ascii_strtod in by Mark Dickinson · 16 years ago
  59. 8568b19 Issue #7117: Use PyOS_string_to_double instead of PyOS_ascii_strtod in by Mark Dickinson · 16 years ago
  60. c1bdf89 Finished removing _PyOS_double_to_string, as mentioned in issue 7117. by Eric Smith · 16 years ago
  61. cfaf79c Start to remove _PyOS_double_to_string, as mentioned in issue 7117. by Eric Smith · 16 years ago
  62. 8d87dc0 Issue #1087418: Small performance boost for bitwise operations on longs. by Mark Dickinson · 16 years ago
  63. 8c3fb39 Removed unused function PyFloat_AsStringEx. It is unused in floatobject.c, and it's not declared in any .h file. by Eric Smith · 16 years ago
  64. 97a57ec rewrite for style, clarify, and comments by Benjamin Peterson · 16 years ago
  65. 3c67afa whitespace by Benjamin Peterson · 16 years ago
  66. b327258 Removed usage of unsafe PyFloat_AsString. by Eric Smith · 16 years ago
  67. 08133af Issue #7142: Fix uses of unicode in memoryview objects by Mark Dickinson · 16 years ago
  68. 196b092 only clear a module's __dict__ if the module is the only one with a reference to it #7140 by Benjamin Peterson · 16 years ago
  69. 9d10974 Fix missing semicolon by Mark Dickinson · 16 years ago
  70. 9b4e582 #7116: str.join() takes an iterable. by Georg Brandl · 16 years ago
  71. 5c92d43 #7112: Fix compilation warning in unicodetype_db.h by Amaury Forgeot d'Arc · 16 years ago
  72. beaf6a0 Issue #7084: Fix a (very unlikely) crash when printing a list from one by Antoine Pitrou · 16 years ago
  73. d0052d1 #1571184: makeunicodedata.py now generates the functions _PyUnicode_ToNumeric, by Amaury Forgeot d'Arc · 16 years ago
  74. 71adc93 Style/consistency/nano-optimization nit: replace occurrences of by Mark Dickinson · 16 years ago
  75. b331802 http://bugs.python.org/issue6836 by Kristján Valur Jónsson · 16 years ago
  76. 02ca57c http://bugs.python.org/issue6836 by Kristján Valur Jónsson · 16 years ago
  77. 4b9d473 Issue #6713: Improve decimal int -> string conversions. Thanks Gawain by Mark Dickinson · 16 years ago
  78. a9a7611 #6994: fix typo in enumerate docstring by Ezio Melotti · 16 years ago
  79. 40ee861 Silence MSVC compiler warnings. by Mark Dickinson · 16 years ago
  80. dc782b5 backport keyword argument support for bytearray.decode by Benjamin Peterson · 16 years ago
  81. 332d721 add keyword arguments support to str/unicode encode and decode #6300 by Benjamin Peterson · 16 years ago
  82. 4fe0335 use macros by Benjamin Peterson · 16 years ago
  83. e9741f3 Issue #6922: Fix an infinite loop when trying to decode an invalid by Georg Brandl · 16 years ago
  84. aa2adc8 Issue #6713: Improve performance of str(n) and repr(n) for integers n by Mark Dickinson · 16 years ago
  85. 0674d3f #6844: do not emit DeprecationWarnings on access if Exception.message has been set by the user. by Georg Brandl · 16 years ago
  86. 1f4fc09 Fix potential signed-overflow bug in _PyLong_Format; also fix by Mark Dickinson · 16 years ago
  87. 752a2da Remove redundant assignment by Mark Dickinson · 16 years ago
  88. 135a7cf Issue #6847: s/bytes/bytearray/ in some bytearray error messages. Thanks Hagen Fürstenau. by Mark Dickinson · 16 years ago
  89. c8a7c7c Issue #6846: bytearray.pop was returning ints in the range [-128, 128) by Mark Dickinson · 16 years ago
  90. 6fcf9b5 remove the check that classmethod's argument is a callable by Benjamin Peterson · 16 years ago
  91. 2fdd58a Silence gcc 'comparison always false' warning by Mark Dickinson · 16 years ago
  92. 4c6e808 #6707 fix a crash with dir() on an uninitialized module by Benjamin Peterson · 16 years ago
  93. 5c4a5d2 Issue 6330: Fix --enable-unicode=ucs4. by Eric Smith · 16 years ago
  94. c2b9e1a Issue 6573: Fix set.union() for cases where self is in the argument chain. by Raymond Hettinger · 16 years ago
  95. e94a826 Sync trunk and py3k versions of string formatting. Will manually merge into py3k. by Eric Smith · 16 years ago
  96. 9119fbc clarify by Benjamin Peterson · 16 years ago
  97. ec812ca Issue #6540: Fixed crash for bytearray.translate() with invalid parameters. by Georg Brandl · 16 years ago
  98. 24d9175 must use _PyThreadState_Current so it isn't checked for NULL #6530 by Benjamin Peterson · 16 years ago
  99. fd00916 Grow the allocated buffer in PyUnicode_EncodeUTF7 to avoid buffer overrun. by Alexandre Vassalotti · 16 years ago
  100. 1bf4765 only order comparisons are removed in py3k #6119 by Benjamin Peterson · 16 years ago