Commit 25d8404c authored by Michele Angrisano's avatar Michele Angrisano Committed by Ezio Melotti

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
parent 942c31df
...@@ -93,7 +93,7 @@ class StringTestCase(UnicodeTestCase): ...@@ -93,7 +93,7 @@ class StringTestCase(UnicodeTestCase):
func.argtypes = None func.argtypes = None
func.restype = ctypes.c_int func.restype = ctypes.c_int
def test_ascii_replace(self): def test_ascii_strict(self):
func = self.func func = self.func
ctypes.set_conversion_mode("ascii", "strict") ctypes.set_conversion_mode("ascii", "strict")
self.assertEqual(func("abc"), "abc") self.assertEqual(func("abc"), "abc")
......
...@@ -47,6 +47,7 @@ Juancarlo Añez ...@@ -47,6 +47,7 @@ Juancarlo Añez
Chris Angelico Chris Angelico
Jérémy Anger Jérémy Anger
Jon Anglin Jon Anglin
Michele Angrisano
Ankur Ankan Ankur Ankan
Heidi Annexstad Heidi Annexstad
Ramchandra Apte Ramchandra Apte
......
Rename the :meth:`test_ascii_replace` to :meth:`test_ascii_strict`.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment