Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/source/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,8 @@ Closing a driver will immediately shut down all connections in the pool.
with a single underscore. This is to avoid collisions with the
keyword configuration parameters of this method. If you need to
pass such a parameter, use the ``parameters_`` parameter instead.
These take precedence over parameters passed as ``parameters_``.
Parameters passed as kwargs take precedence over those passed in
``parameters_``.
:type kwargs: typing.Any

:returns: the result of the ``result_transformer``
Expand Down
3 changes: 2 additions & 1 deletion docs/source/async_api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,8 @@ Closing a driver will immediately shut down all connections in the pool.
with a single underscore. This is to avoid collisions with the
keyword configuration parameters of this method. If you need to
pass such a parameter, use the ``parameters_`` parameter instead.
These take precedence over parameters passed as ``parameters_``.
Parameters passed as kwargs take precedence over those passed in
``parameters_``.
:type kwargs: typing.Any

:returns: the result of the ``result_transformer``
Expand Down
3 changes: 2 additions & 1 deletion src/neo4j/_async/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,8 @@ async def example(driver: neo4j.AsyncDriver) -> neo4j.Record::
with a single underscore. This is to avoid collisions with the
keyword configuration parameters of this method. If you need to
pass such a parameter, use the ``parameters_`` parameter instead.
These take precedence over parameters passed as ``parameters_``.
Parameters passed as kwargs take precedence over those passed in
``parameters_``.
:type kwargs: typing.Any

:returns: the result of the ``result_transformer``
Expand Down
3 changes: 2 additions & 1 deletion src/neo4j/_sync/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,8 @@ def example(driver: neo4j.Driver) -> neo4j.Record::
with a single underscore. This is to avoid collisions with the
keyword configuration parameters of this method. If you need to
pass such a parameter, use the ``parameters_`` parameter instead.
These take precedence over parameters passed as ``parameters_``.
Parameters passed as kwargs take precedence over those passed in
``parameters_``.
:type kwargs: typing.Any

:returns: the result of the ``result_transformer``
Expand Down