rda-python-common 1.0.21__tar.gz → 1.0.22__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of rda-python-common might be problematic. Click here for more details.
- {rda_python_common-1.0.21 → rda_python_common-1.0.22}/PKG-INFO +1 -1
- {rda_python_common-1.0.21 → rda_python_common-1.0.22}/pyproject.toml +1 -1
- {rda_python_common-1.0.21 → rda_python_common-1.0.22}/src/rda_python_common/PgCMD.py +4 -1
- {rda_python_common-1.0.21 → rda_python_common-1.0.22}/src/rda_python_common.egg-info/PKG-INFO +1 -1
- {rda_python_common-1.0.21 → rda_python_common-1.0.22}/LICENSE +0 -0
- {rda_python_common-1.0.21 → rda_python_common-1.0.22}/README.md +0 -0
- {rda_python_common-1.0.21 → rda_python_common-1.0.22}/setup.cfg +0 -0
- {rda_python_common-1.0.21 → rda_python_common-1.0.22}/src/rda_python_common/PgDBI.py +0 -0
- {rda_python_common-1.0.21 → rda_python_common-1.0.22}/src/rda_python_common/PgFile.py +0 -0
- {rda_python_common-1.0.21 → rda_python_common-1.0.22}/src/rda_python_common/PgLOG.py +0 -0
- {rda_python_common-1.0.21 → rda_python_common-1.0.22}/src/rda_python_common/PgLock.py +0 -0
- {rda_python_common-1.0.21 → rda_python_common-1.0.22}/src/rda_python_common/PgOPT.py +0 -0
- {rda_python_common-1.0.21 → rda_python_common-1.0.22}/src/rda_python_common/PgSIG.py +0 -0
- {rda_python_common-1.0.21 → rda_python_common-1.0.22}/src/rda_python_common/PgSplit.py +0 -0
- {rda_python_common-1.0.21 → rda_python_common-1.0.22}/src/rda_python_common/PgUtil.py +0 -0
- {rda_python_common-1.0.21 → rda_python_common-1.0.22}/src/rda_python_common/__init__.py +0 -0
- {rda_python_common-1.0.21 → rda_python_common-1.0.22}/src/rda_python_common.egg-info/SOURCES.txt +0 -0
- {rda_python_common-1.0.21 → rda_python_common-1.0.22}/src/rda_python_common.egg-info/dependency_links.txt +0 -0
- {rda_python_common-1.0.21 → rda_python_common-1.0.22}/src/rda_python_common.egg-info/requires.txt +0 -0
- {rda_python_common-1.0.21 → rda_python_common-1.0.22}/src/rda_python_common.egg-info/top_level.txt +0 -0
- {rda_python_common-1.0.21 → rda_python_common-1.0.22}/test/test_common.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rda_python_common
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.22
|
|
4
4
|
Summary: RDA Python common library codes shared by other RDA python packages
|
|
5
5
|
Author-email: Zaihua Ji <zji@ucar.edu>
|
|
6
6
|
Project-URL: Homepage, https://github.com/NCAR/rda-python-common
|
|
@@ -289,7 +289,10 @@ def get_dsrqst_control(pgrqst, logact = 0):
|
|
|
289
289
|
pgctl = None
|
|
290
290
|
if not pgctl:
|
|
291
291
|
gcnd = "dsid = '{}' AND gindex = ".format(pgrqst['dsid'])
|
|
292
|
-
|
|
292
|
+
if pgrqst['rqsttype'] in "ST":
|
|
293
|
+
tcnd = " AND (rqsttype = 'T' OR rqsttype = 'S')"
|
|
294
|
+
else:
|
|
295
|
+
tcnd = " AND rqsttype = '{}'".format(pgrqst['rqsttype'])
|
|
293
296
|
gindex = pgrqst['gindex']
|
|
294
297
|
while True:
|
|
295
298
|
pgctl = PgDBI.pgget("rcrqst", cflds, "{}{}{}".format(gcnd, gindex, tcnd), logact)
|
{rda_python_common-1.0.21 → rda_python_common-1.0.22}/src/rda_python_common.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rda_python_common
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.22
|
|
4
4
|
Summary: RDA Python common library codes shared by other RDA python packages
|
|
5
5
|
Author-email: Zaihua Ji <zji@ucar.edu>
|
|
6
6
|
Project-URL: Homepage, https://github.com/NCAR/rda-python-common
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rda_python_common-1.0.21 → rda_python_common-1.0.22}/src/rda_python_common.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{rda_python_common-1.0.21 → rda_python_common-1.0.22}/src/rda_python_common.egg-info/requires.txt
RENAMED
|
File without changes
|
{rda_python_common-1.0.21 → rda_python_common-1.0.22}/src/rda_python_common.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|