mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
Fixed #5874 : distutils.tests.test_config_cmd is not locale-sensitive anymore
This commit is contained in:
parent
f6dab9542c
commit
a1b91d944b
2 changed files with 4 additions and 1 deletions
|
@ -46,7 +46,7 @@ class ConfigTestCase(support.LoggingSilencer,
|
|||
match = cmd.search_cpp(pattern='xxx', body='// xxx')
|
||||
self.assertEquals(match, 0)
|
||||
|
||||
match = cmd.search_cpp(pattern='command', body='// xxx')
|
||||
match = cmd.search_cpp(pattern='_configtest', body='// xxx')
|
||||
self.assertEquals(match, 1)
|
||||
|
||||
def test_finalize_options(self):
|
||||
|
|
|
@ -255,6 +255,9 @@ Core and Builtins
|
|||
Library
|
||||
-------
|
||||
|
||||
- Issue #5874: distutils.tests.test_config_cmd is not locale-sensitive
|
||||
anymore.
|
||||
|
||||
- Issue #4305: ctypes should now build again on mipsel-linux-gnu
|
||||
|
||||
- Issue #1734234: Massively speedup ``unicodedata.normalize()`` when the
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue