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