summaryrefslogtreecommitdiff
path: root/Lib/test/test_str.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-28598: Support __rmod__ for RHS subclasses of str in % string formatting ...Xiang Zhang2017-03-011-0/+9
* Issue #24731: Fixed crash on converting objects with special methodsSerhiy Storchaka2015-11-251-0/+6
* Issue #7267: format(int, 'c') now raises OverflowError when the argument is notVictor Stinner2015-11-091-0/+5
* Issue #19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-101-6/+6
* Issue #14700: Fix buggy overflow checks for large precision and width in new-...Mark Dickinson2012-10-281-0/+27
* #6780: fix starts/endswith error message to mention that tuples are accepted ...Ezio Melotti2011-04-261-1/+12
* Check PendingDeprecationWarning after issue #7994.Florent Xicluna2010-09-131-4/+7
* add keyword arguments support to str/unicode encode and decode #6300Benjamin Peterson2009-09-181-0/+11
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-1/+1
* Issue 6089: str.format raises SystemError.Eric Smith2009-05-231-0/+4
* Issue 5237, Allow auto-numbered replacement fields in str.format() strings.Eric Smith2009-03-141-3/+33
* Preemptively backport the relevant parts of r65420Antoine Pitrou2008-08-021-0/+3
* Moved testing of builtin types out of test_builtin and into type specific mod...Benjamin Peterson2008-05-031-0/+14
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-1/+0
* Backport of PEP 3101, Advanced String Formatting, from py3k.Eric Smith2008-02-171-0/+258
* Prevent these tests from running on Win64 since they don\'t apply there eitherNeal Norwitz2007-06-111-1/+2
* Prevent expandtabs() on string and unicode objects from causing a segfault whenNeal Norwitz2007-06-091-0/+11
* Make subclasses of int, long, complex, float, and unicode perform typeBrett Cannon2005-04-261-0/+63
* Move test_bug1001011() to string_tests.MixinStrUnicodeTest so thatWalter Dörwald2004-08-261-1/+2
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-3/+1
* Fix PyString_Format() so that '%c' % u'a' returns u'a'Walter Dörwald2003-03-311-0/+4
* Port all string tests to PyUnit and share as much testsWalter Dörwald2003-02-211-0/+23