From c35491ee3a0f3999791de83e65ef94994058ac5e Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Fri, 9 Aug 2002 01:37:06 +0000 Subject: Moved inplace add and multiply methods from UserString to MutableString. Closes SF Bug #592573 where inplace add mutated a UserString. Added unittests to verify the bug is cleared. --- Lib/test/test_userstring.py | 1 + 1 file changed, 1 insertion(+) (limited to 'Lib/test/test_userstring.py') diff --git a/Lib/test/test_userstring.py b/Lib/test/test_userstring.py index 5492f2e526..67fbb5c00e 100755 --- a/Lib/test/test_userstring.py +++ b/Lib/test/test_userstring.py @@ -42,3 +42,4 @@ def test(methodname, input, output, *args): string_tests.run_method_tests(test) string_tests.run_contains_tests(test) +string_tests.run_inplace_tests(UserString) -- cgit v1.2.1