1. d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
  2. 185e30c Added format tests. by Eric Smith · 17 years ago
  3. f4780d0 Fix #1753395. by Georg Brandl · 17 years ago
  4. 2b65c75 Set startinpos before calling the error handler. by Walter Dörwald · 17 years ago
  5. a651d3d Rewrap line. by Walter Dörwald · 17 years ago
  6. 16596dd Try to fix the problem on the Windows buildbot where this code: by Neal Norwitz · 17 years ago
  7. 18c3ff8 Make it an error to compare a bytes object and a Unicode object. by Jeremy Hylton · 17 years ago
  8. 39342f4 Patch # 1048 by Amaury Forgeot d'Arc. by Guido van Rossum · 17 years ago
  9. c4140a1 PEP 7 clean ups, no change in behavior. by Jeremy Hylton · 17 years ago
  10. b3cf6fd Oops, remove an abort() I put in for debugging. by Guido van Rossum · 17 years ago
  11. 7d1df6c Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() but by Guido van Rossum · 17 years ago
  12. 4430095 Corrected missed #if in r57652. by Eric Smith · 17 years ago
  13. b7f5ba1 Added conditional compilation for '()', which was an allowed sign code in a by Eric Smith · 17 years ago
  14. a74184e Commit strict str/bytes distinction. by Guido van Rossum · 17 years ago
  15. 625cbf2 Modified parsing of format strings, so that we always return by Eric Smith · 17 years ago
  16. 3e57b52 Fix buglet in sliceobjects, they were not returning Py_NotImplemented when by Thomas Wouters · 17 years ago
  17. ed03b41 Merge the trunk changes in. Breaks socket.ssl for now. by Thomas Wouters · 17 years ago
  18. 9e7c8da Simplified tuple returned by string._formatter_parser to only have by Eric Smith · 17 years ago
  19. 79710cd Changed STRINGLIB_CMP from an inline function to a macro in order to avoid a 'defined but not used' warning. by Eric Smith · 17 years ago
  20. 0cb431c Code layout changes for PEP 7 compliance. by Eric Smith · 17 years ago
  21. f6db409 Moved fieldnameiterator and formatteriterator to stringlib/string_format.h, so that they can be used when backporting to 2.6. by Eric Smith · 17 years ago
  22. 7a6dd29 Cleanup in anticipation of moving formatteriterator and fieldnameiterator into stringlib/string_format.h. by Eric Smith · 17 years ago
  23. 35d9428 There should be no codecs left that return str8 intead of bytes. by Guido van Rossum · 17 years ago
  24. ddd2582 Fixed accidental indentation change. by Eric Smith · 17 years ago
  25. e226b55 PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unicode methods instead (per GvR suggestion). by Eric Smith · 17 years ago
  26. 8a4eb29 Fix refleaks in test_unicode and test_string related to the new format code. by Neal Norwitz · 17 years ago
  27. 2bad970 Make some internal functions static by Neal Norwitz · 17 years ago
  28. 247b515 This adds a leak, but fixes a crash. The leaking code is: by Neal Norwitz · 17 years ago
  29. 7ade648 PEP 3101: Completed string.Formatter class. Reimplemented field_name to object transformation. by Eric Smith · 17 years ago
  30. a62db27 Restore an assert, but move it to the proper place. by Neal Norwitz · 17 years ago
  31. 80e7f27 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  32. ed2b739 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  33. 6ea45d3 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  34. 571861d Remove assert that seems out of place. It triggers with test_string, by Neal Norwitz · 17 years ago
  35. 7e95bef Use unicode and stop supporting str8 by Neal Norwitz · 17 years ago
  36. 312e10d Get rid of more uses of string and use const in a few places. by Neal Norwitz · 17 years ago
  37. 3ef6a57 Get rid of compiler warning on 64-bit by Neal Norwitz · 17 years ago
  38. f616b22 Support unicode names by Neal Norwitz · 17 years ago
  39. a369c5a Use unicode by Neal Norwitz · 17 years ago
  40. 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago
  41. e0a0a6e Since PyUnicode_AsString is a public API, don't just assert, but do by Neal Norwitz · 17 years ago
  42. 523259b Keir Mierle's set operations for dict views (keys/items only of course). by Guido van Rossum · 17 years ago
  43. 41103bf Ensure that code object names (co_name) are unicode. by Neal Norwitz · 17 years ago
  44. aac530c Patch with Keir Mierle: add rich comparisons between dict views and sets, by Guido van Rossum · 17 years ago
  45. 75d38e9 Whitespace cleanup. by Guido van Rossum · 17 years ago
  46. 10ab4ae Patch by Keir Mierle so that sets can be compared to other objects that know by Guido van Rossum · 17 years ago
  47. 928115a CFunctions' doc strings should be Unicode. by Guido van Rossum · 17 years ago
  48. 2fa33db Finish the work on __round__ and __trunc__. With Alex Martelli and Keir Mierle. by Guido van Rossum · 17 years ago
  49. 53cbdaa Convert a bunch of constant strings in C to unicode. by Neal Norwitz · 17 years ago
  50. 2523621 Change the error reporting when an invalid string is encountered to avoid by Guido van Rossum · 17 years ago
  51. b803c51 Fix memory leak in arraymodule.c and respond to a few comments by nnorwitz. by Travis E. Oliphant · 17 years ago
  52. 30d1c51 Remove _PyObject_Del by Neal Norwitz · 17 years ago
  53. 666bb41 SF #1777057, fix memoryview('test') so it works in debug mode too. by Neal Norwitz · 17 years ago
  54. faa54a3 Code review of the new buffer protocol. Mostly add questions that should by Neal Norwitz · 17 years ago
  55. b99f762 Merged in py3k-buffer branch to main line. All objects now use the buffer protocol in PEP 3118. by Travis E. Oliphant · 17 years ago
  56. 8d991ed Move some declarations before code, to compile with GCC 2.95. by Guido van Rossum · 17 years ago
  57. 41980ca Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le and by Walter Dörwald · 17 years ago
  58. 0661009 Get rid of some dead code and unneeded XXX comments by Neal. by Guido van Rossum · 17 years ago
  59. 4738340 Implement PEP 3131. Add isidentifier to str. by Martin v. Löwis · 17 years ago
  60. 13c3e38 Add XID_Start and XID_Continue properties to unicodectype. by Martin v. Löwis · 17 years ago
  61. ff398c6 Format bools properly in %d. by Martin v. Löwis · 17 years ago
  62. ab40b30 Add comment that should be addressed by Neal Norwitz · 17 years ago
  63. 46fc337 PyErr_Warn is deprecated in 2.5 - goes away for 3.0 by Skip Montanaro · 17 years ago
  64. 447e7c3 Fix memory leak by Neal Norwitz · 17 years ago
  65. 0168802 Kill execfile(), use exec() instead by Neal Norwitz · 17 years ago
  66. 8dfc4a9 Remove support for __members__ and __methods__. There still might be by Neal Norwitz · 17 years ago
  67. 36f938f Fix refleak: decref inputobj after extracting the relavant info (the object by Walter Dörwald · 17 years ago
  68. 1101980 In PyFile_WriteString(), call PyUnicode_FromString() instead of by Guido van Rossum · 17 years ago
  69. 6ca130d Oops. The PyObject_Print() function was totally broken; the original code by Guido van Rossum · 17 years ago
  70. eb29e9a Fix core dump in an endcase of b.strip() that I missed. by Guido van Rossum · 17 years ago
  71. bdba5cf Change the repr() of frozenset instances (and set subclasses) by Guido van Rossum · 17 years ago
  72. 2220122 Oops. I killed a bit too much and not enough when I deleted intobject.c. by Guido van Rossum · 17 years ago
  73. 04dbf3b Kill all uses and definitions of tp_print under Objects/. (Others will follow.) by Guido van Rossum · 17 years ago
  74. d474ce8 Remove references to unicode from help(str). by Collin Winter · 17 years ago
  75. 806c246 Merged revisions 56753-56781 via svnmerge from by Guido van Rossum · 17 years ago
  76. 9c12106 Change PyUnicode_FromString[AndSize] to expect UTF-8. by Martin v. Löwis · 17 years ago
  77. 33d2689 Merged revisions 56492-56752 via svnmerge from by Guido van Rossum · 17 years ago
  78. 1e2b760 Fix an obvious bug caused by a switch to Unicode. by Guido van Rossum · 17 years ago
  79. 4737482 Add a default __prepare__() method to 'type', so it can be called by Guido van Rossum · 17 years ago
  80. b43daf7 Changes to long and float by Jeffrey Jasskin to conform to PEP 3141. by Guido van Rossum · 17 years ago
  81. 46334cd Kill div, mod and divmod on complex (already deprecated in 2.x). by Guido van Rossum · 17 years ago
  82. e78178e Bytes (which are the input for decoding) are mutable now. If a decoding by Walter Dörwald · 17 years ago
  83. 45c85d1 Fix the docstrings for keys(), items(), values() (especially the latter). by Guido van Rossum · 17 years ago
  84. 5d7428b Fix merge breakage. by Martin v. Löwis · 17 years ago
  85. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  86. f93254d Fix test_pickle, by reverting the string opcodes (S, T, U) to returning by Guido van Rossum · 17 years ago
  87. 00058aa Fix a bug in PyUnicode_FromStringAndSize() with signed characters. by Guido van Rossum · 17 years ago
  88. b5a755e Merged revisions 56301-56442 via svnmerge from by Guido van Rossum · 17 years ago
  89. 10a60b3 Change Py_BuildValue to generate Unicode objects for by Martin v. Löwis · 17 years ago
  90. 307fa8c Three patches by Amaury Forgeot d'Arc; SF patch# 1754484. by Guido van Rossum · 17 years ago
  91. 8ac004e Make chr() and ord() return/accept surrogate pairs in narrow builds. by Guido van Rossum · 17 years ago
  92. e7a0d39 Fixed a refcount leak in _PyUnicode_AsDefaultEncodedString(). by Guido van Rossum · 17 years ago
  93. ace8ba8 Revert a wrong commit. by Thomas Heller · 17 years ago
  94. f630dac Must create heaptypes with unicode names. by Thomas Heller · 17 years ago
  95. 3b64580 Remove unused local variable. by Thomas Heller · 17 years ago
  96. 55b4a7b Make test_descr.py pass. Had to disable a few tests, remove references by Guido van Rossum · 17 years ago
  97. a1cdfd9 Fix a subtle bug in PyString_Repr(). by Guido van Rossum · 17 years ago
  98. 7104458 Change float.__getformat__() to return a unicode string. by Walter Dörwald · 17 years ago
  99. 63a28be Silence GCC warning about uninitialzed variable. by Walter Dörwald · 17 years ago
  100. 32a4c71 Patch by Ron Adam: Don't use u prefix in unicode error messages by Walter Dörwald · 17 years ago