[issue34041] add *deterministic* parameter to sqlite3.Connection.create_function()

2018-10-04 Thread rian
rian added the comment: Any possible way we can backport these changes to Python 3.5+? 3.8 is a ways away. -- nosy: +rian ___ Python tracker ___ _

[issue34041] add *deterministic* parameter to sqlite3.Connection.create_function()

2018-07-08 Thread Berker Peksag
Change by Berker Peksag : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue34041] add *deterministic* parameter to sqlite3.Connection.create_function()

2018-07-08 Thread Berker Peksag
Berker Peksag added the comment: New changeset 0830858aeedecc9ece60349f8c31c2690d1a99f8 by Berker Peksag (Sergey Fedoseev) in branch 'master': bpo-34041: Allow creating deterministic functions in Connection.create_function() (GH-8086) https://github.com/python/cpython/commit/0830858aeedecc9e

[issue34041] add *deterministic* parameter to sqlite3.Connection.create_function()

2018-07-06 Thread Berker Peksag
Change by Berker Peksag : -- versions: +Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue34041] add *deterministic* parameter to sqlite3.Connection.create_function()

2018-07-04 Thread Sergey Fedoseev
Change by Sergey Fedoseev : -- keywords: +patch pull_requests: +7687 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-

[issue34041] add *deterministic* parameter to sqlite3.Connection.create_function()

2018-07-04 Thread Sergey Fedoseev
New submission from Sergey Fedoseev : SQLiter 3.8.3 and higher allows to mark created functions as deterministic to allow additional optimizations. There isn't currently a way to it from Python. https://sqlite.org/c3ref/create_function.html -- components: Extension Modules messages: 3