Hacker News new | ask | show | jobs
by alanwreath 1560 days ago
I’m confused on this point, isn’t functools part of the standard library? Or has this changed?
1 comments

Built-ins are available without import. Stdlib are available without separate install.
> Built-ins are available without import.

That distinction is a bit muddy:

    >>> import os
    >>> type(os.scandir)
    <class 'builtin_function_or_method'>