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 mark.dickinson
Recipients mark.dickinson, pablogsal, rhettinger, steven.daprano
Date 2019-08-26.06:29:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1566800953.47.0.145847357099.issue37946@roundup.psfhosted.org>
In-reply-to
Content
They're not part of the C standard and they're not provided by all C libraries; we'd have to code our own and add thorough tests for the implementations (as we have for lgamma, gamma, erf, and other functions that may or may not exist in the platform libm). Making them optional is a no-go - you'd end up with code that works on some platforms but not on others. We've always provided fallback implementations in the past.

IMO this is the province of things like scipy.special. The Bessel functions (and many others) are already easily available to users of the scientific Python stack. I don't really see a need to have them in core Python.
History
Date User Action Args
2019-08-26 06:29:13mark.dickinsonsetrecipients: + mark.dickinson, rhettinger, steven.daprano, pablogsal
2019-08-26 06:29:13mark.dickinsonsetmessageid: <1566800953.47.0.145847357099.issue37946@roundup.psfhosted.org>
2019-08-26 06:29:13mark.dickinsonlinkissue37946 messages
2019-08-26 06:29:13mark.dickinsoncreate