Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[doc] Explicitly note that meta_path is not empty #74720

Closed
masklinn mannequin opened this issue Jun 1, 2017 · 12 comments · Fixed by #94098
Closed

[doc] Explicitly note that meta_path is not empty #74720

masklinn mannequin opened this issue Jun 1, 2017 · 12 comments · Fixed by #94098
Labels
3.10 only security fixes 3.11 only security fixes 3.12 bugs and security fixes docs Documentation in the Doc dir easy type-bug An unexpected behavior, bug, or error

Comments

@masklinn
Copy link
Mannequin

masklinn mannequin commented Jun 1, 2017

BPO 30535
Nosy @brettcannon, @ncoghlan, @pitrou, @masklinn, @ericsnowcurrently, @Windsooon
PRs
  • bpo-30535: Explicitly note that sys.meta_path is not empty #13300
  • Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

    Show more details

    GitHub fields:

    assignee = None
    closed_at = None
    created_at = <Date 2017-06-01.08:59:10.759>
    labels = ['easy', 'type-bug', '3.9', '3.10', '3.11', 'docs']
    title = '[doc] Explicitly note that meta_path is not empty'
    updated_at = <Date 2021-11-26.23:16:18.508>
    user = 'https://github.com/masklinn'

    bugs.python.org fields:

    activity = <Date 2021-11-26.23:16:18.508>
    actor = 'iritkatriel'
    assignee = 'docs@python'
    closed = False
    closed_date = None
    closer = None
    components = ['Documentation']
    creation = <Date 2017-06-01.08:59:10.759>
    creator = 'xmorel'
    dependencies = []
    files = []
    hgrepos = []
    issue_num = 30535
    keywords = ['patch', 'easy']
    message_count = 12.0
    messages = ['294919', '294924', '294927', '294928', '294967', '295007', '295008', '295010', '295012', '295049', '295065', '342405']
    nosy_count = 7.0
    nosy_names = ['brett.cannon', 'ncoghlan', 'pitrou', 'xmorel', 'docs@python', 'eric.snow', 'Windson Yang']
    pr_nums = ['13300']
    priority = 'normal'
    resolution = None
    stage = 'patch review'
    status = 'open'
    superseder = None
    type = 'behavior'
    url = 'https://bugs.python.org/issue30535'
    versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']

    @masklinn
    Copy link
    Mannequin Author

    masklinn mannequin commented Jun 1, 2017

    Encountered this issue porting Python 2 code manipulating meta_path to Python 3.

    In Python 2, meta_path is empty by default and its documentation specifically notes that:

    sys.meta_path is searched before any implicit default finders or sys.path.

    As a result, sys.meta_path.append() works perfectly well and is overwhelmingly common[0].

    In Python 3, this note was removed but the documentation does not specifically state default finders are present in meta_path, and the old code using sys.meta_path.append may now break as the default finders will silently take precedence on the custom ones if they believe they can do the job.

    I'd like to add a warning to the Python 3 documentation (3.5+?) noting the presence of existing default loaders, and to the Python 2 documentation suggesting sys.meta_path.insert(0, finder) for future-proofing, would there be objections or issues?

    [0] https://github.com/search?q=meta_path.append&type=Code&utf8=✓

    @masklinn masklinn mannequin assigned docspython Jun 1, 2017
    @masklinn masklinn mannequin added docs Documentation in the Doc dir type-bug An unexpected behavior, bug, or error labels Jun 1, 2017
    @masklinn
    Copy link
    Mannequin Author

    masklinn mannequin commented Jun 1, 2017

    Addendum: the warning was present (in the documentation) until Python 3.5, even though Python 3.3 is apparently where the "default finders" were moved to meta_path:

    \> python3.2 -c 'import sys;print(sys.meta_path)'
    []
    

    python3.3 -c 'import sys;print(sys.meta_path)'
    [<class '_frozen_importlib.BuiltinImporter'>, <class '_frozen_importlib.FrozenImporter'>, <class '_frozen_importlib.PathFinder'>]

    @masklinn
    Copy link
    Mannequin Author

    masklinn mannequin commented Jun 1, 2017

    And it turns out the change was noted in the Python 3.3 release notes[0] though not all the consequences were spelled out (and the meta_path and path_hooks documentations were not changed)

    [0] https://docs.python.org/3/whatsnew/3.3.html#visible-changes

    @pitrou
    Copy link
    Member

    pitrou commented Jun 1, 2017

    A warning is probably too strong. Also, it's easy to check sys.meta_path at the interpreter prompt, so I'm not sure it's worth mentioning at all.

    @brettcannon
    Copy link
    Member

    I'm fine with adding a note to the Python 2 docs, but putting it in Python 3 seems to be going in the wrong direction as having sys.meta_path not be empty is how Python will be going forward.

    @masklinn
    Copy link
    Mannequin Author

    masklinn mannequin commented Jun 2, 2017

    I'm fine with adding a note to the Python 2 docs, but putting it in Python 3 seems to be going in the wrong direction as having sys.meta_path not be empty is how Python will be going forward.

    I don't think putting a note is any hint that the Python 3 behaviour (which I appreciate) would change, it would simply tell the reader that the list is not empty by default and they ought decide whether they want their finders to take precedence over (and insert at head) or be fallback to (and append) the builtin finders.

    It could also link to the standard/builtin finders.

    @masklinn
    Copy link
    Mannequin Author

    masklinn mannequin commented Jun 2, 2017

    A warning is probably too strong. Also, it's easy to check sys.meta_path at the interpreter prompt, so I'm not sure it's worth mentioning at all.

    It's easy if you think of it and did not miss a small bit of the Python 3.3 release note indicating that the *documented guarantees* of Python 2.x, 3.0, 3.1 and 3.2 had been dropped, even as they were incorrectly still present in the official documentation itself.

    I spent a few hours trying to understand why our import hooks did not work correctly anymore in 3.5, and I never even considered printing sys.meta_path in an open interpreter, I realised the behavioural change because I ended up printing meta_path after the addition of our custom hooks to make sure they were actually there.

    @pitrou
    Copy link
    Member

    pitrou commented Jun 2, 2017

    Le 02/06/2017 à 13:21, Xavier Morel a écrit :

    I spent a few hours trying to understand why our import hooks did not work correctly anymore in 3.5, and I never even considered printing sys.meta_path in an open interpreter, I realised the behavioural change because I ended up printing meta_path after the addition of our custom hooks to make sure they were actually there.

    Fair enough. So we can just add a sentence informing readers that
    meta_path, by default, holds entries to handle the standard kinds of
    modules (.py files, extension modules...).

    @masklinn
    Copy link
    Mannequin Author

    masklinn mannequin commented Jun 2, 2017

    Fair enough. So we can just add a sentence informing readers that
    meta_path, by default, holds entries to handle the standard kinds of
    modules (.py files, extension modules…).

    Yeah that's basically what I meant, talking about a "warning" in python 3 may have been the wrong wording or given an incorrect impression, sorry about that.

    @brettcannon
    Copy link
    Member

    Yeah, there's actually a specific 'warning' directive which puts text in the docs in a red box to make it a full-blown warning which is what I thought you wanted, having it say "this is different than Python 2!". Having a sentence that just states how things are without referring to Python 2 is totally fine.

    @ncoghlan
    Copy link
    Contributor

    ncoghlan commented Jun 3, 2017

    s/Warn/Explicitly note/ in the issue title :)

    I think this is actually both important enough and subtle enough to warrant a ".. note::" callout in the docs.

    In Python 3, it would say to use sys.meta_path.insert(0, finder) if you want your finder to take precedence over the default search locations, and sys.meta_path.append(finder) if you only want it handle cases that aren't already handled by the default machine.

    In Python 2, it would say that custom finders on sys.meta_path will always take precedence over the default machinery, and if you want to do otherwise, you'll need to use importlib2 and install its loaders into sys.meta_path ahead of your own.

    @ncoghlan ncoghlan changed the title Warn that meta_path is not empty Explicitly note that meta_path is not empty Jun 3, 2017
    @Windsooon
    Copy link
    Mannequin

    Windsooon mannequin commented May 14, 2019

    I created a PR for it. TBO, meta_path is not a good name since it doesn't contain any *path* at all.

    @iritkatriel iritkatriel added 3.9 only security fixes 3.10 only security fixes 3.11 only security fixes labels Nov 26, 2021
    @iritkatriel iritkatriel changed the title Explicitly note that meta_path is not empty [doc] Explicitly note that meta_path is not empty Nov 26, 2021
    @ezio-melotti ezio-melotti transferred this issue from another repository Apr 10, 2022
    @iritkatriel iritkatriel added 3.12 bugs and security fixes and removed 3.9 only security fixes labels Jun 21, 2022
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    3.10 only security fixes 3.11 only security fixes 3.12 bugs and security fixes docs Documentation in the Doc dir easy type-bug An unexpected behavior, bug, or error
    Projects
    None yet
    Development

    Successfully merging a pull request may close this issue.

    5 participants