File tree 6 files changed +8
-12
lines changed
6 files changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -257,8 +257,7 @@ def __init__(
257
257
if maxconnections is None :
258
258
maxconnections = 0
259
259
if maxcached :
260
- if maxcached < mincached :
261
- maxcached = mincached
260
+ maxcached = max (maxcached , mincached )
262
261
self ._maxcached = maxcached
263
262
else :
264
263
self ._maxcached = 0
@@ -268,10 +267,8 @@ def __init__(
268
267
else :
269
268
self ._maxshared = 0
270
269
if maxconnections :
271
- if maxconnections < maxcached :
272
- maxconnections = maxcached
273
- if maxconnections < maxshared :
274
- maxconnections = maxshared
270
+ maxconnections = max (maxconnections , maxcached )
271
+ maxconnections = max (maxconnections , maxshared )
275
272
self ._maxconnections = maxconnections
276
273
else :
277
274
self ._maxconnections = 0
Original file line number Diff line number Diff line change @@ -190,8 +190,7 @@ def __init__(
190
190
if maxcached and maxcached < mincached :
191
191
maxcached = mincached
192
192
if maxconnections :
193
- if maxconnections < maxcached :
194
- maxconnections = maxcached
193
+ maxconnections = max (maxconnections , maxcached )
195
194
# Create semaphore for number of allowed connections generally:
196
195
from threading import Semaphore
197
196
self ._connections = Semaphore (maxconnections )
Original file line number Diff line number Diff line change 2
2
< html xmlns ="http://www.w3.org/1999/xhtml " xml:lang ="en " lang ="en ">
3
3
< head >
4
4
< meta charset ="utf-8 " />
5
- < meta name ="generator " content ="Docutils 0.20.1 : https://docutils.sourceforge.io/ " />
5
+ < meta name ="generator " content ="Docutils 0.21.2 : https://docutils.sourceforge.io/ " />
6
6
< meta name ="viewport " content ="width=device-width, initial-scale=1 " />
7
7
< title > Changelog for DBUtils</ title >
8
8
< link rel ="stylesheet " href ="doc.css " type ="text/css " />
Original file line number Diff line number Diff line change 2
2
< html xmlns ="http://www.w3.org/1999/xhtml " xml:lang ="de " lang ="de ">
3
3
< head >
4
4
< meta charset ="utf-8 " />
5
- < meta name ="generator " content ="Docutils 0.20.1 : https://docutils.sourceforge.io/ " />
5
+ < meta name ="generator " content ="Docutils 0.21.2 : https://docutils.sourceforge.io/ " />
6
6
< meta name ="viewport " content ="width=device-width, initial-scale=1 " />
7
7
< title > Benutzeranleitung für DBUtils</ title >
8
8
< link rel ="stylesheet " href ="doc.css " type ="text/css " />
Original file line number Diff line number Diff line change 2
2
< html xmlns ="http://www.w3.org/1999/xhtml " xml:lang ="en " lang ="en ">
3
3
< head >
4
4
< meta charset ="utf-8 " />
5
- < meta name ="generator " content ="Docutils 0.20.1 : https://docutils.sourceforge.io/ " />
5
+ < meta name ="generator " content ="Docutils 0.21.2 : https://docutils.sourceforge.io/ " />
6
6
< meta name ="viewport " content ="width=device-width, initial-scale=1 " />
7
7
< title > DBUtils User's Guide</ title >
8
8
< link rel ="stylesheet " href ="doc.css " type ="text/css " />
Original file line number Diff line number Diff line change 10
10
threadsafety = 2
11
11
12
12
13
- @pytest .fixture ()
13
+ @pytest .fixture
14
14
def dbapi ():
15
15
"""Get mock DB API 2 module."""
16
16
mock_db = sys .modules [__name__ ]
You can’t perform that action at this time.
0 commit comments