[Python-checkins] r80989 - in python/branches/py3k: Lib/test/test_sysconfig.py

benjamin.peterson python-checkins at python.org
Sat May 8 17:51:23 CEST 2010


Author: benjamin.peterson
Date: Sat May  8 17:51:23 2010
New Revision: 80989

Log:
Merged revisions 80986-80987 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80986 | benjamin.peterson | 2010-05-08 10:41:44 -0500 (Sat, 08 May 2010) | 1 line
  
  r80967 introduced a new scheme
........
  r80987 | benjamin.peterson | 2010-05-08 10:42:29 -0500 (Sat, 08 May 2010) | 1 line
  
  add underscore
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Lib/test/test_sysconfig.py

Modified: python/branches/py3k/Lib/test/test_sysconfig.py
==============================================================================
--- python/branches/py3k/Lib/test/test_sysconfig.py	(original)
+++ python/branches/py3k/Lib/test/test_sysconfig.py	Sat May  8 17:51:23 2010
@@ -234,8 +234,8 @@
         self.assertTrue(os.path.isfile(config_h), config_h)
 
     def test_get_scheme_names(self):
-        wanted = ('nt', 'nt_user', 'os2', 'os2_home', 'posix_home',
-                  'posix_prefix', 'posix_user')
+        wanted = ('nt', 'nt_user', 'os2', 'os2_home', 'osx_framework_user',
+                  'posix_home', 'posix_prefix', 'posix_user')
         self.assertEquals(get_scheme_names(), wanted)
 
     def test_symlink(self):


More information about the Python-checkins mailing list