cpython (merge 3.2 -> default): Merge fix for #10086 from 3.2
http://hg.python.org/cpython/rev/0968acf0e6db changeset: 72152:0968acf0e6db parent: 72150:6330a08cfedf parent: 72151:1e01543c3d0a user: Éric Araujo <merwok@netwok.org> date: Wed Aug 31 16:52:12 2011 +0200 summary: Merge fix for #10086 from 3.2 files: Lib/test/test_sysconfig.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_sysconfig.py b/Lib/test/test_sysconfig.py --- a/Lib/test/test_sysconfig.py +++ b/Lib/test/test_sysconfig.py @@ -254,14 +254,14 @@ unlink(link) def test_user_similar(self): - # Issue 8759 : make sure the posix scheme for the users + # Issue #8759: make sure the posix scheme for the users # is similar to the global posix_prefix one base = get_config_var('base') user = get_config_var('userbase') for name in ('stdlib', 'platstdlib', 'purelib', 'platlib'): global_path = get_path(name, 'posix_prefix') user_path = get_path(name, 'posix_user') - self.assertEqual(user_path, global_path.replace(base, user)) + self.assertEqual(user_path, global_path.replace(base, user, 1)) def test_main(self): # just making sure _main() runs and returns things in the stdout -- Repository URL: http://hg.python.org/cpython
participants (1)
-
eric.araujo