Skip to content

Comment on Building a full-text search engine in 150 lines of Python code (2021)parent

Comments

Holy shit, I’ve been writing python for 15 years and it’s the first time I’ve seen None used as an identity function. That’s nuts! How does it work under the hood? Does filter have a special case for evaluating None?

Yes, that’s just a special case. You can’t call None as a function.

https://docs.python.org/3/library/functions.html#filter

If function is None, the identity function is assumed, that is, all elements of iterable that are false are removed.
AboutSource Built by g1lg1l

Hackerly is an independent reader for Hacker News, built on the public HN API. Not affiliated with Y Combinator.