Skip to content

Commit

Permalink
added mention of NULL for None
Browse files Browse the repository at this point in the history
  • Loading branch information
dmalan committed Jun 15, 2022
1 parent 866aafc commit ee2b4dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/cs50/python.rst
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Usage
:param \*args: zero or more positional arguments with which any parameter markers should be substituted
:param \*\*kwargs: zero or more named arguments with which any parameter markers should be substituted

Any argument whose value is a :py:class:`list` or :py:class:`tuple` of other values is converted to a comma-separated list of those values, formatted for SQL's ``IN`` operator.
Any argument whose value is a :py:class:`list` or :py:class:`tuple` of other values is converted to a comma-separated list of those values, formatted for SQL's ``IN`` operator. Any argument whose value is `None` is converted to `NULL` for SQL.

:returns:
- for ``CREATE``, ``True`` on success or ``False`` on failure
Expand Down

0 comments on commit ee2b4dd

Please sign in to comment.