This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ned.deily
Recipients Zorg, lazka, ned.deily, ronaldoussoren
Date 2018-09-13.15:46:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1536853568.09.0.956365154283.issue34597@psf.upfronthosting.co.za>
In-reply-to
Content
> https://bugs.python.org/issue31359 has a better details about this issue.

Yea, the approach there is again dealing with using a newer SDK to build for an older system.

> I personally believe it's safer to link against a newer SDK and deal with the trouble of finding out what to strip out, which will be opted into implications or code paths that linking a binary against a newer SDK may provide.

Why do you believe that is safer?  Apple goes to great lengths to provide compatibility for existing applications to keep running on newer systems.  That's not to say that eventually certain APIs are deprecated and removed but Python itself makes fairly minimal demands on macOS, i.e. it pretty much does not use anything other than basic libc-style system calls.  The one obvious disadvantage is that Python apps can't take advantage of newly introduced system calls (introduced after 10.m) when running on those newer systems.  I honestly don't recall any case dating back to 10.5 or so where there have been any reported problems with running a 10.m Python on a 10.n system (as best as I can recall!).  On the other hand, trying to support weak linking and backward compatibility requires more code and significant increase in ongoing testing.  It would be a good thing to have but there is a significant cost and added risk to do so.
History
Date User Action Args
2018-09-13 15:46:08ned.deilysetrecipients: + ned.deily, ronaldoussoren, lazka, Zorg
2018-09-13 15:46:08ned.deilysetmessageid: <1536853568.09.0.956365154283.issue34597@psf.upfronthosting.co.za>
2018-09-13 15:46:08ned.deilylinkissue34597 messages
2018-09-13 15:46:08ned.deilycreate