reykit 1.1.31__py3-none-any.whl → 1.1.32__py3-none-any.whl
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.
reykit/rbase.py
CHANGED
@@ -917,7 +917,7 @@ def get_varname(argname: str, level: int = 1) -> str | list[str] | None:
|
|
917
917
|
|
918
918
|
# Get.
|
919
919
|
try:
|
920
|
-
varnames = varname_argname(argname, frame=level)
|
920
|
+
varnames: str | AST | tuple[str | AST, ...] = varname_argname(argname, frame=level)
|
921
921
|
except VarnameException:
|
922
922
|
return
|
923
923
|
|
@@ -925,12 +925,12 @@ def get_varname(argname: str, level: int = 1) -> str | list[str] | None:
|
|
925
925
|
if type(varnames) == tuple:
|
926
926
|
varnames = [
|
927
927
|
get_astname(varname)
|
928
|
-
if
|
928
|
+
if type(varnames) != str
|
929
929
|
else varname
|
930
930
|
for varname in varnames
|
931
931
|
]
|
932
932
|
else:
|
933
|
-
if
|
933
|
+
if type(varnames) != str:
|
934
934
|
varnames = get_astname(varnames)
|
935
935
|
|
936
936
|
return varnames
|
@@ -1,6 +1,6 @@
|
|
1
1
|
reykit/__init__.py,sha256=V86CHqPAAVkooVx3_QIOKpDIFVneQCTTSwfJ-uWgBno,788
|
2
2
|
reykit/rall.py,sha256=7Hip02YOkIDm3_xkoSDjvvYV2LhdBV2r4UKzWWnIfIo,628
|
3
|
-
reykit/rbase.py,sha256=
|
3
|
+
reykit/rbase.py,sha256=6hYy_IGUuogIvTrN4p7adaElLuoYvLL80dMFSySqmGo,22990
|
4
4
|
reykit/rdata.py,sha256=COe2VVGaUV0L1MD6PB7zL8treVNehVFqJELbm7wAvs0,9471
|
5
5
|
reykit/remail.py,sha256=s7TXbLgEWEqNoeM42c6FpPufB2LajHgQuahfZri3urQ,6706
|
6
6
|
reykit/rimage.py,sha256=p7caatLE71yy7GUTkTKyMOaJTeBfl6pZr_7BFjcDvY8,6159
|
@@ -22,7 +22,7 @@ reykit/rwrap.py,sha256=RK3wlc2cd-lnAvzqzvKsS21EtCmBNTA3i8HRbaolWE4,15275
|
|
22
22
|
reykit/rzip.py,sha256=ABUDLwEHQIpcvZbJE_oV78H7dik6nC7kaRz660Ro9Os,3481
|
23
23
|
reykit/rdll/__init__.py,sha256=tdKb-BOKLFn-diCvXjSLg9x71VuRKzkg2KtpOLGLTR4,679
|
24
24
|
reykit/rdll/rdll_core.py,sha256=o6-rKcTQgxZQe0kD3GnwyNb3KL9IogzgCQNOmYLMm7A,5086
|
25
|
-
reykit-1.1.
|
26
|
-
reykit-1.1.
|
27
|
-
reykit-1.1.
|
28
|
-
reykit-1.1.
|
25
|
+
reykit-1.1.32.dist-info/METADATA,sha256=6oIOTt0_vB0G9wd-8QQ4ne0_MUXD6gPYZGpBTTSZuME,1913
|
26
|
+
reykit-1.1.32.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
27
|
+
reykit-1.1.32.dist-info/licenses/LICENSE,sha256=UYLPqp7BvPiH8yEZduJqmmyEl6hlM3lKrFIefiD4rvk,1059
|
28
|
+
reykit-1.1.32.dist-info/RECORD,,
|
File without changes
|
File without changes
|