cdxcore 0.1.10__tar.gz → 0.1.13__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.

Files changed (44) hide show
  1. {cdxcore-0.1.10 → cdxcore-0.1.13}/PKG-INFO +1 -1
  2. {cdxcore-0.1.10 → cdxcore-0.1.13}/cdxcore/__init__.py +1 -1
  3. {cdxcore-0.1.10 → cdxcore-0.1.13}/cdxcore/crman.py +4 -1
  4. cdxcore-0.1.13/cdxcore/deferred.py +752 -0
  5. {cdxcore-0.1.10 → cdxcore-0.1.13}/cdxcore/err.py +10 -5
  6. cdxcore-0.1.13/cdxcore/jcpool.py +642 -0
  7. {cdxcore-0.1.10 → cdxcore-0.1.13}/cdxcore/subdir.py +1 -1
  8. {cdxcore-0.1.10 → cdxcore-0.1.13}/cdxcore/util.py +72 -1
  9. {cdxcore-0.1.10 → cdxcore-0.1.13}/cdxcore/verbose.py +15 -1
  10. {cdxcore-0.1.10 → cdxcore-0.1.13}/cdxcore.egg-info/PKG-INFO +1 -1
  11. {cdxcore-0.1.10 → cdxcore-0.1.13}/cdxcore.egg-info/SOURCES.txt +4 -2
  12. {cdxcore-0.1.10 → cdxcore-0.1.13}/pyproject.toml +1 -1
  13. {cdxcore-0.1.10 → cdxcore-0.1.13}/tests/test_config.py +1 -11
  14. {cdxcore-0.1.10 → cdxcore-0.1.13}/tests/test_crman.py +2 -13
  15. cdxcore-0.1.13/tests/test_deferred.py +277 -0
  16. {cdxcore-0.1.10 → cdxcore-0.1.13}/tests/test_err.py +2 -10
  17. cdxcore-0.1.13/tests/test_jcpool.py +185 -0
  18. {cdxcore-0.1.10 → cdxcore-0.1.13}/tests/test_pretty.py +2 -12
  19. {cdxcore-0.1.10 → cdxcore-0.1.13}/tests/test_subdir.py +1 -9
  20. {cdxcore-0.1.10 → cdxcore-0.1.13}/tests/test_uniquehash.py +1 -9
  21. {cdxcore-0.1.10 → cdxcore-0.1.13}/tests/test_util.py +100 -10
  22. {cdxcore-0.1.10 → cdxcore-0.1.13}/tests/test_verbose.py +1 -10
  23. {cdxcore-0.1.10 → cdxcore-0.1.13}/tests/test_version.py +1 -9
  24. cdxcore-0.1.10/cdxcore/jcpool.py +0 -411
  25. cdxcore-0.1.10/tmp/deferred.py +0 -220
  26. {cdxcore-0.1.10 → cdxcore-0.1.13}/LICENSE +0 -0
  27. {cdxcore-0.1.10 → cdxcore-0.1.13}/README.md +0 -0
  28. {cdxcore-0.1.10 → cdxcore-0.1.13}/cdxcore/config.py +0 -0
  29. {cdxcore-0.1.10/tmp → cdxcore-0.1.13/cdxcore}/dynaplot.py +0 -0
  30. {cdxcore-0.1.10 → cdxcore-0.1.13}/cdxcore/pretty.py +0 -0
  31. {cdxcore-0.1.10 → cdxcore-0.1.13}/cdxcore/pretty.py_bak.py +0 -0
  32. {cdxcore-0.1.10 → cdxcore-0.1.13}/cdxcore/uniquehash.py +0 -0
  33. {cdxcore-0.1.10 → cdxcore-0.1.13}/cdxcore/version.py +0 -0
  34. {cdxcore-0.1.10 → cdxcore-0.1.13}/cdxcore.egg-info/dependency_links.txt +0 -0
  35. {cdxcore-0.1.10 → cdxcore-0.1.13}/cdxcore.egg-info/requires.txt +0 -0
  36. {cdxcore-0.1.10 → cdxcore-0.1.13}/cdxcore.egg-info/top_level.txt +0 -0
  37. {cdxcore-0.1.10 → cdxcore-0.1.13}/docs/source/conf.py +0 -0
  38. {cdxcore-0.1.10 → cdxcore-0.1.13}/setup.cfg +0 -0
  39. {cdxcore-0.1.10 → cdxcore-0.1.13}/tmp/filelock.py +0 -0
  40. {cdxcore-0.1.10 → cdxcore-0.1.13}/tmp/np.py +0 -0
  41. {cdxcore-0.1.10 → cdxcore-0.1.13}/tmp/npio.py +0 -0
  42. {cdxcore-0.1.10 → cdxcore-0.1.13}/tmp/sharedarray.py +0 -0
  43. {cdxcore-0.1.10 → cdxcore-0.1.13}/up/git_message.py +0 -0
  44. {cdxcore-0.1.10 → cdxcore-0.1.13}/up/pip_modify_setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cdxcore
3
- Version: 0.1.10
3
+ Version: 0.1.13
4
4
  Summary: Basic Python Tools; upgraded cdxbasics
5
5
  Author-email: Hans Buehler <github@buehler.london>
6
6
  License-Expression: MIT
@@ -4,4 +4,4 @@ Created on June 2022
4
4
  @author: hansb
5
5
  """
6
6
 
7
- __version__ = "0.1.10" # auto-updated by setup.py
7
+ __version__ = "0.1.13" # auto-updated by setup.py
@@ -147,7 +147,10 @@ class CRMan(object):
147
147
  """
148
148
  return self._current
149
149
 
150
- def write(self, text : str, end : str = '', flush : bool = True, channel : Callable = None ):
150
+ def write(self, text : str,
151
+ end : str = '',
152
+ flush : bool = True,
153
+ channel : Callable = None ):
151
154
  r"""
152
155
  Write to a ``channel``,
153
156