- 1324c6f There's no longer a u prefix for unicode objects => drop it. by Walter Dörwald · 18 years ago
- 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 18 years ago
- 67e8388 test_unicode.py passes again 9except for problems with the idna codec. by Walter Dörwald · 18 years ago
- aa97f04 Fix various spots where int/long and str/unicode unification by Walter Dörwald · 18 years ago
- 84fc66d Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'. by Guido van Rossum · 18 years ago
- ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 18 years ago
- d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 18 years ago
- a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 18 years ago
- 9d72bb4 Remove functions in string module that are also string methods. Also remove: by Neal Norwitz · 18 years ago
- be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 18 years ago
- e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
- 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
- 49d6b07 Make the it_index field in the str/unicode iterators Py_ssize_t's. by Guido van Rossum · 18 years ago
- 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
- 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 19 years ago
- da6b107 Checkin the test of patch #1400181. by Georg Brandl · 19 years ago
- 835b243 Bug #1379994: Fix *unicode_escape codecs to encode r'\' as r'\\' by Hye-Shik Chang · 19 years ago
- 430f68b Move registration of the codec search function to the module scope by Neal Norwitz · 19 years ago
- cf52c07 Change the %s format specifier for str objects so that it returns a by Neil Schemenauer · 19 years ago
- c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 20 years ago
- 57d88e5 Move test_bug1001011() to string_tests.MixinStrUnicodeTest so that by Walter Dörwald · 20 years ago
- e9ddfbb SF #989185: Drop unicode.iswide() and unicode.width() and add by Hye-Shik Chang · 20 years ago
- d25c650 Let u'%s' % obj try obj.__unicode__() first and fallback to obj.__str__(). by Marc-André Lemburg · 20 years ago
- 3c14544 Reuse width/iswide tests from strings_test. (Suggested by Walter Dörwald) by Hye-Shik Chang · 20 years ago
- 7bd8606 Fix typo. by Hye-Shik Chang · 20 years ago
- 974ed7c - SF #962502: Add two more methods for unicode type; width() and by Hye-Shik Chang · 20 years ago
- cd736e7 Fix reallocation bug in unicode.translate(): The code was comparing by Walter Dörwald · 21 years ago
- 504de6b Fix for SF bug [ 817156 ] invalid \U escape gives 0=length unistr. by Jeremy Hylton · 21 years ago
- 0d8e16c Support trailing dots in DNS names. Fixes #782510. Will backport to 2.3. by Martin v. Löwis · 21 years ago
- 9a3a9f7 Consider \U-escapes in raw-unicode-escape. Fixes #444514. by Martin v. Löwis · 21 years ago
- 21d3a32 Combine the functionality of test_support.run_unittest() by Walter Dörwald · 22 years ago
- 44f527f Change formatchar(), so that u"%c" % 0xffffffff now raises by Walter Dörwald · 22 years ago
- 56fbcb5 Remove duplicate test. by Walter Dörwald · 22 years ago
- 43440a6 Fix PyString_Format() so that '%c' % u'a' returns u'a' by Walter Dörwald · 22 years ago
- 0fd583c Port all string tests to PyUnit and share as much tests by Walter Dörwald · 22 years ago
- 4f046e2 Add a few tests to test_count() to increase coverage in by Walter Dörwald · 22 years ago
- 7464024 Fix copy&paste error: call title instead of count by Walter Dörwald · 22 years ago
- 28256f2 Port test_unicode.py to PyUnit and add tests for error by Walter Dörwald · 22 years ago
- 395bb49 Add a test that exercises the error handling part of PyUnicode_EncodeDecimal(). by Walter Dörwald · 22 years ago
- 79f5783 Patch for bug #659709: bogus computation of float length by Marc-André Lemburg · 22 years ago
- ab9e4b7 check for unicode.__mod__ by Neil Schemenauer · 22 years ago
- 9cd87aa Fix for bug #626172: crash using unicode latin1 single char by Marc-André Lemburg · 22 years ago
- 1ce4ae3 Don't test whether surrogate sequences round-trip in UTF-8. 2.2.2 candidate. by Martin v. Löwis · 22 years ago
- 766e300 Use integer above sys.maxunicode for range test. Fixes #608884. 2.2.2 candidate. by Martin v. Löwis · 22 years ago
- 5c1ee17 Change the unicode.translate docstring to document that by Walter Dörwald · 22 years ago
- 2023c9b Fix SF bug 599128, submitted by Inyeol Lee: .replace() would do the by Guido van Rossum · 22 years ago
- 8b1a6d6 Code by Inyeol Lee, submitted to SF bug 595350, to implement by Guido van Rossum · 22 years ago
- 76afbd9 Fix some endcase bugs in unicode rfind()/rindex() and endswith(). by Guido van Rossum · 22 years ago
- cc8764c Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level. by Marc-André Lemburg · 22 years ago
- f36921c Unicode replace() method with empty pattern argument should fail, like by Guido van Rossum · 22 years ago
- ca84d65 Expanded the unittests for the new width sensitive PyUnicode_Contains(). by Raymond Hettinger · 22 years ago
- e067417 Added a test for PyUnicode_Contains() taking into account the width of by Barry Warsaw · 22 years ago
- 817918c Committing patch #591250 which provides "str1 in str2" when str1 is a by Barry Warsaw · 22 years ago
- a729daf Add encoding declaration. by Martin v. Löwis · 22 years ago
- 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 22 years ago
- 8ac1495 Whitespace normalization. by Tim Peters · 22 years ago
- de02bcb Apply patch diff.txt from SF feature request http://www.python.org/sf/444708 by Walter Dörwald · 23 years ago
- 2ee4be0 Apply diff3.txt from SF patch http://www.python.org/sf/536241 by Walter Dörwald · 23 years ago
- 863ac44 Whitespace normalization. by Tim Peters · 23 years ago
- 068325e Apply the second version of SF patch http://www.python.org/sf/536241 by Walter Dörwald · 23 years ago
- ce0b664 Added test case for UTF-8 encoding bug #541828. by Marc-André Lemburg · 23 years ago
- 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 23 years ago
- eddd68d As part of fixing bug #536241, add a test case for string.zfill() with Unicode by Andrew M. Kuchling · 23 years ago
- 047c05e Do not insert characters for unicode-escape decoders if the error mode by Martin v. Löwis · 23 years ago
- bd3be8f Fix to the UTF-8 encoder: it failed on 0-length input strings. by Marc-André Lemburg · 23 years ago
- 3688a88 Fix for the UTF-8 memory allocation bug and the UTF-8 encoding by Marc-André Lemburg · 23 years ago
- 2b29cb2 Skipping some tests by adding the usual jython conditional test around: by Finn Bock · 23 years ago
- 82285da Whitespace normalization. by Tim Peters · 23 years ago
- 41f0199 Adding test for Unicode repr()-output. by Marc-André Lemburg · 23 years ago
- 72f8213 Fix for bug #438164: %-formatting using Unicode objects. by Marc-André Lemburg · 23 years ago
- 0c4d8d0 Fix for bug #480188: printing unicode objects by Marc-André Lemburg · 23 years ago
- b5507ec Additional test and documentation for the unicode() changes. by Marc-André Lemburg · 23 years ago
- 527e64f Whitespace normalization. by Tim Peters · 23 years ago
- 11310bf Add tests for repr() of strings containing string quotes as well. by Guido van Rossum · 23 years ago
- e4874ae Test basic functioning of unicode repr(). (If this breaks Jython, by Guido van Rossum · 23 years ago
- 6871f6a Implement the changes proposed in patch #413333. unicode(obj) now by Marc-André Lemburg · 23 years ago
- c60e6f7 Patch #435971: UTF-7 codec by Brian Quinlan. by Marc-André Lemburg · 23 years ago
- 80d1dd5 Fix for bug #444493: u'\U00010001' segfaults with current CVS on wide builds. by Marc-André Lemburg · 23 years ago
- 6c6bfb7 Make the unicode-escape and the UTF-16 codecs handle surrogates by Marc-André Lemburg · 23 years ago
- ce9b5a5 Encode surrogates in UTF-8 even for a wide Py_UNICODE. by Martin v. Löwis · 23 years ago
- 2f228e7 Get rid of the superstitious "~" in dict hashing's "i = (~hash) & mask". by Tim Peters · 24 years ago
- 542fe56 Fix for bug #417030: "print '%*s' fails for unicode string" by Marc-André Lemburg · 24 years ago
- ef0a032 Patch by Finn Bock to make test_unicode.py work for Jython. by Marc-André Lemburg · 24 years ago
- fde66e1 Fixed .capitalize() method of Unicode objects to work like the by Marc-André Lemburg · 24 years ago
- a1374e4 Change verify() function to raise TestFailed, not AssertionError. by Guido van Rossum · 24 years ago
- d2bf3b7 Whitespace normalization. Leaving tokenize_tests.py alone for now. by Tim Peters · 24 years ago
- 3661908 This patch removes all uses of "assert" in the regression test suite by Marc-André Lemburg · 24 years ago
- 3a645e4 Added checks to prevent PyUnicode_Count() from dumping core by Marc-André Lemburg · 24 years ago
- a866df8 This patch changes the default behaviour of the builtin charmap by Marc-André Lemburg · 24 years ago
- 8b26454 Test more split argument combinations: by Guido van Rossum · 24 years ago
- 15ffc71 Slight improvement to Unicode test suite, inspired by patch #102563: by Guido van Rossum · 24 years ago
- 004d5e6 Make reindent.py happy (convert everything to 4-space indents!). by Fred Drake · 24 years ago
- b96d802 Updated test with a case which checks for the bug reported in by Marc-André Lemburg · 24 years ago
- e503437 Removing UTF-16 aware Unicode comparison code. This kind of compare by Marc-André Lemburg · 24 years ago
- d6d06ad Tests for new surrogate support in the UTF-8 codec. By Bill Tutt. by Marc-André Lemburg · 24 years ago
- b6d78fcd Tests for new instance support in unicode(). by Marc-André Lemburg · 24 years ago
- 9d46741 Added tests for the new .isalpha() and .isalnum() methods. by Marc-André Lemburg · 24 years ago
- af69f15 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
- a6f73d6 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
- bddf502 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago