From 5ba6450fdf245a5438ecd57f14a84d31726466e1 Mon Sep 17 00:00:00 2001 From: Rob Rudin Date: Wed, 11 Oct 2023 08:20:50 -0400 Subject: [PATCH] Renamed "impl" to "internal" "internal" is what we use in the Node client and seems to better convey "Keep out". --- marklogic/client.py | 2 +- marklogic/{impl => internal}/eval.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename marklogic/{impl => internal}/eval.py (100%) diff --git a/marklogic/client.py b/marklogic/client.py index 72c4071..aeaf8e7 100644 --- a/marklogic/client.py +++ b/marklogic/client.py @@ -3,7 +3,7 @@ from marklogic.cloud_auth import MarkLogicCloudAuth from marklogic.documents import DocumentManager -from marklogic.impl.eval import process_multipart_mixed_response +from marklogic.internal.eval import process_multipart_mixed_response from marklogic.rows import RowManager from marklogic.transactions import TransactionManager from requests.auth import HTTPDigestAuth diff --git a/marklogic/impl/eval.py b/marklogic/internal/eval.py similarity index 100% rename from marklogic/impl/eval.py rename to marklogic/internal/eval.py