summaryrefslogtreecommitdiff
path: root/api_tests.txt
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-07-21 16:11:34 +0000
committerPJ Eby <distutils-sig@python.org>2005-07-21 16:11:34 +0000
commit1b23ba3c222a3e4d09138bf2e252caa171cdc420 (patch)
treef3993d080f3623ccdea86f0732a6f5709e190592 /api_tests.txt
parentdce75aeae87e88e11ca54d5354e3af8216c39e89 (diff)
downloadpython-setuptools-git-1b23ba3c222a3e4d09138bf2e252caa171cdc420.tar.gz
Improved backward compatibility of Mac OS platform string changes, thanks
to more help from Kevin Dangoor. --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041143
Diffstat (limited to 'api_tests.txt')
-rwxr-xr-xapi_tests.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/api_tests.txt b/api_tests.txt
index e1298ea7..ad5ea819 100755
--- a/api_tests.txt
+++ b/api_tests.txt
@@ -280,3 +280,13 @@ number does not matter::
>>> cp("macosx-9.5-ppc", reqd)
False
+Backwards compatibility for packages made via earlier versions of
+setuptools is provided as well::
+
+ >>> cp("darwin-8.2.0-Power_Macintosh", reqd)
+ True
+ >>> cp("darwin-7.2.0-Power_Macintosh", reqd)
+ True
+ >>> cp("darwin-8.2.0-Power_Macintosh", "macosx-10.3-ppc")
+ False
+