1. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  2. cd76c27 Added a test to make sure raw strings don't get unicode escapes by Benjamin Peterson · 16 years ago
  3. 8dbca06 Reverted r62128 on Guido's orders by Benjamin Peterson · 16 years ago
  4. 7afb766 #2541 Allow unicode escapes in raw strings by Benjamin Peterson · 16 years ago
  5. fe337bf Merged revisions 61724-61725,61731-61735,61737,61739,61741,61743-61744,61753,61761,61765-61767,61769,61773,61776-61778,61780-61783,61788,61793,61796,61807,61813 via svnmerge from by Christian Heimes · 16 years ago
  6. a37d4c6 Removed PyInt_GetMax and sys.maxint by Christian Heimes · 17 years ago
  7. ceee077 #1496: revert str.translate() to the old version, and add by Georg Brandl · 17 years ago
  8. 254348e Rename buffer -> bytearray. by Guido van Rossum · 17 years ago
  9. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  10. bd1c68c Patch #1303: Adapt str8 constructor to bytes (now buffer) one. by Georg Brandl · 17 years ago
  11. 94c2c75 Patch #1071: Improve unicode.translate() so that you can pass unicode by Georg Brandl · 17 years ago
  12. 4043001 Make str/str8 comparisons return True/False for !=/==. by Brett Cannon · 17 years ago
  13. bae07c9 Breaking ground for PEP 3137 implementation: by Guido van Rossum · 17 years ago
  14. f104429 Patch # 1145 by Thomas Lee: by Guido van Rossum · 17 years ago
  15. 1152919 Changed some ValueError's to KeyError and IndexError. by Eric Smith · 17 years ago
  16. 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
  17. 37f1038 Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking for unicode objects. by Eric Smith · 17 years ago
  18. 185e30c Added format tests. by Eric Smith · 17 years ago
  19. 739e2ad Additional test for formatting code. by Eric Smith · 17 years ago
  20. 9c62772 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  21. 39478e8 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  22. 7ade648 PEP 3101: Completed string.Formatter class. Reimplemented field_name to object transformation. by Eric Smith · 17 years ago
  23. 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago
  24. 4738340 Implement PEP 3131. Add isidentifier to str. by Martin v. Löwis · 17 years ago
  25. 36e0a92 Merged revisions 56443-56466 via svnmerge from by Guido van Rossum · 17 years ago
  26. 697a84b Make test_unicode pass after the lexer was fixed to turn unicode errors by Guido van Rossum · 17 years ago
  27. f903f00 Fix some tests by deleting stuff. by Guido van Rossum · 17 years ago
  28. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  29. 1324c6f There's no longer a u prefix for unicode objects => drop it. by Walter Dörwald · 17 years ago
  30. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  31. 67e8388 test_unicode.py passes again 9except for problems with the idna codec. by Walter Dörwald · 17 years ago
  32. aa97f04 Fix various spots where int/long and str/unicode unification by Walter Dörwald · 17 years ago
  33. 84fc66d Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'. by Guido van Rossum · 17 years ago
  34. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 17 years ago
  35. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  36. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  37. 9d72bb4 Remove functions in string module that are also string methods. Also remove: by Neal Norwitz · 17 years ago
  38. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 18 years ago
  39. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
  40. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  41. 49d6b07 Make the it_index field in the str/unicode iterators Py_ssize_t's. by Guido van Rossum · 18 years ago
  42. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  43. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  44. da6b107 Checkin the test of patch #1400181. by Georg Brandl · 19 years ago
  45. 835b243 Bug #1379994: Fix *unicode_escape codecs to encode r'\' as r'\\' by Hye-Shik Chang · 19 years ago
  46. 430f68b Move registration of the codec search function to the module scope by Neal Norwitz · 19 years ago
  47. cf52c07 Change the %s format specifier for str objects so that it returns a by Neil Schemenauer · 19 years ago
  48. c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 19 years ago
  49. 57d88e5 Move test_bug1001011() to string_tests.MixinStrUnicodeTest so that by Walter Dörwald · 20 years ago
  50. e9ddfbb SF #989185: Drop unicode.iswide() and unicode.width() and add by Hye-Shik Chang · 20 years ago
  51. d25c650 Let u'%s' % obj try obj.__unicode__() first and fallback to obj.__str__(). by Marc-André Lemburg · 20 years ago
  52. 3c14544 Reuse width/iswide tests from strings_test. (Suggested by Walter Dörwald) by Hye-Shik Chang · 20 years ago
  53. 7bd8606 Fix typo. by Hye-Shik Chang · 20 years ago
  54. 974ed7c - SF #962502: Add two more methods for unicode type; width() and by Hye-Shik Chang · 20 years ago
  55. cd736e7 Fix reallocation bug in unicode.translate(): The code was comparing by Walter Dörwald · 21 years ago
  56. 504de6b Fix for SF bug [ 817156 ] invalid \U escape gives 0=length unistr. by Jeremy Hylton · 21 years ago
  57. 0d8e16c Support trailing dots in DNS names. Fixes #782510. Will backport to 2.3. by Martin v. Löwis · 21 years ago
  58. 9a3a9f7 Consider \U-escapes in raw-unicode-escape. Fixes #444514. by Martin v. Löwis · 21 years ago
  59. 21d3a32 Combine the functionality of test_support.run_unittest() by Walter Dörwald · 21 years ago
  60. 44f527f Change formatchar(), so that u"%c" % 0xffffffff now raises by Walter Dörwald · 21 years ago
  61. 56fbcb5 Remove duplicate test. by Walter Dörwald · 21 years ago
  62. 43440a6 Fix PyString_Format() so that '%c' % u'a' returns u'a' by Walter Dörwald · 21 years ago
  63. 0fd583c Port all string tests to PyUnit and share as much tests by Walter Dörwald · 22 years ago
  64. 4f046e2 Add a few tests to test_count() to increase coverage in by Walter Dörwald · 22 years ago
  65. 7464024 Fix copy&paste error: call title instead of count by Walter Dörwald · 22 years ago
  66. 28256f2 Port test_unicode.py to PyUnit and add tests for error by Walter Dörwald · 22 years ago
  67. 395bb49 Add a test that exercises the error handling part of PyUnicode_EncodeDecimal(). by Walter Dörwald · 22 years ago
  68. 79f5783 Patch for bug #659709: bogus computation of float length by Marc-André Lemburg · 22 years ago
  69. ab9e4b7 check for unicode.__mod__ by Neil Schemenauer · 22 years ago
  70. 9cd87aa Fix for bug #626172: crash using unicode latin1 single char by Marc-André Lemburg · 22 years ago
  71. 1ce4ae3 Don't test whether surrogate sequences round-trip in UTF-8. 2.2.2 candidate. by Martin v. Löwis · 22 years ago
  72. 766e300 Use integer above sys.maxunicode for range test. Fixes #608884. 2.2.2 candidate. by Martin v. Löwis · 22 years ago
  73. 5c1ee17 Change the unicode.translate docstring to document that by Walter Dörwald · 22 years ago
  74. 2023c9b Fix SF bug 599128, submitted by Inyeol Lee: .replace() would do the by Guido van Rossum · 22 years ago
  75. 8b1a6d6 Code by Inyeol Lee, submitted to SF bug 595350, to implement by Guido van Rossum · 22 years ago
  76. 76afbd9 Fix some endcase bugs in unicode rfind()/rindex() and endswith(). by Guido van Rossum · 22 years ago
  77. cc8764c Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level. by Marc-André Lemburg · 22 years ago
  78. f36921c Unicode replace() method with empty pattern argument should fail, like by Guido van Rossum · 22 years ago
  79. ca84d65 Expanded the unittests for the new width sensitive PyUnicode_Contains(). by Raymond Hettinger · 22 years ago
  80. e067417 Added a test for PyUnicode_Contains() taking into account the width of by Barry Warsaw · 22 years ago
  81. 817918c Committing patch #591250 which provides "str1 in str2" when str1 is a by Barry Warsaw · 22 years ago
  82. a729daf Add encoding declaration. by Martin v. Löwis · 22 years ago
  83. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 22 years ago
  84. 8ac1495 Whitespace normalization. by Tim Peters · 22 years ago
  85. de02bcb Apply patch diff.txt from SF feature request http://www.python.org/sf/444708 by Walter Dörwald · 22 years ago
  86. 2ee4be0 Apply diff3.txt from SF patch http://www.python.org/sf/536241 by Walter Dörwald · 22 years ago
  87. 863ac44 Whitespace normalization. by Tim Peters · 22 years ago
  88. 068325e Apply the second version of SF patch http://www.python.org/sf/536241 by Walter Dörwald · 22 years ago
  89. ce0b664 Added test case for UTF-8 encoding bug #541828. by Marc-André Lemburg · 22 years ago
  90. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 22 years ago
  91. eddd68d As part of fixing bug #536241, add a test case for string.zfill() with Unicode by Andrew M. Kuchling · 22 years ago
  92. 047c05e Do not insert characters for unicode-escape decoders if the error mode by Martin v. Löwis · 22 years ago
  93. bd3be8f Fix to the UTF-8 encoder: it failed on 0-length input strings. by Marc-André Lemburg · 23 years ago
  94. 3688a88 Fix for the UTF-8 memory allocation bug and the UTF-8 encoding by Marc-André Lemburg · 23 years ago
  95. 2b29cb2 Skipping some tests by adding the usual jython conditional test around: by Finn Bock · 23 years ago
  96. 82285da Whitespace normalization. by Tim Peters · 23 years ago
  97. 41f0199 Adding test for Unicode repr()-output. by Marc-André Lemburg · 23 years ago
  98. 72f8213 Fix for bug #438164: %-formatting using Unicode objects. by Marc-André Lemburg · 23 years ago
  99. 0c4d8d0 Fix for bug #480188: printing unicode objects by Marc-André Lemburg · 23 years ago
  100. b5507ec Additional test and documentation for the unicode() changes. by Marc-André Lemburg · 23 years ago