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 nchammas
Recipients docs@python, nchammas
Date 2021-02-01.20:10:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1612210210.19.0.0751315887137.issue43094@roundup.psfhosted.org>
In-reply-to
Content
The doc for sqlite3.create_function shows the signature as follows:

https://docs.python.org/3.9/library/sqlite3.html#sqlite3.Connection.create_function

```
create_function(name, num_params, func, *, deterministic=False)
```

But it appears that the parameter name is `narg`, not `num_params`. Trying `num_params` yields:

```
TypeError: function missing required argument 'narg' (pos 2)
```
History
Date User Action Args
2021-02-01 20:10:10nchammassetrecipients: + nchammas, docs@python
2021-02-01 20:10:10nchammassetmessageid: <1612210210.19.0.0751315887137.issue43094@roundup.psfhosted.org>
2021-02-01 20:10:10nchammaslinkissue43094 messages
2021-02-01 20:10:09nchammascreate