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 Bruce Richardson
Recipients Bruce Richardson, brett.cannon, docs@python
Date 2018-07-11.10:42:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1531305729.89.0.56676864532.issue34094@psf.upfronthosting.co.za>
In-reply-to
Content
https://docs.python.org/3/howto/pyporting.html#use-feature-detection-instead-of-version-detection

In this section, the (very good) advice is "It would be better to treat Python 2 as the exceptional case instead of Python 3 and assume that future Python versions will be more compatible with Python 3 than Python 2"

However, it then goes on to present the best solution (for dealing with library imports) is this:

try:
    from importlib import abc
except ImportError:
    from importlib2 import abc

This is literally treating Python 3 as the exception, completely contradicting the advice given a few lines earlier.  Practically, it also has the effect that, as Python 3 adoption spreads, import errors and automatic retries will become *more* common and then universal, adding a small amount of delay and noise to the entire Python estate.  And that's not considering the case where both libraries are installed to cope with old code relying on the old library (in which case you surely want new code to default to using the new library)

If the example is simply changed to

try:
    from importlib2 import abc
except ImportError:
    from importlib import abc

then both the contradiction and the practical problems go away
History
Date User Action Args
2018-07-11 10:42:09Bruce Richardsonsetrecipients: + Bruce Richardson, brett.cannon, docs@python
2018-07-11 10:42:09Bruce Richardsonsetmessageid: <1531305729.89.0.56676864532.issue34094@psf.upfronthosting.co.za>
2018-07-11 10:42:09Bruce Richardsonlinkissue34094 messages
2018-07-11 10:42:09Bruce Richardsoncreate