1. ce3a72a Patch 1267 by Christian Heimes. by Guido van Rossum · 17 years ago
  2. 75a902d Patch 1280, by Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  3. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  4. 60d241f For PEP3137: Adds missing methods to the mutable PyBytes object (soon by Gregory P. Smith · 17 years ago
  5. 3d2fd7f Fix a small typo in the comment of unicode_default_encoding[]. by Alexandre Vassalotti · 17 years ago
  6. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  7. 70a2371 Remove the buffer API from PyUnicode as specified by PEP 3137. Also, by Alexandre Vassalotti · 17 years ago
  8. ddacf96 Eliminate use of PyBUF_CHARACTER flag which is no longer part of the buffer interface. Fix up array module to export the correct format for wide-builds. by Travis E. Oliphant · 17 years ago
  9. fe9bed0 Fix problems with memoryview object. There is still more to do to finish PEP 3118. The memory-view object needs to be fleshed out and the struct module needs to be modified. by Travis E. Oliphant · 17 years ago
  10. e518bf3 PyFile_WriteObject() should use PyObject_Repr(), not _ReprStr8(). by Guido van Rossum · 17 years ago
  11. 1e35e76 Patch #1049 by Thomas Lee. by Guido van Rossum · 17 years ago
  12. 6ccd3f2 Replace all (locale-dependent) uses of isupper(), tolower(), etc., by by Guido van Rossum · 17 years ago
  13. be801ac Delete bufferobject.[ch]. by Guido van Rossum · 17 years ago
  14. b35f128 At least one of the buildbots was complaining about newview being used by Neal Norwitz · 17 years ago
  15. f104429 Patch # 1145 by Thomas Lee: by Guido van Rossum · 17 years ago
  16. 5dde61d Whitespace and line lengrth cleanup. by Guido van Rossum · 17 years ago
  17. 8ae62b6 Change PyBuffer to Py_buffer to be consistent with other non-object structures like Py_complex. Add some more functionality to the memoryview object. by Travis E. Oliphant · 17 years ago
  18. 16c7075 Remove more cruft leftover from nb_coerce. Rename nb_coerce to nb_reserved. by Neil Schemenauer · 17 years ago
  19. ce272b6 Merged revisions 58203-58210 via svnmerge from by Thomas Wouters · 17 years ago
  20. 1b7f891 Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from by Thomas Wouters · 17 years ago
  21. c250493 Optimize unicode_hash() by not calling by Guido van Rossum · 17 years ago
  22. e4a9e78 Thomas Wouters suggested an obvious improvement to unicode_eq(): use memcmp(). by Guido van Rossum · 17 years ago
  23. 89d8c60 Switch dict lookup around to optimizing for unicode. by Guido van Rossum · 17 years ago
  24. 4d02772 Micro optimizations after staring at gprof output for a while. by Guido van Rossum · 17 years ago
  25. 54cf12b Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE. by Sean Reifscheider · 17 years ago
  26. 8f95067 Bug # 1125 (my code). by Guido van Rossum · 17 years ago
  27. da86fcc Drop convert_binop. by Martin v. Löwis · 17 years ago
  28. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  29. f8c37d1 Restore caching of unicode hash value. This apparently was broken by Neil Schemenauer · 17 years ago
  30. 3404b3c Check in some documentation tweaks for PEP 3141, add some tests, and implement by Jeffrey Yasskin · 17 years ago
  31. 45c0787 Simplified recursion logic. Modified variable name to match string.Formatter. by Eric Smith · 17 years ago
  32. 1152919 Changed some ValueError's to KeyError and IndexError. by Eric Smith · 17 years ago
  33. 4cb4e4e Fix segfault discovered by Ron Adam. Not checking for terminating right bracket in "'{0[}'.format(())". Fixed, and tests added. by Eric Smith · 17 years ago
  34. 1966f1c Fix refleaks exposed by test_raise. by Collin Winter · 17 years ago
  35. f2fc934 Get rid of METH_OLDARGS. by Georg Brandl · 17 years ago
  36. 37f1038 Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking for unicode objects. by Eric Smith · 17 years ago
  37. 9cd1e09 Removed unicode_format and unicode__format__, they just called through to other functions. by Eric Smith · 17 years ago
  38. 06b8b02 Per Georg's suggestion, get rid of str.decode() (which always raises an by Guido van Rossum · 17 years ago
  39. 90d1fcd Change %s argument for PyUnicode_FromFormat to be UTF-8. Fixes #1070. by Martin v. Löwis · 17 years ago
  40. 20594cc round(1e20) wrongly returned 0. This fixes test_builtin on windows. by Thomas Heller · 17 years ago
  41. 1fe5f38 Remove checking redundantly for checks of PyInt and PyLong. by Neal Norwitz · 17 years ago
  42. 6deb1bf Use pow() instead of repeated multiplication by 10 in round(x, n). by Guido van Rossum · 17 years ago
  43. 828f04a Issue #1066: implement PEP 3109, 2/3 of PEP 3134. by Collin Winter · 17 years ago
  44. d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
  45. 185e30c Added format tests. by Eric Smith · 17 years ago
  46. f4780d0 Fix #1753395. by Georg Brandl · 17 years ago
  47. 2b65c75 Set startinpos before calling the error handler. by Walter Dörwald · 17 years ago
  48. a651d3d Rewrap line. by Walter Dörwald · 17 years ago
  49. 16596dd Try to fix the problem on the Windows buildbot where this code: by Neal Norwitz · 17 years ago
  50. 18c3ff8 Make it an error to compare a bytes object and a Unicode object. by Jeremy Hylton · 17 years ago
  51. 39342f4 Patch # 1048 by Amaury Forgeot d'Arc. by Guido van Rossum · 17 years ago
  52. c4140a1 PEP 7 clean ups, no change in behavior. by Jeremy Hylton · 17 years ago
  53. b3cf6fd Oops, remove an abort() I put in for debugging. by Guido van Rossum · 17 years ago
  54. 7d1df6c Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() but by Guido van Rossum · 17 years ago
  55. 4430095 Corrected missed #if in r57652. by Eric Smith · 17 years ago
  56. b7f5ba1 Added conditional compilation for '()', which was an allowed sign code in a by Eric Smith · 17 years ago
  57. a74184e Commit strict str/bytes distinction. by Guido van Rossum · 17 years ago
  58. 625cbf2 Modified parsing of format strings, so that we always return by Eric Smith · 17 years ago
  59. 3e57b52 Fix buglet in sliceobjects, they were not returning Py_NotImplemented when by Thomas Wouters · 17 years ago
  60. ed03b41 Merge the trunk changes in. Breaks socket.ssl for now. by Thomas Wouters · 17 years ago
  61. 9e7c8da Simplified tuple returned by string._formatter_parser to only have by Eric Smith · 17 years ago
  62. 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
  63. 0cb431c Code layout changes for PEP 7 compliance. by Eric Smith · 17 years ago
  64. 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
  65. 7a6dd29 Cleanup in anticipation of moving formatteriterator and fieldnameiterator into stringlib/string_format.h. by Eric Smith · 17 years ago
  66. 35d9428 There should be no codecs left that return str8 intead of bytes. by Guido van Rossum · 17 years ago
  67. ddd2582 Fixed accidental indentation change. by Eric Smith · 17 years ago
  68. e226b55 PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unicode methods instead (per GvR suggestion). by Eric Smith · 17 years ago
  69. 8a4eb29 Fix refleaks in test_unicode and test_string related to the new format code. by Neal Norwitz · 17 years ago
  70. 2bad970 Make some internal functions static by Neal Norwitz · 17 years ago
  71. 247b515 This adds a leak, but fixes a crash. The leaking code is: by Neal Norwitz · 17 years ago
  72. 7ade648 PEP 3101: Completed string.Formatter class. Reimplemented field_name to object transformation. by Eric Smith · 17 years ago
  73. a62db27 Restore an assert, but move it to the proper place. by Neal Norwitz · 17 years ago
  74. 80e7f27 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  75. ed2b739 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  76. 6ea45d3 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  77. 571861d Remove assert that seems out of place. It triggers with test_string, by Neal Norwitz · 17 years ago
  78. 7e95bef Use unicode and stop supporting str8 by Neal Norwitz · 17 years ago
  79. 312e10d Get rid of more uses of string and use const in a few places. by Neal Norwitz · 17 years ago
  80. 3ef6a57 Get rid of compiler warning on 64-bit by Neal Norwitz · 17 years ago
  81. f616b22 Support unicode names by Neal Norwitz · 17 years ago
  82. a369c5a Use unicode by Neal Norwitz · 17 years ago
  83. 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago
  84. e0a0a6e Since PyUnicode_AsString is a public API, don't just assert, but do by Neal Norwitz · 17 years ago
  85. 523259b Keir Mierle's set operations for dict views (keys/items only of course). by Guido van Rossum · 17 years ago
  86. 41103bf Ensure that code object names (co_name) are unicode. by Neal Norwitz · 17 years ago
  87. aac530c Patch with Keir Mierle: add rich comparisons between dict views and sets, by Guido van Rossum · 17 years ago
  88. 75d38e9 Whitespace cleanup. by Guido van Rossum · 17 years ago
  89. 10ab4ae Patch by Keir Mierle so that sets can be compared to other objects that know by Guido van Rossum · 17 years ago
  90. 928115a CFunctions' doc strings should be Unicode. by Guido van Rossum · 17 years ago
  91. 2fa33db Finish the work on __round__ and __trunc__. With Alex Martelli and Keir Mierle. by Guido van Rossum · 17 years ago
  92. 53cbdaa Convert a bunch of constant strings in C to unicode. by Neal Norwitz · 17 years ago
  93. 2523621 Change the error reporting when an invalid string is encountered to avoid by Guido van Rossum · 17 years ago
  94. b803c51 Fix memory leak in arraymodule.c and respond to a few comments by nnorwitz. by Travis E. Oliphant · 17 years ago
  95. 30d1c51 Remove _PyObject_Del by Neal Norwitz · 17 years ago
  96. 666bb41 SF #1777057, fix memoryview('test') so it works in debug mode too. by Neal Norwitz · 17 years ago
  97. faa54a3 Code review of the new buffer protocol. Mostly add questions that should by Neal Norwitz · 17 years ago
  98. 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
  99. 8d991ed Move some declarations before code, to compile with GCC 2.95. by Guido van Rossum · 17 years ago
  100. 41980ca Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le and by Walter Dörwald · 17 years ago