1. dc55540 Issue #9015, #9611: stdprinter.write() clamps the length to 2^31-1 on Windows by Victor Stinner · 14 years ago
  2. 0fcab4a Issue #9566: use Py_ssize_t instead of int by Victor Stinner · 14 years ago
  3. b9cc00c Removed unneeded #include by Alexander Belopolsky · 14 years ago
  4. 9d254f7 Merged revisions 87368 via svnmerge from by Ezio Melotti · 14 years ago
  5. ac53ab6 #5587: add a repr to dict_proxy objects. Patch by David Stanek and Daniel Urban. by Ezio Melotti · 14 years ago
  6. 800dfee Merged revisions 87251 via svnmerge from by R. David Murray · 14 years ago
  7. ce4b170 #4236: avoid possible Fatal Error when import is called from __del__ by R. David Murray · 14 years ago
  8. 28a4dce remove (un)transform methods by Benjamin Peterson · 14 years ago
  9. 532d091 Reverted accidental commit (from r87159) by Alexander Belopolsky · 14 years ago
  10. fc55789 Updated UCD version and unicode.org links to Unicode 6.0.0 by Alexander Belopolsky · 14 years ago
  11. 9b955de use the more direct API by Benjamin Peterson · 14 years ago
  12. 0eb7f86 return views from dict proxy items/values/keys #10630 by Benjamin Peterson · 14 years ago
  13. f3fa568 Fix typo. by Georg Brandl · 14 years ago
  14. 70099a1 Removed static function complex_format, moved it into complex_repr. Modified tests to check both str and repr, which are the same for complex. by Eric Smith · 14 years ago
  15. 7b1bee4 Use copysign to produce appropriately signed zeros instead of trying to worm around possible compiler optimizations. by Mark Dickinson · 14 years ago
  16. 0169af1 Merged revisions 87032 via svnmerge from by Mark Dickinson · 14 years ago
  17. 3315438 Backout broken backport. (Sorry.) by Mark Dickinson · 14 years ago
  18. 11e77ff Merged revisions 87032 via svnmerge from by Mark Dickinson · 14 years ago
  19. d2a9b20 Issue #10596: Fix float.__mod__ to have the same behaviour as by Mark Dickinson · 14 years ago
  20. 66f2623 Remove some unecessary '#ifdef Py_NAN's from floatobject.c by Mark Dickinson · 14 years ago
  21. c9fb3c6 Fix indentation in Objects/longobject.c by Mark Dickinson · 14 years ago
  22. da72231 Regenerate. by Martin v. Löwis · 14 years ago
  23. 81c9b45 Add Revision keyword. by Martin v. Löwis · 14 years ago
  24. 35f08f0 Make script 2-vs-3-agnostic. by Martin v. Löwis · 14 years ago
  25. 942af5a Issue #10557: Fixed error messages from float() and other numeric by Alexander Belopolsky · 14 years ago
  26. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  27. f961377 #6780: fix complex() constructor TypeError message by Victor Stinner · 14 years ago
  28. 37ee850 Issue 2690: Add support for slicing and negative indices to range objects (includes precalculation and storage of the range length). by Nick Coghlan · 14 years ago
  29. 3b9406b Remove redundant check for PyBytes in unicode_encode. by Georg Brandl · 14 years ago
  30. 9efdcca code style by Benjamin Peterson · 14 years ago
  31. 9833822 Issue9915: speeding up sorting with a key by Daniel Stutzbach · 14 years ago
  32. 0252462 #7475: add (un)transform method to bytes/bytearray and str, add back codecs that can be used with them from Python 2. by Georg Brandl · 14 years ago
  33. 715f3cd Issue #8685: Speed up set difference `a - b` when source set `a` is by Antoine Pitrou · 14 years ago
  34. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  35. 71c23d4 Include structseq.h in Python.h, and remove now-redundant includes in individual sources. by Georg Brandl · 14 years ago
  36. 5d744a8 Merged revisions 86791 via svnmerge from by Stefan Krah · 14 years ago
  37. 735bb12 Indentation cleanup. by Stefan Krah · 14 years ago
  38. 984bb58 Issue #7094: Add alternate ('#') flag to __format__ methods for float, complex and Decimal. Allows greater control over when decimal points appear. Added to make transitioning from %-formatting easier. '#g' still has a problem with Decimal which I'll fix soon. by Eric Smith · 14 years ago
  39. a1864f3 pep 7 actually wants the brace on a new line by Benjamin Peterson · 14 years ago
  40. 155614b code style and simplification by Benjamin Peterson · 14 years ago
  41. 7e5343b Add error handling in range_count. by Georg Brandl · 14 years ago
  42. 0b458d5 count() should return integers #10474 by Benjamin Peterson · 14 years ago
  43. 72288d4 code style by Benjamin Peterson · 14 years ago
  44. 6bb9989 #1574217: only swallow AttributeErrors in isinstance, not everything. by R. David Murray · 14 years ago
  45. f609654 handle dict subclasses gracefully in PyArg_ValidateKeywordArguments by Benjamin Peterson · 14 years ago
  46. 3e2b717 Issue #10359: Remove ";" after function definition, invalid in ISO C by Victor Stinner · 14 years ago
  47. d5af0a5 PyUnicode_DecodeFSDefaultAndSize() raises MemoryError if _Py_char2wchar() fails by Victor Stinner · 14 years ago
  48. 2f02a51 PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() fails by Victor Stinner · 14 years ago
  49. c911bbf str, bytes, bytearray docstring: remove unnecessary [...] by Victor Stinner · 14 years ago
  50. e14e212 Fix encode/decode method doc of str, bytes, bytearray types by Victor Stinner · 14 years ago
  51. 16562f4 Merged revisions 86277 via svnmerge from by Eric Smith · 14 years ago
  52. 51d2fd9 Added more to docstrings for str.format, format_map, and __format__. by Eric Smith · 14 years ago
  53. 9696088 Issue #10288: The deprecated family of "char"-handling macros by David Malcolm · 14 years ago
  54. a277ec4 Followup to r86170: fix reference leak in str.format by Antoine Pitrou · 14 years ago
  55. aeb6cee Issue #10293: Remove obsolete field in the PyMemoryView structure, by Antoine Pitrou · 14 years ago
  56. 27bbca6 Issue #6081: Add str.format_map. str.format_map(mapping) is similar to str.format(**mapping), except mapping does not get converted to a dict. by Eric Smith · 14 years ago
  57. 8347328 deuglify by Benjamin Peterson · 14 years ago
  58. 7529afc Issue 10221: Improve error message for dict.pop(). by Raymond Hettinger · 14 years ago
  59. dd42154 Issue 10221: Improve error message for dict.pop(). by Raymond Hettinger · 14 years ago
  60. 98e2b45 Merged revisions 85896 via svnmerge from by Antoine Pitrou · 14 years ago
  61. 07e20ef Issue #5437: A preallocated MemoryError instance should not hold traceback by Antoine Pitrou · 14 years ago
  62. ad15872 Simplify PyUnicode_Encode/DecodeFSDefault on Windows/Mac OS X by Victor Stinner · 14 years ago
  63. 08be72d Add a new warning gategory, ResourceWarning, as discussed on python-dev. It is silent by default, by Georg Brandl · 14 years ago
  64. fbb1c61 Follow up to #9778: fix regressions on 64-bit Windows builds by Antoine Pitrou · 14 years ago
  65. 8035bc5 follow up to #9778: define and use an unsigned hash type by Benjamin Peterson · 14 years ago
  66. ff150f2 Revert r85797 (and r85798): it broke the Windows buildbots because of by Antoine Pitrou · 14 years ago
  67. 7eecffd Issue #9935: Speed up pickling of instances of user-defined classes. by Antoine Pitrou · 14 years ago
  68. f933e1a Issue #4388: On Mac OS X, decode command line arguments from UTF-8, instead of by Victor Stinner · 14 years ago
  69. 9a90900 PyUnicode_FromFormatV(): Fix %A format by Victor Stinner · 14 years ago
  70. 00da4e0 Remove unneeded casts to hashfunc. by Georg Brandl · 14 years ago
  71. e7dfeeb -1 is reserved for errors by Benjamin Peterson · 14 years ago
  72. e6baa46 fix prototype by Benjamin Peterson · 14 years ago
  73. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  74. 23d05c1 use helper hash unimplemented function by Benjamin Peterson · 14 years ago
  75. ded5acf Merged revisions 81936 via svnmerge from by Georg Brandl · 14 years ago
  76. 168e117 Add an optional size argument to _Py_char2wchar() by Victor Stinner · 14 years ago
  77. 6c6a4d0 Remove unused label. by Georg Brandl · 14 years ago
  78. f3170cc Use locale encoding if Py_FileSystemDefaultEncoding is not set by Victor Stinner · 14 years ago
  79. 66c221e #9418: first step of moving private string methods to _string module. by Georg Brandl · 14 years ago
  80. 582162e Merged revisions 85392 via svnmerge from by Benjamin Peterson · 14 years ago
  81. 5c4bfc4 prefer clearing global objects to obscure module.__dict__ bugs #10068 by Benjamin Peterson · 14 years ago
  82. baecd72 Upgrade to Unicode 6.0.0. by Martin v. Löwis · 14 years ago
  83. beb4135b PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* by Victor Stinner · 14 years ago
  84. 866c74e Merged revisions 85193 via svnmerge from by Benjamin Peterson · 14 years ago
  85. 84060b8 typo by Benjamin Peterson · 14 years ago
  86. 0ad44fa Merged revisions 85154,85182 via svnmerge from by Benjamin Peterson · 14 years ago
  87. 5593d8a Issue #8670: PyUnicode_AsWideChar() and PyUnicode_AsWideCharString() replace by Victor Stinner · 14 years ago
  88. 1c24bd0 Issue #8870: PyUnicode_AsWideCharString() doesn't count the trailing nul character by Victor Stinner · 14 years ago
  89. aec5fd1 type.__abstractmethods__ should raise an AttributeError #10006 by Benjamin Peterson · 14 years ago
  90. 71e91a3 Fix PyUnicode_AsWideCharString(): set *size if size is not NULL by Victor Stinner · 14 years ago
  91. c39211f Issue #9630: Redecode filenames when setting the filesystem encoding by Victor Stinner · 14 years ago
  92. 137c34c Issue #9979: Create function PyUnicode_AsWideCharString(). by Victor Stinner · 14 years ago
  93. a67c70d Merged revisions 84984 via svnmerge from by Mark Dickinson · 14 years ago
  94. b09a3d6 Issue #9930: Remove an unnecessary type check in wrap_binaryfunc_r; by Mark Dickinson · 14 years ago
  95. 9f0cbf1 Issue #9213: Add index and count methods to range objects, needed to by Daniel Stutzbach · 14 years ago
  96. e4d6317 Issue 7994: Make object.__format__() raise a PendingDeprecationWarning by Eric Smith · 14 years ago
  97. feb7307 #9210: remove --with-wctype-functions configure option. by Amaury Forgeot d'Arc · 14 years ago
  98. d4ac96a use return NULL; it's just as correct by Benjamin Peterson · 14 years ago
  99. 4c7db31 Issue #9738, #9836: Fix refleak introduced by r84704 by Victor Stinner · 14 years ago
  100. 9be0b2e detect non-ascii characters much earlier (plugs ref leak) by Benjamin Peterson · 14 years ago