From: Michele Angrisano Date: Thu, 23 May 2019 14:42:50 +0000 (+0200) Subject: bpo-36713: Rename duplicated method in test_unicode. (#13525) X-Git-Tag: v2.7.17rc1~73 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=25d8404c358f3b1cc8321cdc74049d45dcb8d014;p=thirdparty%2FPython%2Fcpython.git bpo-36713: Rename duplicated method in test_unicode. (#13525) modified: Lib/ctypes/test/test_unicode.py modified: Misc/ACKS new file: Misc/NEWS.d/next/Library/2019-05-23-15-57-36.bpo-36713.sjPhnf.rst --- diff --git a/Lib/ctypes/test/test_unicode.py b/Lib/ctypes/test/test_unicode.py index 1da5a25f25d3..ec5663a5001b 100644 --- a/Lib/ctypes/test/test_unicode.py +++ b/Lib/ctypes/test/test_unicode.py @@ -93,7 +93,7 @@ class StringTestCase(UnicodeTestCase): func.argtypes = None func.restype = ctypes.c_int - def test_ascii_replace(self): + def test_ascii_strict(self): func = self.func ctypes.set_conversion_mode("ascii", "strict") self.assertEqual(func("abc"), "abc") diff --git a/Misc/ACKS b/Misc/ACKS index 3e71016a7ec4..eba64ae02586 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -47,6 +47,7 @@ Juancarlo Añez Chris Angelico Jérémy Anger Jon Anglin +Michele Angrisano Ankur Ankan Heidi Annexstad Ramchandra Apte diff --git a/Misc/NEWS.d/next/Library/2019-05-23-15-57-36.bpo-36713.sjPhnf.rst b/Misc/NEWS.d/next/Library/2019-05-23-15-57-36.bpo-36713.sjPhnf.rst new file mode 100644 index 000000000000..cc52bff701e6 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-05-23-15-57-36.bpo-36713.sjPhnf.rst @@ -0,0 +1 @@ +Rename the :meth:`test_ascii_replace` to :meth:`test_ascii_strict`.