Skip to content

Commit 2d79c2a

Browse files
committed
Duplicate methods in arango.client.ArangoClient to arango.database.Database for non-root access
1 parent da5d308 commit 2d79c2a

18 files changed

+1776
-66
lines changed

arango/batch.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def handle_request(self, request, handler):
7474
7575
:param request: the API request queued as part of the current batch
7676
request scope, and executed only when the batch is committed via
77-
method :func:`~arango.batch.BatchExecution.commit`
77+
method :func:`arango.batch.BatchExecution.commit`
7878
:type request: arango.request.Request
7979
:param handler: the response handler
8080
:type handler: callable
@@ -95,7 +95,7 @@ def commit(self):
9595
9696
If `return_response` was set to ``True`` during initialization, the
9797
responses are saved within an :class:`arango.batch.BatchJob` object
98-
for later retrieval via its :func:`~arango.batch.BatchJob.result`
98+
for later retrieval via its :func:`arango.batch.BatchJob.result`
9999
method
100100
101101
:raises arango.exceptions.BatchExecuteError: if the batch request

arango/client.py

Lines changed: 133 additions & 24 deletions
Large diffs are not rendered by default.

arango/collections/standard.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,7 @@ def import_bulk(self,
899899
sync=None):
900900
"""Insert multiple documents into the collection.
901901
902-
This is faster than :func:`~arango.collections.Collection.insert_many`
902+
This is faster than :func:`arango.collections.Collection.insert_many`
903903
but does not return as much information. Any ``"_id"`` and ``"_rev"``
904904
fields in **documents** are ignored.
905905

0 commit comments

Comments
 (0)