cdxcore 0.1.23__tar.gz → 0.1.24__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 cdxcore might be problematic. Click here for more details.
- {cdxcore-0.1.23 → cdxcore-0.1.24}/PKG-INFO +1 -1
- {cdxcore-0.1.23 → cdxcore-0.1.24}/cdxcore/__init__.py +1 -1
- {cdxcore-0.1.23 → cdxcore-0.1.24}/cdxcore/subdir.py +5 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/cdxcore.egg-info/PKG-INFO +1 -1
- {cdxcore-0.1.23 → cdxcore-0.1.24}/pyproject.toml +1 -1
- {cdxcore-0.1.23 → cdxcore-0.1.24}/LICENSE +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/README.md +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/cdxcore/config.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/cdxcore/deferred.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/cdxcore/dynalimits.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/cdxcore/dynaplot.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/cdxcore/err.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/cdxcore/filelock.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/cdxcore/jcpool.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/cdxcore/npio.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/cdxcore/npshm.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/cdxcore/pretty.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/cdxcore/uniquehash.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/cdxcore/util.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/cdxcore/verbose.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/cdxcore/version.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/cdxcore.egg-info/SOURCES.txt +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/cdxcore.egg-info/dependency_links.txt +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/cdxcore.egg-info/requires.txt +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/cdxcore.egg-info/top_level.txt +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/docs/source/conf.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/setup.cfg +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/tests/test_config.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/tests/test_deferred.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/tests/test_err.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/tests/test_jcpool.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/tests/test_npio.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/tests/test_npshm.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/tests/test_pretty.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/tests/test_subdir.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/tests/test_uniquehash.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/tests/test_util.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/tests/test_verbose.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/tests/test_version.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/tmp/filelock.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/tmp/np.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/tmp/npsh1.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/tmp/sharedarray.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/up/git_message.py +0 -0
- {cdxcore-0.1.23 → cdxcore-0.1.24}/up/pip_modify_setup.py +0 -0
|
@@ -1210,6 +1210,11 @@ class SubDir(object):
|
|
|
1210
1210
|
def cache_controller(self):
|
|
1211
1211
|
""" Returns an assigned :class:`cdxcore.subdir.CacheController`, or ``None`` """
|
|
1212
1212
|
return self._cctrl if not self._cctrl is None else default_cacheController
|
|
1213
|
+
|
|
1214
|
+
@property
|
|
1215
|
+
def cache_mode(self):
|
|
1216
|
+
""" Returns the :class:`cdxcore.subdir.CacheMode` associated with the underlying cache controller """
|
|
1217
|
+
return self.cache_controller.cache_mode
|
|
1213
1218
|
|
|
1214
1219
|
# -- static helpers --
|
|
1215
1220
|
|
|
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
|
|
|
6
6
|
|
|
7
7
|
[project]
|
|
8
8
|
name = "cdxcore"
|
|
9
|
-
version = "0.1.
|
|
9
|
+
version = "0.1.24"
|
|
10
10
|
description = "Basic Python Tools; upgraded cdxbasics"
|
|
11
11
|
authors = [{ name = "Hans Buehler", email = "github@buehler.london" }]
|
|
12
12
|
readme = "README.md"
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|