1. 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
  2. 8d991ed Move some declarations before code, to compile with GCC 2.95. by Guido van Rossum · 17 years ago
  3. 41980ca Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le and by Walter Dörwald · 17 years ago
  4. 0661009 Get rid of some dead code and unneeded XXX comments by Neal. by Guido van Rossum · 17 years ago
  5. 4738340 Implement PEP 3131. Add isidentifier to str. by Martin v. Löwis · 17 years ago
  6. 13c3e38 Add XID_Start and XID_Continue properties to unicodectype. by Martin v. Löwis · 17 years ago
  7. ff398c6 Format bools properly in %d. by Martin v. Löwis · 17 years ago
  8. ab40b30 Add comment that should be addressed by Neal Norwitz · 17 years ago
  9. 46fc337 PyErr_Warn is deprecated in 2.5 - goes away for 3.0 by Skip Montanaro · 17 years ago
  10. 447e7c3 Fix memory leak by Neal Norwitz · 17 years ago
  11. 0168802 Kill execfile(), use exec() instead by Neal Norwitz · 17 years ago
  12. 8dfc4a9 Remove support for __members__ and __methods__. There still might be by Neal Norwitz · 17 years ago
  13. 36f938f Fix refleak: decref inputobj after extracting the relavant info (the object by Walter Dörwald · 17 years ago
  14. 1101980 In PyFile_WriteString(), call PyUnicode_FromString() instead of by Guido van Rossum · 17 years ago
  15. 6ca130d Oops. The PyObject_Print() function was totally broken; the original code by Guido van Rossum · 17 years ago
  16. eb29e9a Fix core dump in an endcase of b.strip() that I missed. by Guido van Rossum · 17 years ago
  17. bdba5cf Change the repr() of frozenset instances (and set subclasses) by Guido van Rossum · 17 years ago
  18. 2220122 Oops. I killed a bit too much and not enough when I deleted intobject.c. by Guido van Rossum · 17 years ago
  19. 04dbf3b Kill all uses and definitions of tp_print under Objects/. (Others will follow.) by Guido van Rossum · 17 years ago
  20. d474ce8 Remove references to unicode from help(str). by Collin Winter · 17 years ago
  21. 806c246 Merged revisions 56753-56781 via svnmerge from by Guido van Rossum · 17 years ago
  22. 9c12106 Change PyUnicode_FromString[AndSize] to expect UTF-8. by Martin v. Löwis · 17 years ago
  23. 33d2689 Merged revisions 56492-56752 via svnmerge from by Guido van Rossum · 17 years ago
  24. 1e2b760 Fix an obvious bug caused by a switch to Unicode. by Guido van Rossum · 17 years ago
  25. 4737482 Add a default __prepare__() method to 'type', so it can be called by Guido van Rossum · 17 years ago
  26. b43daf7 Changes to long and float by Jeffrey Jasskin to conform to PEP 3141. by Guido van Rossum · 17 years ago
  27. 46334cd Kill div, mod and divmod on complex (already deprecated in 2.x). by Guido van Rossum · 17 years ago
  28. e78178e Bytes (which are the input for decoding) are mutable now. If a decoding by Walter Dörwald · 17 years ago
  29. 45c85d1 Fix the docstrings for keys(), items(), values() (especially the latter). by Guido van Rossum · 17 years ago
  30. 5d7428b Fix merge breakage. by Martin v. Löwis · 17 years ago
  31. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  32. f93254d Fix test_pickle, by reverting the string opcodes (S, T, U) to returning by Guido van Rossum · 17 years ago
  33. 00058aa Fix a bug in PyUnicode_FromStringAndSize() with signed characters. by Guido van Rossum · 17 years ago
  34. b5a755e Merged revisions 56301-56442 via svnmerge from by Guido van Rossum · 17 years ago
  35. 10a60b3 Change Py_BuildValue to generate Unicode objects for by Martin v. Löwis · 17 years ago
  36. 307fa8c Three patches by Amaury Forgeot d'Arc; SF patch# 1754484. by Guido van Rossum · 17 years ago
  37. 8ac004e Make chr() and ord() return/accept surrogate pairs in narrow builds. by Guido van Rossum · 17 years ago
  38. e7a0d39 Fixed a refcount leak in _PyUnicode_AsDefaultEncodedString(). by Guido van Rossum · 17 years ago
  39. ace8ba8 Revert a wrong commit. by Thomas Heller · 17 years ago
  40. f630dac Must create heaptypes with unicode names. by Thomas Heller · 17 years ago
  41. 3b64580 Remove unused local variable. by Thomas Heller · 17 years ago
  42. 55b4a7b Make test_descr.py pass. Had to disable a few tests, remove references by Guido van Rossum · 17 years ago
  43. a1cdfd9 Fix a subtle bug in PyString_Repr(). by Guido van Rossum · 17 years ago
  44. 7104458 Change float.__getformat__() to return a unicode string. by Walter Dörwald · 17 years ago
  45. 63a28be Silence GCC warning about uninitialzed variable. by Walter Dörwald · 17 years ago
  46. 32a4c71 Patch by Ron Adam: Don't use u prefix in unicode error messages by Walter Dörwald · 17 years ago
  47. 7eaf822 Merged revisions 55962-56019 via svnmerge from by Guido van Rossum · 17 years ago
  48. 7611d1d Patch by Ron Adam to make repr(str8(...)) return something looking like by Guido van Rossum · 17 years ago
  49. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  50. fa33163 Discard unused function. by Guido van Rossum · 17 years ago
  51. 755114a Make it compile with GCC 2.96. by Guido van Rossum · 17 years ago
  52. da5b8f2 Rip out the file object's implementation. by Guido van Rossum · 17 years ago
  53. 26e0f51 Mention name of left operand, if "foo in unicode_string" fails. by Walter Dörwald · 17 years ago
  54. 5397039 Minimal changes to make the "freeze" tool work again. by Guido van Rossum · 17 years ago
  55. d7fb764 Add a format specifier %V to PyUnicode_FromFormat(), that works similar to %U, by Walter Dörwald · 17 years ago
  56. 7516360 Simplify error formatting and type_repr(). by Walter Dörwald · 17 years ago
  57. d376dd9 Simplify error formatting. by Walter Dörwald · 17 years ago
  58. a29d1d7 Simplify error formatting (no default encoding required). by Walter Dörwald · 17 years ago
  59. 7815c5e Check unicode identifier directly instead of converting by Walter Dörwald · 17 years ago
  60. 4dbd01b __module__ is a unicode string now: by Walter Dörwald · 17 years ago
  61. 9b9905b Expect unicode in class_name. by Martin v. Löwis · 17 years ago
  62. 826b9dd Fix getclassname. Fixes test_descrtut. by Martin v. Löwis · 17 years ago
  63. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  64. 3d1d712 Don't lie in error messages from str8. by Guido van Rossum · 17 years ago
  65. e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 17 years ago
  66. 933daed Use PyUnicode_FromFormat() directly. by Walter Dörwald · 17 years ago
  67. b41bb79 unichr() is named chr() now => fix name in error message. by Walter Dörwald · 17 years ago
  68. 233ccf2 Change int_oct() and int_hex() to return unicode objects. by Walter Dörwald · 17 years ago
  69. 787b03b PyUnicode_FromFormat() does support %02x, so use it by Walter Dörwald · 17 years ago
  70. 7696ed7 Change float.__str__() and complex.__str__() to return unicode objects. by Walter Dörwald · 17 years ago
  71. 346737f Add support for width, precision and zeropadding to the %d, %i, %u and %x by Walter Dörwald · 17 years ago
  72. 29478ef Merged revisions 55588-55630 via svnmerge from by Guido van Rossum · 17 years ago
  73. f5bec7c Change tp_str implementations of exception classes to return unicode strings. by Walter Dörwald · 17 years ago
  74. adee45e Merged revisions 55545-55587 via svnmerge from by Guido van Rossum · 17 years ago
  75. 1680713 Add interning of unicode strings by copying the functionality from by Walter Dörwald · 17 years ago
  76. 5c2fab6 Simplify %U handling by using Py_UNICODE_COPY. by Walter Dörwald · 17 years ago
  77. 6f376c4 Enable new I/O. Disable creation of old files. by Guido van Rossum · 17 years ago
  78. 1be7e3f Add a format character %S to PyUnicode_FromFormat() that by Walter Dörwald · 17 years ago
  79. 4581ae5 Make test_base64 pass. by Guido van Rossum · 17 years ago
  80. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  81. 4ad9421 Rename test_xrange.py to test_range.py and fix the type name in various spots. by Walter Dörwald · 17 years ago
  82. 03b43d8 repr(range(10)) now returns 'range(0, 10)' for clarity. by Walter Dörwald · 17 years ago
  83. 850e516 Change range_repr() to use %R for the start/stop/step attributes. by Walter Dörwald · 17 years ago
  84. 7569dfe Add a format specifier %R to PyUnicode_FromFormat(), which embeds by Walter Dörwald · 17 years ago
  85. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  86. d203431 Add 'U'/'U#' format characters to Py_BuildValue (and thus by Walter Dörwald · 17 years ago
  87. 5550731 Revert last checkin: _PyUnicode_New() allocates space by Walter Dörwald · 17 years ago
  88. 9992835 Allocate one more character, so that the terminating nullbyte can be copied. by Walter Dörwald · 17 years ago
  89. bbbd4fd Make test_new pass. by Guido van Rossum · 17 years ago
  90. ebe3e16 Merged revisions 55342-55406 via svnmerge from by Guido van Rossum · 17 years ago
  91. 2be161d Make tset_float pass. float(<unicode>) was never very good -- it used by Guido van Rossum · 17 years ago
  92. a28c291 Add what looks like a necessary call to PyErr_NoMemory() when PyMem_MALLOC() by Guido van Rossum · 17 years ago
  93. 0f0eb0b Kill two innocuous compiler warnings. by Guido van Rossum · 17 years ago
  94. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
  95. a8add0e Merged revisions 55270-55324 via svnmerge from by Guido van Rossum · 17 years ago
  96. 827b055 Change PyUnicode_EncodeCharmap() to return bytes objects by Walter Dörwald · 17 years ago
  97. 711005d Change PyUnicode_EncodeRawUnicodeEscape() to return bytes by Walter Dörwald · 17 years ago
  98. db5d33e Reuse static global hexdigits array. by Walter Dörwald · 17 years ago
  99. 79e913e Change PyUnicode_EncodeUnicodeEscape() to return a bytes object. by Walter Dörwald · 17 years ago
  100. b03ccc0 Simplify PyObject_Unicode(NULL) by using PyUnicode_FromString(). by Walter Dörwald · 17 years ago