Skip to content

[4.3] Remove deleted method sync from docs #583

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 9, 2021
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
4 changes: 0 additions & 4 deletions docs/source/transactions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ To construct a :class:`.Session` use the :meth:`.Driver.session` method.

.. automethod:: run

.. automethod:: sync

.. automethod:: detach

.. automethod:: next_bookmarks
Expand Down Expand Up @@ -79,8 +77,6 @@ It also gives applications the ability to directly control `commit` and `rollbac

.. automethod:: run

.. automethod:: sync

.. automethod:: closed

.. automethod:: commit
Expand Down
4 changes: 0 additions & 4 deletions neo4j/work/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,6 @@ def _consume_results(self):
def run(self, query, parameters=None, **kwparameters):
""" Run a Cypher query within the context of this transaction.

The query is sent to the server lazily, when its result is
consumed. To force the query to be sent to the server, use
the :meth:`.Transaction.sync` method.

Cypher is typically expressed as a query template plus a
set of named parameters. In Python, parameters may be expressed
through a dictionary of parameters, through individual parameter
Expand Down