[issue46889] enable sqlite math functions on macos

2022-03-02 Thread Ned Deily
Ned Deily added the comment: Thanks for the suggested PR. And thanks for noticing, Erlend! I should have checked with you first! To reiterate what I noted on the PR, this (reduntant) change would only have affected the Pythons provided by the python.org macOS installers; this behavior doesn

[issue46889] enable sqlite math functions on macos

2022-03-02 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: FTR, here's 3.10 and 3.11 on my Mac, using the official Python.org installers: $ python3.10 Python 3.10.2 (v3.10.2:a58ebcc701, Jan 13 2022, 14:50:16) [Clang 13.0.0 (clang-1300.0.29.30)] on darwin Type "help", "copyright", "credits" or "license"

[issue46889] enable sqlite math functions on macos

2022-03-02 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: Duplicate of bpo-42686. -- status: pending -> open ___ Python tracker ___ ___ Python-bugs-list

[issue46889] enable sqlite math functions on macos

2022-03-02 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: Suggesting to close as "not a bug". -- resolution: -> not a bug status: open -> pending ___ Python tracker ___ __

[issue46889] enable sqlite math functions on macos

2022-03-02 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: This is not needed. Quoting https://sqlite.org/compile.html#enable_math_functions: This option is automatically added to the Makefile by the configure script on unix platforms, unless the --disable-math option is used. -- nosy: +erlendaasland

[issue46889] enable sqlite math functions on macos

2022-03-01 Thread lyinch
Change by lyinch : -- keywords: +patch pull_requests: +29757 stage: -> patch review pull_request: https://github.com/python/cpython/pull/31635 ___ Python tracker ___ _

[issue46889] enable sqlite math functions on macos

2022-03-01 Thread lyinch
New submission from lyinch : Similar to these PRs: https://github.com/python/cpython/pull/24053/files and https://github.com/python/cpython/pull/25892/files which enable the built-in sqlite3 math functions for Windows, I want to have support for them on macos. As per the sqlite3 documentation