1. 6f376c4 Enable new I/O. Disable creation of old files. by Guido van Rossum · 17 years ago
  2. 1be7e3f Add a format character %S to PyUnicode_FromFormat() that by Walter Dörwald · 17 years ago
  3. 4581ae5 Make test_base64 pass. by Guido van Rossum · 17 years ago
  4. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  5. 4ad9421 Rename test_xrange.py to test_range.py and fix the type name in various spots. by Walter Dörwald · 17 years ago
  6. 03b43d8 repr(range(10)) now returns 'range(0, 10)' for clarity. by Walter Dörwald · 17 years ago
  7. 850e516 Change range_repr() to use %R for the start/stop/step attributes. by Walter Dörwald · 17 years ago
  8. 7569dfe Add a format specifier %R to PyUnicode_FromFormat(), which embeds by Walter Dörwald · 17 years ago
  9. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  10. d203431 Add 'U'/'U#' format characters to Py_BuildValue (and thus by Walter Dörwald · 17 years ago
  11. 5550731 Revert last checkin: _PyUnicode_New() allocates space by Walter Dörwald · 17 years ago
  12. 9992835 Allocate one more character, so that the terminating nullbyte can be copied. by Walter Dörwald · 17 years ago
  13. bbbd4fd Make test_new pass. by Guido van Rossum · 17 years ago
  14. ebe3e16 Merged revisions 55342-55406 via svnmerge from by Guido van Rossum · 17 years ago
  15. 2be161d Make tset_float pass. float(<unicode>) was never very good -- it used by Guido van Rossum · 17 years ago
  16. a28c291 Add what looks like a necessary call to PyErr_NoMemory() when PyMem_MALLOC() by Guido van Rossum · 17 years ago
  17. 0f0eb0b Kill two innocuous compiler warnings. by Guido van Rossum · 17 years ago
  18. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
  19. a8add0e Merged revisions 55270-55324 via svnmerge from by Guido van Rossum · 17 years ago
  20. 827b055 Change PyUnicode_EncodeCharmap() to return bytes objects by Walter Dörwald · 17 years ago
  21. 711005d Change PyUnicode_EncodeRawUnicodeEscape() to return bytes by Walter Dörwald · 17 years ago
  22. db5d33e Reuse static global hexdigits array. by Walter Dörwald · 17 years ago
  23. 79e913e Change PyUnicode_EncodeUnicodeEscape() to return a bytes object. by Walter Dörwald · 17 years ago
  24. b03ccc0 Simplify PyObject_Unicode(NULL) by using PyUnicode_FromString(). by Walter Dörwald · 17 years ago
  25. 3b116a3 Merged revisions 55228 via svnmerge from by Guido van Rossum · 17 years ago
  26. 63eac15 The NULL pointer for empty strings turns out to be a pain. by Guido van Rossum · 17 years ago
  27. cd6ae68 I don't know how come bytes.join() was a class method, but that's clearly by Guido van Rossum · 17 years ago
  28. 580ceed Mention type in the exception message. by Walter Dörwald · 17 years ago
  29. bc14efb Make the StringIO test pass. by Guido van Rossum · 17 years ago
  30. 57b93ad repr(b"\0") should return b"\x00", not the (unusual) b"\0". by Guido van Rossum · 17 years ago
  31. 317e774 Merged revisions 55180-55183 via svnmerge from by Guido van Rossum · 17 years ago
  32. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  33. a14c4bb Check whether the strlen() result overflows Py_ssize_t. by Walter Dörwald · 17 years ago
  34. 51ab414 Change PyUnicode_EncodeUTF7() to return a bytes object. by Walter Dörwald · 17 years ago
  35. ce32db3 Silence gcc warnings. by Walter Dörwald · 17 years ago
  36. 071b9da When creating a unicode object from a char * characters by Walter Dörwald · 17 years ago
  37. acaa5a1 Add PyUnicode_FromString(), which create a unicode object from a by Walter Dörwald · 17 years ago
  38. 612344f Change UnicodeDecodeError objects so that the 'object' attribute by Walter Dörwald · 17 years ago
  39. 3cc3452 Change PyUnicode_EncodeUTF16() so that it returns by Walter Dörwald · 17 years ago
  40. c8c8233 It's ok for __repr__ to return unicode. by Guido van Rossum · 17 years ago
  41. 4355a47 Make all of test_bytes pass (except pickling, which is too badly busted). by Guido van Rossum · 17 years ago
  42. 6c1e674 Add trailing null bytes to a few more places. by Guido van Rossum · 17 years ago
  43. 09dc34f Compare and hash unicode objects like their UTF-8 representations. by Guido van Rossum · 17 years ago
  44. f15a29f More coding by random modification. by Guido van Rossum · 17 years ago
  45. 5d7a700 Fix type name (str has been renamed to str8). by Walter Dörwald · 17 years ago
  46. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  47. 84fc66d Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'. by Guido van Rossum · 17 years ago
  48. 572dbf8 Checkpoint. Manipulated things so that string literals are always by Guido van Rossum · 17 years ago
  49. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  50. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  51. 84d79dd Disallow u"..." + b"..." and b"..." + u"...". by Guido van Rossum · 17 years ago
  52. ad7d8d1 Rough and dirty job -- allow concatenation of bytes and arbitrary by Guido van Rossum · 17 years ago
  53. b6f1fdc Clean up trailing whitespace. by Guido van Rossum · 17 years ago
  54. 0dd32e2 Real pickling for bytes. Restore complex pickling. Use cPickle in io.py. by Guido van Rossum · 17 years ago
  55. ebea9be Bytes should never equal unicode. Add tests for str <cmpop> bytes. by Guido van Rossum · 17 years ago
  56. 343e97f For Make Benefit Glorious Nation of Backwards Compatibility, by Guido van Rossum · 17 years ago
  57. 6b18a5b Fix refcounting bug reported by Amaury Forgeot d'Arc. by Guido van Rossum · 17 years ago
  58. e27dc72 By default, != returns the opposite of ==, unless the latter returns by Guido van Rossum · 17 years ago
  59. 428f064 Remove the deprecated and useless "pend" argument from by Georg Brandl · 17 years ago
  60. ed3b838 Check the keys of the locals dict -- they need not be a list. by Georg Brandl · 17 years ago
  61. e32b422 Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir. by Georg Brandl · 17 years ago
  62. 4fc8ae4 Fix off-by-one bug in memmove() call in bytes_insert(). by Guido van Rossum · 17 years ago
  63. 6968b05 SF patch #1669633, add methods for bytes from Pete Shinners. by Neal Norwitz · 17 years ago
  64. b3f568f Remove a few stray tabs from bytesobject.c. by Georg Brandl · 17 years ago
  65. 0b9b9e0 Implement bytes.fromhex(), with tests. by Georg Brandl · 17 years ago
  66. eff072c Fix some silly uses of KEYS, ITEMS, VALUES. by Guido van Rossum · 17 years ago
  67. ba7bf49 Remove the ability to slice/index on exceptions per PEP 352. by Brett Cannon · 17 years ago
  68. e36f2ba Add TODO by Neal Norwitz · 17 years ago
  69. 2633c69 Remove the exceptions builtin module, all the exceptions are already builtin. by Neal Norwitz · 17 years ago
  70. 61c31b0 Another refleak, this time in PyLong_AsLong. Fixes leaks showing in by Georg Brandl · 17 years ago
  71. 6ce7d1e Fix a refleak in PyString_Format. by Georg Brandl · 17 years ago
  72. 80b331c Fix refleaks in function objects caused by kwdefaults not being allocated. by Georg Brandl · 17 years ago
  73. 032a284 Don't confound Neil S on b"a"[0] = b"b". by Guido van Rossum · 17 years ago
  74. 025488b These comments aren't relevant for 3k. They were to support modules compiled by Neal Norwitz · 17 years ago
  75. 221085d Change all the function attributes from func_* -> __*__. This gets rid by Neal Norwitz · 17 years ago
  76. 27d517b Merged revisions 53875-53911 via svnmerge from by Thomas Wouters · 17 years ago
  77. ee91be4 Make bytes_repr return a string containing a b"" literal. by Georg Brandl · 17 years ago
  78. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 17 years ago
  79. d9214d1 Make dict.keys() and dict.items() comparable to sets, using == and !=. by Guido van Rossum · 17 years ago
  80. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 17 years ago
  81. 3ac6741 Implement __contains__ for dict_keys and dict_items. by Guido van Rossum · 17 years ago
  82. 83825ac Endow dict views with a proper length method. by Guido van Rossum · 17 years ago
  83. b90c848 Very preliminary work on dict views. by Guido van Rossum · 17 years ago
  84. 79139b2 Kill off softspace completely (except in formatter.py which seems to have by Guido van Rossum · 17 years ago
  85. 21298cf Remove bogus INCREF of ziptuple: it is a freshly-allocated tuple object. by Martin v. Löwis · 17 years ago
  86. 14b6d92 Fix refcounting bugs related to CONVERT_BINOP. by Martin v. Löwis · 17 years ago
  87. 9fe394c Merged revisions 53538-53622 via svnmerge from by Thomas Wouters · 17 years ago
  88. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 17 years ago
  89. fc7bb8c Merged revisions 53304-53433,53435-53450 via svnmerge from by Thomas Wouters · 17 years ago
  90. 523d4f9 Fix the sqlite failure -- it was the usual, PyInt_Check -> PyInt_CheckExact. by Guido van Rossum · 17 years ago
  91. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 17 years ago
  92. 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 17 years ago
  93. c150536 PEP 3107 - Function Annotations thanks to Tony Lownds by Neal Norwitz · 18 years ago
  94. 545686b Remove PyFloat_AsReprString() and PyFloat_AsString() which should not by Neal Norwitz · 18 years ago
  95. 9a4e95c The opstrings table was backwards. Add an XXX comment. by Guido van Rossum · 18 years ago
  96. 376446d Implement extended slicing in bytes objects. by Thomas Wouters · 18 years ago
  97. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  98. 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 18 years ago
  99. 4f72a78 Jiwon Seo's PEP 3102 implementation. by Guido van Rossum · 18 years ago
  100. ca81046 Get rid of more coerce cruft (really check in this time :-) by Neal Norwitz · 18 years ago