Skip to content

Commit 9a06595

Browse files
Remove trailing double period.
1 parent 3bc10dd commit 9a06595

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
lines changed

src/oracledb/connect_params.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ def __init__(
196196
matched with the server. This value is ignored if the
197197
ssl_server_dn_match parameter is not set to the value True. If
198198
specified this value is used for any verfication. Otherwise the
199-
hostname will be used. (default: None)
199+
hostname will be used (default: None)
200200
201201
- wallet_location: the directory where the wallet can be found. In thin
202202
mode this must be the directory containing the PEM-encoded wallet
@@ -229,7 +229,7 @@ def __init__(
229229
230230
- matchanytag: boolean specifying whether any tag can be used when
231231
acquiring a connection from the pool. This value is only used in
232-
thick mode. (default: False)
232+
thick mode (default: False)
233233
234234
- config_dir: directory in which the optional tnsnames.ora
235235
configuration file is located. This value is only used in thin mode.
@@ -540,7 +540,7 @@ def machine(self) -> str:
540540
def matchanytag(self) -> bool:
541541
"""
542542
Boolean specifying whether any tag can be used when acquiring a
543-
connection from the pool. This value is only used in thick mode..
543+
connection from the pool. This value is only used in thick mode.
544544
"""
545545
return self._impl.matchanytag
546546

@@ -695,7 +695,7 @@ def ssl_server_cert_dn(self) -> Union[list, str]:
695695
The distinguished name (DN) which should be matched with the server.
696696
This value is ignored if the ssl_server_dn_match parameter is not set
697697
to the value True. If specified this value is used for any verfication.
698-
Otherwise the hostname will be used..
698+
Otherwise the hostname will be used.
699699
"""
700700
return [
701701
d.ssl_server_cert_dn for d in self._impl.description_list.children
@@ -998,7 +998,7 @@ def set(
998998
matched with the server. This value is ignored if the
999999
ssl_server_dn_match parameter is not set to the value True. If
10001000
specified this value is used for any verfication. Otherwise the
1001-
hostname will be used.
1001+
hostname will be used
10021002
10031003
- wallet_location: the directory where the wallet can be found. In thin
10041004
mode this must be the directory containing the PEM-encoded wallet
@@ -1029,7 +1029,7 @@ def set(
10291029
10301030
- matchanytag: boolean specifying whether any tag can be used when
10311031
acquiring a connection from the pool. This value is only used in
1032-
thick mode.
1032+
thick mode
10331033
10341034
- config_dir: directory in which the optional tnsnames.ora
10351035
configuration file is located. This value is only used in thin mode.

src/oracledb/connection.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -1437,7 +1437,7 @@ def connect(
14371437
- ssl_server_cert_dn: the distinguished name (DN) which should be matched
14381438
with the server. This value is ignored if the ssl_server_dn_match
14391439
parameter is not set to the value True. If specified this value is used
1440-
for any verfication. Otherwise the hostname will be used. (default: None)
1440+
for any verfication. Otherwise the hostname will be used (default: None)
14411441
14421442
- wallet_location: the directory where the wallet can be found. In thin
14431443
mode this must be the directory containing the PEM-encoded wallet file
@@ -1469,7 +1469,7 @@ def connect(
14691469
14701470
- matchanytag: boolean specifying whether any tag can be used when
14711471
acquiring a connection from the pool. This value is only used in thick
1472-
mode. (default: False)
1472+
mode (default: False)
14731473
14741474
- config_dir: directory in which the optional tnsnames.ora configuration
14751475
file is located. This value is only used in thin mode. For thick mode use
@@ -2273,7 +2273,7 @@ def connect_async(
22732273
- ssl_server_cert_dn: the distinguished name (DN) which should be matched
22742274
with the server. This value is ignored if the ssl_server_dn_match
22752275
parameter is not set to the value True. If specified this value is used
2276-
for any verfication. Otherwise the hostname will be used. (default: None)
2276+
for any verfication. Otherwise the hostname will be used (default: None)
22772277
22782278
- wallet_location: the directory where the wallet can be found. In thin
22792279
mode this must be the directory containing the PEM-encoded wallet file
@@ -2305,7 +2305,7 @@ def connect_async(
23052305
23062306
- matchanytag: boolean specifying whether any tag can be used when
23072307
acquiring a connection from the pool. This value is only used in thick
2308-
mode. (default: False)
2308+
mode (default: False)
23092309
23102310
- config_dir: directory in which the optional tnsnames.ora configuration
23112311
file is located. This value is only used in thin mode. For thick mode use

src/oracledb/pool.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -844,7 +844,7 @@ def create_pool(
844844
- ssl_server_cert_dn: the distinguished name (DN) which should be matched
845845
with the server. This value is ignored if the ssl_server_dn_match
846846
parameter is not set to the value True. If specified this value is used
847-
for any verfication. Otherwise the hostname will be used. (default: None)
847+
for any verfication. Otherwise the hostname will be used (default: None)
848848
849849
- wallet_location: the directory where the wallet can be found. In thin
850850
mode this must be the directory containing the PEM-encoded wallet file
@@ -876,7 +876,7 @@ def create_pool(
876876
877877
- matchanytag: boolean specifying whether any tag can be used when
878878
acquiring a connection from the pool. This value is only used in thick
879-
mode. (default: False)
879+
mode (default: False)
880880
881881
- config_dir: directory in which the optional tnsnames.ora configuration
882882
file is located. This value is only used in thin mode. For thick mode use
@@ -1376,7 +1376,7 @@ def create_pool_async(
13761376
- ssl_server_cert_dn: the distinguished name (DN) which should be matched
13771377
with the server. This value is ignored if the ssl_server_dn_match
13781378
parameter is not set to the value True. If specified this value is used
1379-
for any verfication. Otherwise the hostname will be used. (default: None)
1379+
for any verfication. Otherwise the hostname will be used (default: None)
13801380
13811381
- wallet_location: the directory where the wallet can be found. In thin
13821382
mode this must be the directory containing the PEM-encoded wallet file
@@ -1408,7 +1408,7 @@ def create_pool_async(
14081408
14091409
- matchanytag: boolean specifying whether any tag can be used when
14101410
acquiring a connection from the pool. This value is only used in thick
1411-
mode. (default: False)
1411+
mode (default: False)
14121412
14131413
- config_dir: directory in which the optional tnsnames.ora configuration
14141414
file is located. This value is only used in thin mode. For thick mode use

src/oracledb/pool_params.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ def __init__(
265265
matched with the server. This value is ignored if the
266266
ssl_server_dn_match parameter is not set to the value True. If
267267
specified this value is used for any verfication. Otherwise the
268-
hostname will be used. (default: None)
268+
hostname will be used (default: None)
269269
270270
- wallet_location: the directory where the wallet can be found. In thin
271271
mode this must be the directory containing the PEM-encoded wallet
@@ -298,7 +298,7 @@ def __init__(
298298
299299
- matchanytag: boolean specifying whether any tag can be used when
300300
acquiring a connection from the pool. This value is only used in
301-
thick mode. (default: False)
301+
thick mode (default: False)
302302
303303
- config_dir: directory in which the optional tnsnames.ora
304304
configuration file is located. This value is only used in thin mode.
@@ -790,7 +790,7 @@ def set(
790790
matched with the server. This value is ignored if the
791791
ssl_server_dn_match parameter is not set to the value True. If
792792
specified this value is used for any verfication. Otherwise the
793-
hostname will be used.
793+
hostname will be used
794794
795795
- wallet_location: the directory where the wallet can be found. In thin
796796
mode this must be the directory containing the PEM-encoded wallet
@@ -821,7 +821,7 @@ def set(
821821
822822
- matchanytag: boolean specifying whether any tag can be used when
823823
acquiring a connection from the pool. This value is only used in
824-
thick mode.
824+
thick mode
825825
826826
- config_dir: directory in which the optional tnsnames.ora
827827
configuration file is located. This value is only used in thin mode.

utils/fields.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ description =
315315
the distinguished name (DN) which should be matched with the server. This
316316
value is ignored if the ssl_server_dn_match parameter is not set to the
317317
value True. If specified this value is used for any verfication.
318-
Otherwise the hostname will be used.
318+
Otherwise the hostname will be used
319319

320320
[wallet_location]
321321
type = str
@@ -376,7 +376,7 @@ type = bool
376376
default: False
377377
description =
378378
boolean specifying whether any tag can be used when acquiring a connection
379-
from the pool. This value is only used in thick mode.
379+
from the pool. This value is only used in thick mode
380380

381381
[config_dir]
382382
type = str

0 commit comments

Comments
 (0)