From julien at palard.fr Tue Jul 7 13:07:36 2020 From: julien at palard.fr (Julien Palard) Date: Tue, 07 Jul 2020 17:07:36 +0000 Subject: [Doc-SIG] Faster jump table for the builtin functions Message-ID: <5e21b312-9520-8970-d348-298ed786a2b8@palard.fr> I don't know for you, but I often use by browser search to find a builtin function because it's faster than my eyes on the jump table :( I think little enhancements come from little frustrations... So I think it can be enhanced and I opened https://github.com/python/cpython/pull/21376 to try myself at it, but I'm bad at UI/UX so I'd happily get feedback on it. Bests, -- [Julien Palard](https://mdk.fr) From nad at python.org Fri Jul 10 07:01:11 2020 From: nad at python.org (Ned Deily) Date: Fri, 10 Jul 2020 07:01:11 -0400 Subject: [Doc-SIG] Faster jump table for the builtin functions In-Reply-To: <5e21b312-9520-8970-d348-298ed786a2b8@palard.fr> References: <5e21b312-9520-8970-d348-298ed786a2b8@palard.fr> Message-ID: On 2020-07-07 13:07, Julien Palard via Doc-SIG wrote: > I don't know for you, but I often use by browser search to find a > builtin function because it's faster than my eyes on the jump table :( > > I think little enhancements come from little frustrations... > > So I think it can be enhanced and I opened > https://github.com/python/cpython/pull/21376 to try myself at it, but > I'm bad at UI/UX so I'd happily get feedback on it. I think it's a great improvement! And it uses the same amount of space more effectively. I think it would be great to backport that to the 3.9 docs.