summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2010-08-01 09:02:50 (GMT)
committerRonald Oussoren <ronaldoussoren@mac.com>2010-08-01 09:02:50 (GMT)
commitbda4672b019dfca67c0d97ea7452d33decbd974c (patch)
tree74afb5d8c1c9db499ad9aefe00933c2eb98ea5b4
parent794f5b3559f9ae9b4b54467144c8cd37253ca47c (diff)
downloadcpython-bda4672b019dfca67c0d97ea7452d33decbd974c.zip
cpython-bda4672b019dfca67c0d97ea7452d33decbd974c.tar.gz
cpython-bda4672b019dfca67c0d97ea7452d33decbd974c.tar.bz2
Ensure that test_site actually passes with a framework build
-rw-r--r--Lib/site.py2
-rw-r--r--Lib/sysconfig.py2
-rw-r--r--Lib/test/test_site.py7
3 files changed, 4 insertions, 7 deletions
diff --git a/Lib/site.py b/Lib/site.py
index 4624bf3..2944934 100644
--- a/Lib/site.py
+++ b/Lib/site.py
@@ -295,7 +295,7 @@ def getsitepackages():
# locations.
from sysconfig import get_config_var
framework = get_config_var("PYTHONFRAMEWORK")
- if framework and "/%s.framework/"%(framework,) in prefix:
+ if framework:
sitepackages.append(
os.path.join("/Library", framework,
sys.version[:3], "site-packages"))
diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py
index 2fec910..147bd6d 100644
--- a/Lib/sysconfig.py
+++ b/Lib/sysconfig.py
@@ -173,7 +173,7 @@ def _getuserbase():
if sys.platform == "darwin":
framework = get_config_var("PYTHONFRAMEWORK")
if framework:
- return joinuser("~", "Library", framework, "%d.%d"%(
+ return env_base if env_base else joinuser("~", "Library", framework, "%d.%d"%(
sys.version_info[:2]))
return env_base if env_base else joinuser("~", ".local")
diff --git a/Lib/test/test_site.py b/Lib/test/test_site.py
index 5695cd7..37ec61a 100644
--- a/Lib/test/test_site.py
+++ b/Lib/test/test_site.py
@@ -185,13 +185,10 @@ class HelperFunctionsTests(unittest.TestCase):
sysconfig.get_config_var("PYTHONFRAMEWORK")):
site.PREFIXES = ['Python.framework']
dirs = site.getsitepackages()
- self.assertEqual(len(dirs), 4)
- wanted = os.path.join('~', 'Library', 'Python',
- sys.version[:3], 'site-packages')
- self.assertEquals(dirs[2], os.path.expanduser(wanted))
+ self.assertEqual(len(dirs), 3)
wanted = os.path.join('/Library', 'Python', sys.version[:3],
'site-packages')
- self.assertEquals(dirs[3], wanted)
+ self.assertEquals(dirs[2], wanted)
class PthFile(object):
"""Helper class for handling testing of .pth files"""