toolslm 0.2.3__tar.gz → 0.3.0__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.
- {toolslm-0.2.3/toolslm.egg-info → toolslm-0.3.0}/PKG-INFO +1 -1
- {toolslm-0.2.3 → toolslm-0.3.0}/settings.ini +1 -1
- toolslm-0.3.0/toolslm/__init__.py +1 -0
- {toolslm-0.2.3 → toolslm-0.3.0}/toolslm/funccall.py +0 -2
- {toolslm-0.2.3 → toolslm-0.3.0/toolslm.egg-info}/PKG-INFO +1 -1
- toolslm-0.2.3/toolslm/__init__.py +0 -1
- {toolslm-0.2.3 → toolslm-0.3.0}/LICENSE +0 -0
- {toolslm-0.2.3 → toolslm-0.3.0}/MANIFEST.in +0 -0
- {toolslm-0.2.3 → toolslm-0.3.0}/README.md +0 -0
- {toolslm-0.2.3 → toolslm-0.3.0}/pyproject.toml +0 -0
- {toolslm-0.2.3 → toolslm-0.3.0}/setup.cfg +0 -0
- {toolslm-0.2.3 → toolslm-0.3.0}/setup.py +0 -0
- {toolslm-0.2.3 → toolslm-0.3.0}/toolslm/_modidx.py +0 -0
- {toolslm-0.2.3 → toolslm-0.3.0}/toolslm/download.py +0 -0
- {toolslm-0.2.3 → toolslm-0.3.0}/toolslm/md_hier.py +0 -0
- {toolslm-0.2.3 → toolslm-0.3.0}/toolslm/shell.py +0 -0
- {toolslm-0.2.3 → toolslm-0.3.0}/toolslm/xml.py +0 -0
- {toolslm-0.2.3 → toolslm-0.3.0}/toolslm.egg-info/SOURCES.txt +0 -0
- {toolslm-0.2.3 → toolslm-0.3.0}/toolslm.egg-info/dependency_links.txt +0 -0
- {toolslm-0.2.3 → toolslm-0.3.0}/toolslm.egg-info/entry_points.txt +0 -0
- {toolslm-0.2.3 → toolslm-0.3.0}/toolslm.egg-info/not-zip-safe +0 -0
- {toolslm-0.2.3 → toolslm-0.3.0}/toolslm.egg-info/requires.txt +0 -0
- {toolslm-0.2.3 → toolslm-0.3.0}/toolslm.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.3.0"
|
|
@@ -188,9 +188,7 @@ def mk_ns(fs):
|
|
|
188
188
|
merged = {}
|
|
189
189
|
for o in listify(fs):
|
|
190
190
|
if isinstance(o, dict): merged |= o
|
|
191
|
-
elif isinstance(o, type): merged |= {n:getattr(o,n) for n,m in o.__dict__.items() if isinstance(m, (staticmethod, classmethod))}
|
|
192
191
|
elif callable(o) and hasattr(o, '__name__'): merged |= {o.__name__: o}
|
|
193
|
-
merged |= {n:getattr(o,n) for n, m in inspect.getmembers(o, inspect.ismethod)} | {n:m for n,m in o.__class__.__dict__.items() if isinstance(m, staticmethod)}
|
|
194
192
|
return merged
|
|
195
193
|
|
|
196
194
|
# %% ../01_funccall.ipynb
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.2.3"
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|