1. 254348e Rename buffer -> bytearray. by Guido van Rossum · 18 years ago
  2. 5d14c2b Merged revisions 59056-59076 via svnmerge from by Christian Heimes · 18 years ago
  3. 9cd1775 Merged revisions 59005-59040 via svnmerge from by Christian Heimes · 18 years ago
  4. bce52be Fixed some build issues and updated docs. by Christian Heimes · 18 years ago
  5. b7f17e4 Found another memory leak in longrangeiter. And redo the previous correction by Amaury Forgeot d'Arc · 18 years ago
  6. 519a042 Replace PyObject_Unicode with PyObject_Str everywhere, and remove the by Thomas Heller · 18 years ago
  7. a1e9ec4 Correct a memory leak: the range() object was not properly freed. by Amaury Forgeot d'Arc · 18 years ago
  8. 58cb1b8 Fix for #1415 pythonw.exe fails because std streams a missing by Christian Heimes · 18 years ago
  9. 1607278 Let's do as Guido says and return None instead of -1 by Christian Heimes · 18 years ago
  10. af935e3 Stop Python code from instantiating a new stdprinter with sys.stderr.__class__() by Christian Heimes · 18 years ago
  11. 96f3163 Merged revisions 58930-58938 via svnmerge from by Christian Heimes · 18 years ago
  12. 58da931 Merged revisions 58886-58929 via svnmerge from by Guido van Rossum · 18 years ago
  13. e018b30 Bug #1415 by Christian Heimes · 18 years ago
  14. 7b6fc8e Fixed memoryview constructor. It allowed arbitrary keyword arguments. The bug was found by mykhal from #python. I've also added a small test case in the new test_memoryview.py by Christian Heimes · 18 years ago
  15. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 18 years ago
  16. 5894ba7 Fixed a bug in PyUnicode_DecodeFSDefault. strcmp() returns 0 on success. by Christian Heimes · 18 years ago
  17. a6c04be Patch 1171 by mfenniak -- allow subclassing of bytes. by Guido van Rossum · 18 years ago
  18. e845c0f Fixes for issue 1752184, ensuring type objects are always created by Guido van Rossum · 18 years ago
  19. 8ce8a78 Merged revisions 58221-58741 via svnmerge from by Guido van Rossum · 18 years ago
  20. c6ecfcd Minor correction to the stdprinter object. by Guido van Rossum · 18 years ago
  21. 826d897 Patch 1352 (continued in issue 1329) by Christian Heimes. by Guido van Rossum · 18 years ago
  22. 2dced8b Patch 1329 (partial) by Christian Heimes. by Guido van Rossum · 18 years ago
  23. bed6784 Get rid of more uses of string and use unicode by Neal Norwitz · 18 years ago
  24. ae404e2 Sort the method lists for str8 and bytes so differences are more apparent. by Guido van Rossum · 18 years ago
  25. a5d2d55 Patch 1335 by Christian Heimes. by Guido van Rossum · 18 years ago
  26. 61ec0d3 Fix some Py_ssize_t warnings on Win64 that were probably bugs by Neal Norwitz · 18 years ago
  27. daa251c Patch # 1302 by Christian Heimes (with some love from me :-). by Guido van Rossum · 18 years ago
  28. d2093f7 Fix a refleak for `filename', introduced in rev. 58466. by Georg Brandl · 18 years ago
  29. 5a2f7e60 Fix a broken format in a PyErr_Format() call: %lx is not supported. by Guido van Rossum · 18 years ago
  30. bd1c68c Patch #1303: Adapt str8 constructor to bytes (now buffer) one. by Georg Brandl · 18 years ago
  31. e1a0d11 #1316: remove redundant PyLong_Check calls when PyInt_Check was already called. by Georg Brandl · 18 years ago
  32. b6538a8 Remove redundant PyInt/PyLong checks. by Georg Brandl · 18 years ago
  33. 94c2c75 Patch #1071: Improve unicode.translate() so that you can pass unicode by Georg Brandl · 18 years ago
  34. 4043001 Make str/str8 comparisons return True/False for !=/==. by Brett Cannon · 18 years ago
  35. 40d20bc Issue 1267, continued. by Guido van Rossum · 18 years ago
  36. ce3a72a Patch 1267 by Christian Heimes. by Guido van Rossum · 18 years ago
  37. 75a902d Patch 1280, by Alexandre Vassalotti. by Guido van Rossum · 18 years ago
  38. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 18 years ago
  39. 60d241f For PEP3137: Adds missing methods to the mutable PyBytes object (soon by Gregory P. Smith · 18 years ago
  40. 3d2fd7f Fix a small typo in the comment of unicode_default_encoding[]. by Alexandre Vassalotti · 18 years ago
  41. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 18 years ago
  42. 70a2371 Remove the buffer API from PyUnicode as specified by PEP 3137. Also, by Alexandre Vassalotti · 18 years ago
  43. 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 · 18 years ago
  44. 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 · 18 years ago
  45. e518bf3 PyFile_WriteObject() should use PyObject_Repr(), not _ReprStr8(). by Guido van Rossum · 18 years ago
  46. 1e35e76 Patch #1049 by Thomas Lee. by Guido van Rossum · 18 years ago
  47. 6ccd3f2 Replace all (locale-dependent) uses of isupper(), tolower(), etc., by by Guido van Rossum · 18 years ago
  48. be801ac Delete bufferobject.[ch]. by Guido van Rossum · 18 years ago
  49. b35f128 At least one of the buildbots was complaining about newview being used by Neal Norwitz · 18 years ago
  50. f104429 Patch # 1145 by Thomas Lee: by Guido van Rossum · 18 years ago
  51. 5dde61d Whitespace and line lengrth cleanup. by Guido van Rossum · 18 years ago
  52. 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 · 18 years ago
  53. 16c7075 Remove more cruft leftover from nb_coerce. Rename nb_coerce to nb_reserved. by Neil Schemenauer · 18 years ago
  54. ce272b6 Merged revisions 58203-58210 via svnmerge from by Thomas Wouters · 18 years ago
  55. 1b7f891 Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from by Thomas Wouters · 18 years ago
  56. c250493 Optimize unicode_hash() by not calling by Guido van Rossum · 18 years ago
  57. e4a9e78 Thomas Wouters suggested an obvious improvement to unicode_eq(): use memcmp(). by Guido van Rossum · 18 years ago
  58. 89d8c60 Switch dict lookup around to optimizing for unicode. by Guido van Rossum · 18 years ago
  59. 4d02772 Micro optimizations after staring at gprof output for a while. by Guido van Rossum · 18 years ago
  60. 54cf12b Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE. by Sean Reifscheider · 18 years ago
  61. 8f95067 Bug # 1125 (my code). by Guido van Rossum · 18 years ago
  62. da86fcc Drop convert_binop. by Martin v. Löwis · 18 years ago
  63. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 18 years ago
  64. f8c37d1 Restore caching of unicode hash value. This apparently was broken by Neil Schemenauer · 18 years ago
  65. 3404b3c Check in some documentation tweaks for PEP 3141, add some tests, and implement by Jeffrey Yasskin · 18 years ago
  66. 45c0787 Simplified recursion logic. Modified variable name to match string.Formatter. by Eric Smith · 18 years ago
  67. 1152919 Changed some ValueError's to KeyError and IndexError. by Eric Smith · 18 years ago
  68. 4cb4e4e Fix segfault discovered by Ron Adam. Not checking for terminating right bracket in "'{0[}'.format(())". Fixed, and tests added. by Eric Smith · 18 years ago
  69. 1966f1c Fix refleaks exposed by test_raise. by Collin Winter · 18 years ago
  70. f2fc934 Get rid of METH_OLDARGS. by Georg Brandl · 18 years ago
  71. 37f1038 Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking for unicode objects. by Eric Smith · 18 years ago
  72. 9cd1e09 Removed unicode_format and unicode__format__, they just called through to other functions. by Eric Smith · 18 years ago
  73. 06b8b02 Per Georg's suggestion, get rid of str.decode() (which always raises an by Guido van Rossum · 18 years ago
  74. 90d1fcd Change %s argument for PyUnicode_FromFormat to be UTF-8. Fixes #1070. by Martin v. Löwis · 18 years ago
  75. 20594cc round(1e20) wrongly returned 0. This fixes test_builtin on windows. by Thomas Heller · 18 years ago
  76. 1fe5f38 Remove checking redundantly for checks of PyInt and PyLong. by Neal Norwitz · 18 years ago
  77. 6deb1bf Use pow() instead of repeated multiplication by 10 in round(x, n). by Guido van Rossum · 18 years ago
  78. 828f04a Issue #1066: implement PEP 3109, 2/3 of PEP 3134. by Collin Winter · 18 years ago
  79. d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 18 years ago
  80. 185e30c Added format tests. by Eric Smith · 18 years ago
  81. f4780d0 Fix #1753395. by Georg Brandl · 18 years ago
  82. 2b65c75 Set startinpos before calling the error handler. by Walter Dörwald · 18 years ago
  83. a651d3d Rewrap line. by Walter Dörwald · 18 years ago
  84. 16596dd Try to fix the problem on the Windows buildbot where this code: by Neal Norwitz · 18 years ago
  85. 18c3ff8 Make it an error to compare a bytes object and a Unicode object. by Jeremy Hylton · 18 years ago
  86. 39342f4 Patch # 1048 by Amaury Forgeot d'Arc. by Guido van Rossum · 18 years ago
  87. c4140a1 PEP 7 clean ups, no change in behavior. by Jeremy Hylton · 18 years ago
  88. b3cf6fd Oops, remove an abort() I put in for debugging. by Guido van Rossum · 18 years ago
  89. 7d1df6c Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() but by Guido van Rossum · 18 years ago
  90. 4430095 Corrected missed #if in r57652. by Eric Smith · 18 years ago
  91. b7f5ba1 Added conditional compilation for '()', which was an allowed sign code in a by Eric Smith · 18 years ago
  92. a74184e Commit strict str/bytes distinction. by Guido van Rossum · 18 years ago
  93. 625cbf2 Modified parsing of format strings, so that we always return by Eric Smith · 18 years ago
  94. 3e57b52 Fix buglet in sliceobjects, they were not returning Py_NotImplemented when by Thomas Wouters · 18 years ago
  95. ed03b41 Merge the trunk changes in. Breaks socket.ssl for now. by Thomas Wouters · 18 years ago
  96. 9e7c8da Simplified tuple returned by string._formatter_parser to only have by Eric Smith · 18 years ago
  97. 79710cd Changed STRINGLIB_CMP from an inline function to a macro in order to avoid a 'defined but not used' warning. by Eric Smith · 18 years ago
  98. 0cb431c Code layout changes for PEP 7 compliance. by Eric Smith · 18 years ago
  99. f6db409 Moved fieldnameiterator and formatteriterator to stringlib/string_format.h, so that they can be used when backporting to 2.6. by Eric Smith · 18 years ago
  100. 7a6dd29 Cleanup in anticipation of moving formatteriterator and fieldnameiterator into stringlib/string_format.h. by Eric Smith · 18 years ago