1. e3685f6 #6780: fix starts/endswith error message to mention that tuples are accepted too. by Ezio Melotti · 15 years ago
  2. 44e8168 startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 15 years ago
  3. 6c84085 Improved docstrings for str and unicode methods format and __format__. by Eric Smith · 15 years ago
  4. d070cc5 Merged revisions 83226-83227,83229-83230,83232 via svnmerge from by Georg Brandl · 15 years ago
  5. e27d044 Recorded merge of revisions 83444 via svnmerge from by Georg Brandl · 15 years ago
  6. 09f0d60 Merged revisions 83395 via svnmerge from by Georg Brandl · 15 years ago
  7. 0b9201f Sub-issue of #9036: Fix incorrect use of Py_CHARMASK. by Stefan Krah · 15 years ago
  8. 5261b10 Merged revisions 82573 via svnmerge from by Senthil Kumaran · 15 years ago
  9. 2f06b78 Fix extra space. by Ezio Melotti · 15 years ago
  10. 8e5effa fix warning with ucs4 by Benjamin Peterson · 15 years ago
  11. cca3a3f Issue #8941: decoding big endian UTF-32 data in UCS-2 builds could crash by Antoine Pitrou · 15 years ago
  12. e57e50c Update PyUnicode_DecodeUTF8 from RFC 2279 to RFC 3629. by Ezio Melotti · 16 years ago
  13. a7f13ee Remove an unneeded variable and assignment. by Brett Cannon · 16 years ago
  14. bea424a more _PyString_Resize error checking by Benjamin Peterson · 16 years ago
  15. 22b2438 #7643: Unicode codepoints VT (0x0B) and FF (0x0C) are linebreaks according to Unicode Standard Annex #14. by Florent Xicluna · 16 years ago
  16. 402b73f Backported PyCapsule from 3.1, and converted most uses of CObject to PyCapsule. by Larry Hastings · 16 years ago
  17. 95affc4 Issue #1583863: An unicode subclass can now override the __str__ method by Victor Stinner · 16 years ago
  18. 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 · 16 years ago
  19. f20f9c2 Issue #7649: Fix u'%c' % char for character in range 0x80..0xFF by Victor Stinner · 16 years ago
  20. 1fafaab #7775: fixed docstring for rpartition by Ezio Melotti · 16 years ago
  21. 1004292 Sanitize bloom filter macros by Antoine Pitrou · 16 years ago
  22. 5c767c2 Fix Windows build (re r77461) by Antoine Pitrou · 16 years ago
  23. 6467213 Issue #7622: Improve the split(), rsplit(), splitlines() and replace() by Antoine Pitrou · 16 years ago
  24. 0a0a1a8 Issue #1680159: unicode coercion during an 'in' operation was masking by R. David Murray · 16 years ago
  25. 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
  26. 9dd5e16 Issue #7117, continued: Remove substitution of %g-style formatting for by Mark Dickinson · 16 years ago
  27. 18cfada Remove restriction on precision when formatting floats. This is the by Mark Dickinson · 16 years ago
  28. c1bdf89 Finished removing _PyOS_double_to_string, as mentioned in issue 7117. by Eric Smith · 16 years ago
  29. 9b4e582 #7116: str.join() takes an iterable. by Georg Brandl · 16 years ago
  30. 332d721 add keyword arguments support to str/unicode encode and decode #6300 by Benjamin Peterson · 16 years ago
  31. e9741f3 Issue #6922: Fix an infinite loop when trying to decode an invalid by Georg Brandl · 16 years ago
  32. 2fdd58a Silence gcc 'comparison always false' warning by Mark Dickinson · 16 years ago
  33. fd00916 Grow the allocated buffer in PyUnicode_EncodeUTF7 to avoid buffer overrun. by Alexandre Vassalotti · 16 years ago
  34. 18187e2 #6224: s/JPython/Jython/, and remove one link to a module nine years old. by Georg Brandl · 16 years ago
  35. ba68a99 #5929: fix signedness warning. by Georg Brandl · 17 years ago
  36. 653dece Issue #4426: The UTF-7 decoder was too strict and didn't accept some legal sequences. by Antoine Pitrou · 17 years ago
  37. 342c8db There's no %A in Python 2.x! by Walter Dörwald · 17 years ago
  38. ed960ac Issue #5108: Handle %s like %S and %R in PyUnicode_FromFormatV(): Call by Walter Dörwald · 17 years ago
  39. 068f065 Issue #5835, deprecate PyOS_ascii_formatd. by Eric Smith · 17 years ago
  40. d4814bf Issue #532631: Apply floatformat changes to unicodeobject.c by Mark Dickinson · 17 years ago
  41. 2e648ec Issue #532631: Replace confusing fabs(x)/1e25 >= 1e25 test by Mark Dickinson · 17 years ago
  42. 52a3492 There is no macro named SIZEOF_SSIZE_T. Should use SIZEOF_SIZE_T instead. by Hirokazu Yamamoto · 17 years ago
  43. 6b265f1 Issue 4474: On platforms with sizeof(wchar_t) == 4 and by Mark Dickinson · 17 years ago
  44. 3e4caeb Issue #5341: Fix a variety of spelling errors. by Mark Dickinson · 17 years ago
  45. cbb4958 Fix warnings GCC emits where the argument of PyErr_Format is a single variable. by Georg Brandl · 17 years ago
  46. 1c5d21d fix indentation in comment by Benjamin Peterson · 17 years ago
  47. be1399e fix indentation; looks like all I managed to do the first time is make things uglier by Benjamin Peterson · 17 years ago
  48. d17fec7 fix indentation by Benjamin Peterson · 17 years ago
  49. 857ce15 completely detabify unicodeobject.c by Benjamin Peterson · 17 years ago
  50. 034e08c Remove unnecessary casts related to unicode_decode_call_errorhandler. by Alexandre Vassalotti · 17 years ago
  51. 2a1fd05 Fix a small typo in docstring by Amaury Forgeot d'Arc · 17 years ago
  52. efeb43e Docstring change for *partition: use same tense as other docstrings. by Andrew M. Kuchling · 17 years ago
  53. 32a66a0 Fixed a couple more C99 comments and one occurence of inline. by Christian Heimes · 17 years ago
  54. 9806407 Fix varname in docstring. #3822. by Georg Brandl · 17 years ago
  55. 06847b1 Correct a crash when two successive unicode allocations fail with a MemoryError: by Amaury Forgeot d'Arc · 17 years ago
  56. e7d8be8 Security patches from Apple: prevent int overflow when allocating memory by Neal Norwitz · 17 years ago
  57. 4982d5d #2242: utf7 decoding crashes on bogus input on some Windows/MSVC versions by Antoine Pitrou · 17 years ago
  58. d6c393a Backed out r65069, pending fixing it in Windows. by Eric Smith · 17 years ago
  59. 454816d Issue 3382: Make '%F' and float.__format__('F') convert results to upper case. by Eric Smith · 17 years ago
  60. 9be2ec1 Added additional __sizeof__ implementations and addressed comments made in by Robert Schuppenies · 17 years ago
  61. 901c997 Issue 3048: Fixed sys.getsizeof for unicode objects. by Robert Schuppenies · 17 years ago
  62. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 17 years ago
  63. dc13b79 Refactor and clean up str.format() code (and helpers) in advance of optimizations. by Eric Smith · 18 years ago
  64. 30fadc1 #2999: fix name of third parameter in unicode.replace()'s docstring. by Georg Brandl · 18 years ago
  65. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 18 years ago
  66. 3497f94 First step of the C API rename: by Christian Heimes · 18 years ago
  67. ecbbd94 #2809 followup: even better split docstring. by Georg Brandl · 18 years ago
  68. dfb77db #2809: elaborate str.split docstring a bit. by Georg Brandl · 18 years ago
  69. 2ea2968 get rid of assert (size >= 0) now that an explicit if (size < 0) is in the code. by Gregory P. Smith · 18 years ago
  70. c00eb73 Raise SystemError when size < 0 is passed into PyString_FromStringAndSize, by Gregory P. Smith · 18 years ago
  71. d918e4e Bug #2388: Fix gcc warnings when compiling with --enable-unicode=ucs4. by Martin v. Löwis · 18 years ago
  72. d183bdd Revert r61969 which added casts to Py_CHARMASK to avoid compiler warnings. by Neal Norwitz · 18 years ago
  73. 231346e Fix warnings about using char as an array subscript. This is not portable by Neal Norwitz · 18 years ago
  74. 1a6387e Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,61809,61812,61819,61917,61920,61930,61933-61934 via svnmerge from by Christian Heimes · 18 years ago
  75. 4677fbf7 Try to fix a bunch of compiler warnings on Win64. by Neal Norwitz · 18 years ago
  76. fac02fa Issue2469: Correct a typo I introduced at r61793: compilation error with UCS4 builds. by Amaury Forgeot d'Arc · 18 years ago
  77. 9a0d346 #1477: ur'\U0010FFFF' raised in narrow unicode builds. by Amaury Forgeot d'Arc · 18 years ago
  78. ade57d0 Remove compiler warnings (on Alpha at least) about using chars as by Neal Norwitz · 18 years ago
  79. 419fd49 Issue 2321: reduce memory usage (increase the memory that is returned by Neal Norwitz · 18 years ago
  80. 5bdff60 Fix the overflows in expandtabs(). "This time for sure!" (Exploit at request.) by Guido van Rossum · 18 years ago
  81. c11cecf Issue 1742669. Now %d accepts very big float numbers. Thanks Gabriel Genellina. by Facundo Batista · 18 years ago
  82. a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 18 years ago
  83. 3b718a7 Implemented Martin's suggestion to clear the free lists during the garbage collection of the highest generation. by Christian Heimes · 18 years ago
  84. 5b970ad Unified naming convention for free lists and their limits. All free lists by Christian Heimes · 18 years ago
  85. 4d4f270 Patch #1970 by Antoine Pitrou: Speedup unicode whitespace and linebreak detection. The speedup is about 25% for split() (571 / 457 usec) and 35% (175 / 127 usec )for splitlines() by Christian Heimes · 18 years ago
  86. 7f39c9f Backport of several functions from Python 3.0 to 2.6 including PyUnicode_FromString, PyUnicode_Format and PyLong_From/AsSsize_t. The functions are partly required for the backport of the bytearray type and _fileio module. They should also make it easier to port C to 3.0. by Christian Heimes · 18 years ago
  87. 000a074 Modified PyImport_Import and PyImport_ImportModule to always use absolute imports by calling __import__ with an explicit level of 0 by Christian Heimes · 18 years ago
  88. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 18 years ago
  89. 5087980 The incremental decoder for utf-7 must preserve its state between calls. by Amaury Forgeot d'Arc · 18 years ago
  90. 6f7e6fb Made _ParseTupleFinds only defined to unicodeobject.c by Facundo Batista · 18 years ago
  91. 57d5669 Now in find, rfind, index, and rindex, you can use None as defaults, by Facundo Batista · 18 years ago
  92. 1c1ac38 Backport fixes for the code that decodes octal escapes (and for PyString by Guido van Rossum · 18 years ago
  93. 9d04542 Set startinpos before calling the error handler. by Walter Dörwald · 18 years ago
  94. 8757878 Rewrap line. by Walter Dörwald · 18 years ago
  95. 3ccec68 Improve extended slicing support in builtin types and classes. Specifically: by Thomas Wouters · 18 years ago
  96. 9ab80a9 Move another variable declaration up. by Walter Dörwald · 18 years ago
  97. 20b40d3 Move variable declaration up. by Walter Dörwald · 18 years ago
  98. 6e39080 Backport r57105 and r57145 from the py3k branch: UTF-32 codecs. by Walter Dörwald · 18 years ago
  99. 9efd9b6 Bug #1763149: use proper slice syntax in docstring. (backport) by Georg Brandl · 18 years ago
  100. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 18 years ago