diff --git a/__init__.py b/__init__.py index 4d5d2df..2555689 100644 --- a/__init__.py +++ b/__init__.py @@ -83,11 +83,11 @@ class property_cache_pickle(object): Will result on the first execution to the following output (with a long execution time): - .. literalinclude:: caching/_examples_/property_cache_pickle_1.log + .. literalinclude:: caching/_examples_/property_cache_pickle.log_1st With every following execution the time cosumption my by much smaller: - .. literalinclude:: caching/_examples_/property_cache_pickle_2.log + .. literalinclude:: caching/_examples_/property_cache_pickle.log """ DATA_VERSION_TAG = '_property_cache_data_version_' STORAGE_VERSION_TAG = '_storage_version_' @@ -283,11 +283,11 @@ class property_cache_json(property_cache_pickle): Will result on the first execution to the following output (with a long execution time): - .. literalinclude:: caching/_examples_/property_cache_json_1.log + .. literalinclude:: caching/_examples_/property_cache_json.log_1st With every following execution the time cosumption my by much smaller: - .. literalinclude:: caching/_examples_/property_cache_json_2.log + .. literalinclude:: caching/_examples_/property_cache_json.log """ def _load_only(self): diff --git a/_docs_/_downloads/94762bb00bd81e32c327265770b9c2bc/unittest.pdf b/_docs_/_downloads/94762bb00bd81e32c327265770b9c2bc/unittest.pdf index be88bb7..98d7bc6 100644 Binary files a/_docs_/_downloads/94762bb00bd81e32c327265770b9c2bc/unittest.pdf and b/_docs_/_downloads/94762bb00bd81e32c327265770b9c2bc/unittest.pdf differ diff --git a/_docs_/index.html b/_docs_/index.html index d543dbf..66cdf29 100644 --- a/_docs_/index.html +++ b/_docs_/index.html @@ -188,8 +188,8 @@
See limitations of json.
Example:
-#!/usr/bin/env python
-# -*- coding: UTF-8 -*-
+import sys # nopep8
+sys.path.append('../..') # nopep8
import caching
import logging
@@ -245,6 +245,7 @@
self.print_n_sleep("__five__")
return 'five'
+
class test_slow_data_cached(test_slow_data):
def __init__(self, *args, **kwargs) -> None:
super().__init__(*args, **kwargs)
@@ -269,37 +270,36 @@
for key in data.keys():
print(data.get(key))
print('--------------------------------\nThe execution time was %.1fs' % (time.time()-tm))
-
Will result on the first execution to the following output (with a long execution time):
Testing property_cache (json):
--------------------------------
-2025-08-15 00:39:57,193: DEBUG - caching - Cache file does not exists (yet).
-2025-08-15 00:39:57,193: DEBUG - caching - Loading property for key='1' from source instance
+2025-08-15 18:51:26,642: DEBUG - caching - Cache file does not exists (yet).
+2025-08-15 18:51:26,642: DEBUG - caching - Loading property for key='1' from source instance
slow get executed for __1__
-2025-08-15 00:40:00,194: DEBUG - caching - Adding key=1, value=one with timestamp=1755211200 to chache
-2025-08-15 00:40:00,195: DEBUG - caching - cache-file stored (cache.json)
+2025-08-15 18:51:29,643: DEBUG - caching - Adding key=1, value=one with timestamp=1755276689 to chache
+2025-08-15 18:51:29,644: DEBUG - caching - cache-file stored (cache.json)
one
-2025-08-15 00:40:00,195: DEBUG - caching - Loading property for key='2' from source instance
+2025-08-15 18:51:29,644: DEBUG - caching - Loading property for key='2' from source instance
slow get executed for __2__
-2025-08-15 00:40:03,195: DEBUG - caching - Adding key=2, value=two with timestamp=1755211203 to chache
-2025-08-15 00:40:03,197: DEBUG - caching - cache-file stored (cache.json)
+2025-08-15 18:51:32,644: DEBUG - caching - Adding key=2, value=two with timestamp=1755276692 to chache
+2025-08-15 18:51:32,645: DEBUG - caching - cache-file stored (cache.json)
two
-2025-08-15 00:40:03,197: DEBUG - caching - Loading property for key='three' from source instance
+2025-08-15 18:51:32,645: DEBUG - caching - Loading property for key='three' from source instance
slow get executed for __three__
-2025-08-15 00:40:06,197: DEBUG - caching - Adding key=three, value=three with timestamp=1755211206 to chache
-2025-08-15 00:40:06,198: DEBUG - caching - cache-file stored (cache.json)
+2025-08-15 18:51:35,646: DEBUG - caching - Adding key=three, value=three with timestamp=1755276695 to chache
+2025-08-15 18:51:35,647: DEBUG - caching - cache-file stored (cache.json)
three
-2025-08-15 00:40:06,198: DEBUG - caching - Loading property for key='four' from source instance
+2025-08-15 18:51:35,647: DEBUG - caching - Loading property for key='four' from source instance
slow get executed for __four__
-2025-08-15 00:40:09,199: DEBUG - caching - Adding key=four, value=four with timestamp=1755211209 to chache
-2025-08-15 00:40:09,200: DEBUG - caching - cache-file stored (cache.json)
+2025-08-15 18:51:38,648: DEBUG - caching - Adding key=four, value=four with timestamp=1755276698 to chache
+2025-08-15 18:51:38,649: DEBUG - caching - cache-file stored (cache.json)
four
-2025-08-15 00:40:09,200: DEBUG - caching - Loading property for key='five' from source instance
+2025-08-15 18:51:38,649: DEBUG - caching - Loading property for key='five' from source instance
slow get executed for __five__
-2025-08-15 00:40:12,201: DEBUG - caching - Adding key=five, value=five with timestamp=1755211212 to chache
-2025-08-15 00:40:12,202: DEBUG - caching - cache-file stored (cache.json)
+2025-08-15 18:51:41,650: DEBUG - caching - Adding key=five, value=five with timestamp=1755276701 to chache
+2025-08-15 18:51:41,650: DEBUG - caching - cache-file stored (cache.json)
five
--------------------------------
The execution time was 15.0s
@@ -308,19 +308,19 @@
With every following execution the time cosumption my by much smaller:
Testing property_cache (json):
--------------------------------
-2025-08-15 00:40:12,245: DEBUG - caching - Loading properties from cache (cache.json)
-2025-08-15 00:40:12,245: DEBUG - caching - Providing property for '1' from cache
+2025-08-15 18:51:41,765: DEBUG - caching - Loading properties from cache (cache.json)
+2025-08-15 18:51:41,765: DEBUG - caching - Providing property for '1' from cache
one
-2025-08-15 00:40:12,245: DEBUG - caching - Providing property for '2' from cache
+2025-08-15 18:51:41,765: DEBUG - caching - Providing property for '2' from cache
two
-2025-08-15 00:40:12,245: DEBUG - caching - Loading property for key='three' from source instance
+2025-08-15 18:51:41,765: DEBUG - caching - Loading property for key='three' from source instance
slow get executed for __three__
-2025-08-15 00:40:15,246: DEBUG - caching - Adding key=three, value=three with timestamp=1755211215 to chache
-2025-08-15 00:40:15,246: DEBUG - caching - cache-file stored (cache.json)
+2025-08-15 18:51:44,767: DEBUG - caching - Adding key=three, value=three with timestamp=1755276704 to chache
+2025-08-15 18:51:44,768: DEBUG - caching - cache-file stored (cache.json)
three
-2025-08-15 00:40:15,247: DEBUG - caching - Providing property for 'four' from cache
+2025-08-15 18:51:44,768: DEBUG - caching - Providing property for 'four' from cache
four
-2025-08-15 00:40:15,247: DEBUG - caching - Providing property for 'five' from cache
+2025-08-15 18:51:44,768: DEBUG - caching - Providing property for 'five' from cache
five
--------------------------------
The execution time was 3.0s
@@ -367,8 +367,8 @@ if the conditions for the cache usage are given.
Example:
-#!/usr/bin/env python
-# -*- coding: UTF-8 -*-
+import sys # nopep8
+sys.path.append('../..') # nopep8
import caching
import logging
@@ -424,6 +424,7 @@ if the conditions for the cache usage are given.
self.print_n_sleep("__five__")
return 'five'
+
class test_slow_data_cached(test_slow_data):
def __init__(self, *args, **kwargs) -> None:
super().__init__(*args, **kwargs)
@@ -453,31 +454,31 @@ if the conditions for the cache usage are given.
Will result on the first execution to the following output (with a long execution time):
Testing property_cache (pickle):
--------------------------------
-2025-08-15 00:40:15,331: DEBUG - caching - Cache file does not exists (yet).
-2025-08-15 00:40:15,331: DEBUG - caching - Loading property for key='1' from source instance
+2025-08-15 18:51:44,846: DEBUG - caching - Cache file does not exists (yet).
+2025-08-15 18:51:44,846: DEBUG - caching - Loading property for key='1' from source instance
slow get executed for __1__
-2025-08-15 00:40:18,331: DEBUG - caching - Adding key=1, value=one with timestamp=1755211218 to chache
-2025-08-15 00:40:18,332: DEBUG - caching - cache-file stored (cache.pickle)
+2025-08-15 18:51:47,847: DEBUG - caching - Adding key=1, value=one with timestamp=1755276707 to chache
+2025-08-15 18:51:47,847: DEBUG - caching - cache-file stored (cache.pickle)
one
-2025-08-15 00:40:18,332: DEBUG - caching - Loading property for key='2' from source instance
+2025-08-15 18:51:47,848: DEBUG - caching - Loading property for key='2' from source instance
slow get executed for __2__
-2025-08-15 00:40:21,333: DEBUG - caching - Adding key=2, value=two with timestamp=1755211221 to chache
-2025-08-15 00:40:21,334: DEBUG - caching - cache-file stored (cache.pickle)
+2025-08-15 18:51:50,848: DEBUG - caching - Adding key=2, value=two with timestamp=1755276710 to chache
+2025-08-15 18:51:50,849: DEBUG - caching - cache-file stored (cache.pickle)
two
-2025-08-15 00:40:21,334: DEBUG - caching - Loading property for key='three' from source instance
+2025-08-15 18:51:50,849: DEBUG - caching - Loading property for key='three' from source instance
slow get executed for __three__
-2025-08-15 00:40:24,335: DEBUG - caching - Adding key=three, value=three with timestamp=1755211224 to chache
-2025-08-15 00:40:24,335: DEBUG - caching - cache-file stored (cache.pickle)
+2025-08-15 18:51:53,851: DEBUG - caching - Adding key=three, value=three with timestamp=1755276713 to chache
+2025-08-15 18:51:53,852: DEBUG - caching - cache-file stored (cache.pickle)
three
-2025-08-15 00:40:24,336: DEBUG - caching - Loading property for key='four' from source instance
+2025-08-15 18:51:53,852: DEBUG - caching - Loading property for key='four' from source instance
slow get executed for __four__
-2025-08-15 00:40:27,336: DEBUG - caching - Adding key=four, value=four with timestamp=1755211227 to chache
-2025-08-15 00:40:27,337: DEBUG - caching - cache-file stored (cache.pickle)
+2025-08-15 18:51:56,852: DEBUG - caching - Adding key=four, value=four with timestamp=1755276716 to chache
+2025-08-15 18:51:56,853: DEBUG - caching - cache-file stored (cache.pickle)
four
-2025-08-15 00:40:27,338: DEBUG - caching - Loading property for key='five' from source instance
+2025-08-15 18:51:56,853: DEBUG - caching - Loading property for key='five' from source instance
slow get executed for __five__
-2025-08-15 00:40:30,338: DEBUG - caching - Adding key=five, value=five with timestamp=1755211230 to chache
-2025-08-15 00:40:30,340: DEBUG - caching - cache-file stored (cache.pickle)
+2025-08-15 18:51:59,855: DEBUG - caching - Adding key=five, value=five with timestamp=1755276719 to chache
+2025-08-15 18:51:59,855: DEBUG - caching - cache-file stored (cache.pickle)
five
--------------------------------
The execution time was 15.0s
@@ -486,19 +487,19 @@ if the conditions for the cache usage are given.
With every following execution the time cosumption my by much smaller:
Testing property_cache (pickle):
--------------------------------
-2025-08-15 00:40:30,387: DEBUG - caching - Loading properties from cache (cache.pickle)
-2025-08-15 00:40:30,387: DEBUG - caching - Providing property for '1' from cache
+2025-08-15 18:51:59,975: DEBUG - caching - Loading properties from cache (cache.pickle)
+2025-08-15 18:51:59,975: DEBUG - caching - Providing property for '1' from cache
one
-2025-08-15 00:40:30,387: DEBUG - caching - Providing property for '2' from cache
+2025-08-15 18:51:59,975: DEBUG - caching - Providing property for '2' from cache
two
-2025-08-15 00:40:30,387: DEBUG - caching - Loading property for key='three' from source instance
+2025-08-15 18:51:59,976: DEBUG - caching - Loading property for key='three' from source instance
slow get executed for __three__
-2025-08-15 00:40:33,388: DEBUG - caching - Adding key=three, value=three with timestamp=1755211233 to chache
-2025-08-15 00:40:33,388: DEBUG - caching - cache-file stored (cache.pickle)
+2025-08-15 18:52:02,976: DEBUG - caching - Adding key=three, value=three with timestamp=1755276722 to chache
+2025-08-15 18:52:02,977: DEBUG - caching - cache-file stored (cache.pickle)
three
-2025-08-15 00:40:33,389: DEBUG - caching - Providing property for 'four' from cache
+2025-08-15 18:52:02,977: DEBUG - caching - Providing property for 'four' from cache
four
-2025-08-15 00:40:33,389: DEBUG - caching - Providing property for 'five' from cache
+2025-08-15 18:52:02,977: DEBUG - caching - Providing property for 'five' from cache
five
--------------------------------
The execution time was 3.0s
diff --git a/_docs_/searchindex.js b/_docs_/searchindex.js
index 7d45f02..1ea5f8b 100644
--- a/_docs_/searchindex.js
+++ b/_docs_/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles":{"1. Copyright and Related Rights.":[[3,"copyright-and-related-rights"],[10,"copyright-and-related-rights"]],"2. Waiver.":[[3,"waiver"],[10,"waiver"]],"3. Public License Fallback.":[[3,"public-license-fallback"],[10,"public-license-fallback"]],"4. Limitations and Disclaimers.":[[3,"limitations-and-disclaimers"],[10,"limitations-and-disclaimers"]],"CC0 1.0 Universal licence":[[3,"cc0-1-0-universal-licence"],[10,"cc0-1-0-universal-licence"]],"Licence":[[3,null],[10,null]],"License for Sphinx":[[4,null],[11,null]],"Required properties for the source_instance":[[0,null]],"Statement of Purpose":[[3,"statement-of-purpose"],[10,"statement-of-purpose"]],"The MIT License (MIT)":[[2,null],[9,null]],"The cache will be used, if all following conditions are given":[[0,null]],"Zero-Clause BSD Licence":[[3,"zero-clause-bsd-licence"],[10,"zero-clause-bsd-licence"]],"caching (Caching Module)":[[0,"caching-caching-module"]],"caching package":[[0,null]]},"docnames":["index","venv/lib/python3.13/site-packages/alabaster-1.0.0.dist-info/LICENSE","venv/lib/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE","venv/lib/python3.13/site-packages/roman_numerals_py-3.1.0.dist-info/licenses/LICENCE","venv/lib/python3.13/site-packages/sphinx-8.2.3.dist-info/licenses/LICENSE","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/module","venv/lib64/python3.13/site-packages/alabaster-1.0.0.dist-info/LICENSE","venv/lib64/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE","venv/lib64/python3.13/site-packages/roman_numerals_py-3.1.0.dist-info/licenses/LICENCE","venv/lib64/python3.13/site-packages/sphinx-8.2.3.dist-info/licenses/LICENSE","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/module"],"envversion":{"sphinx":65,"sphinx.domains.c":3,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":9,"sphinx.domains.index":1,"sphinx.domains.javascript":3,"sphinx.domains.math":2,"sphinx.domains.python":4,"sphinx.domains.rst":2,"sphinx.domains.std":2},"filenames":["index.rst","venv/lib/python3.13/site-packages/alabaster-1.0.0.dist-info/LICENSE.rst","venv/lib/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE.rst","venv/lib/python3.13/site-packages/roman_numerals_py-3.1.0.dist-info/licenses/LICENCE.rst","venv/lib/python3.13/site-packages/sphinx-8.2.3.dist-info/licenses/LICENSE.rst","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base.rst","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class.rst","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/module.rst","venv/lib64/python3.13/site-packages/alabaster-1.0.0.dist-info/LICENSE.rst","venv/lib64/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE.rst","venv/lib64/python3.13/site-packages/roman_numerals_py-3.1.0.dist-info/licenses/LICENCE.rst","venv/lib64/python3.13/site-packages/sphinx-8.2.3.dist-info/licenses/LICENSE.rst","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base.rst","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class.rst","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/module.rst"],"indexentries":{},"objects":{"":[[0,0,0,"-","caching"]],"caching":[[0,1,1,"","property_cache_json"],[0,1,1,"","property_cache_pickle"]],"caching.property_cache_pickle":[[0,2,1,"","AGE_TAG"],[0,2,1,"","DATA_TAG"],[0,2,1,"","DATA_VERSION_TAG"],[0,2,1,"","STORAGE_VERSION"],[0,2,1,"","STORAGE_VERSION_TAG"],[0,2,1,"","UID_TAG"],[0,3,1,"","add_source_get_keys"],[0,3,1,"","full_update"],[0,3,1,"","get"]]},"objnames":{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","attribute","Python attribute"],"3":["py","method","Python method"]},"objtypes":{"0":"py:module","1":"py:class","2":"py:attribute","3":"py:method"},"terms":{"":[0,3,10],"0":0,"00":0,"03":0,"06":0,"08":0,"09":0,"1":0,"11":[3,10],"12":0,"15":0,"1755211200":0,"1755211203":0,"1755211206":0,"1755211209":0,"1755211212":0,"1755211215":0,"1755211218":0,"1755211221":0,"1755211224":0,"1755211227":0,"1755211230":0,"1755211233":0,"18":0,"193":0,"194":0,"195":0,"197":0,"198":0,"199":0,"1996":[3,10],"1f":0,"2":0,"200":0,"2007":[4,11],"201":0,"2010":[1,8],"2011":[1,8],"2016":[2,9],"202":0,"2020":[1,8],"2024":[3,10],"2025":[0,4,11],"21":0,"24":0,"245":0,"246":0,"247":0,"27":0,"3":0,"30":0,"33":0,"331":0,"332":0,"333":0,"334":0,"335":0,"336":0,"337":0,"338":0,"340":0,"387":0,"388":0,"389":0,"39":0,"40":0,"57":0,"8":0,"9":[3,10],"96":[3,10],"A":[1,2,3,4,8,9,10,11],"AND":[1,2,3,4,8,9,10,11],"AS":[1,2,3,4,8,9,10,11],"BE":[1,2,3,4,8,9,10,11],"BUT":[1,2,4,8,9,11],"BY":[1,4,8,11],"FOR":[1,2,3,4,8,9,10,11],"For":[3,10],"IF":[1,4,8,11],"IN":[1,2,3,4,8,9,10,11],"If":0,"In":[3,10],"It":0,"NO":[1,2,3,4,8,9,10,11],"NOT":[1,2,4,8,9,11],"No":[3,10],"OF":[1,2,3,4,8,9,10,11],"ON":[1,4,8,11],"OR":[1,2,3,4,8,9,10,11],"SUCH":[1,4,8,11],"THE":[1,2,3,4,8,9,10,11],"TO":[1,2,3,4,8,9,10,11],"The":[1,3,8,10],"These":[3,10],"To":[3,10],"WITH":[2,3,9,10],"Will":0,"With":0,"__":0,"__1__":0,"__2__":0,"__five__":0,"__four__":0,"__init__":0,"__main__":0,"__name__":0,"__three__":0,"_age_":0,"_cach":0,"_data_":0,"_property_cache_data_version_":0,"_property_cache_uid_":0,"_storage_version_":0,"abandon":[3,10],"abov":[1,2,4,8,9,11],"absenc":[3,10],"account":[3,10],"accuraci":[3,10],"acknowledg":[3,10],"action":[2,3,9,10],"ad":0,"adam":[3,10],"adapt":[3,10],"add":0,"add_source_get_kei":0,"addit":[3,10],"advertis":[3,10],"advis":[1,4,8,11],"affect":[3,10],"affirm":[3,10],"ag":0,"against":[3,10],"age_tag":0,"alder":0,"all":[2,3,4,9,10,11],"also":0,"alwai":0,"amend":[3,10],"an":[2,3,9,10],"ani":[1,2,3,4,8,9,10,11],"appli":[3,10],"applic":[3,10],"ar":[1,3,4,8,10,11],"arg":0,"argument":0,"aris":[1,2,3,4,8,9,10,11],"armin":[1,8],"asctim":0,"assert":[3,10],"associ":[2,3,9,10],"attributeerror":0,"author":[0,2,3,4,9,10,11],"authorship":[3,10],"automat":[3,10],"avail":[0,3,10],"base":[0,1,3,8,10],"basicconfig":0,"been":0,"below":[3,4,10,11],"benefit":[3,10],"between":0,"bin":0,"binari":[1,4,8,11],"block":[7,14],"bool":0,"bsd":[4,11],"build":[3,10],"busi":[1,4,8,11],"c":[1,3,4,8,10,11],"cache_filenam":0,"callback":0,"callback_on_data_storag":0,"can":[3,10],"cancel":[3,10],"case":[3,10],"caus":[1,3,4,8,10,11],"certain":[3,10],"chach":0,"chang":0,"charg":[2,9],"checksum":0,"claim":[2,3,9,10],"class":0,"claus":[4,11],"clear":[3,10],"code":[0,1,4,8,11],"commerci":[3,10],"common":[3,10],"commun":[3,10],"compens":[3,10],"competit":[3,10],"complet":0,"concern":[3,10],"condit":[1,2,4,8,9,11],"confer":[3,10],"configur":0,"connect":[2,3,9,10],"consent":[3,10],"consequenti":[1,3,4,8,10,11],"consider":[3,10],"contempl":[3,10],"contract":[1,2,3,4,8,9,10,11],"contrari":[3,10],"contravent":[3,10],"contribut":[3,10],"contributor":[1,4,8,11],"copi":[2,3,9,10],"copyright":[1,2,4,8,9,11],"correspond":[3,10],"cosumpt":0,"council":[3,10],"creativ":[3,10],"creator":[3,10],"cultur":[3,10],"current":[0,3,10],"damag":[1,2,3,4,8,9,10,11],"data":[0,1,3,4,8,10,11],"data_tag":0,"data_vers":0,"data_version_tag":0,"databas":[3,10],"date":[3,10],"de":0,"deal":[2,9],"debug":0,"deem":[3,10],"def":0,"default":0,"defect":[3,10],"defin":[3,10],"depict":[3,10],"deriv":[1,8],"descript":0,"detail":0,"detriment":[3,10],"direct":[1,3,4,8,10,11],"dirk":0,"disclaim":[1,4,8,11],"discover":[3,10],"displai":[3,10],"disrupt":[3,10],"dissemin":[3,10],"distribut":[1,2,3,4,8,9,10,11],"do":[2,9],"document":[0,1,2,3,4,8,9,10,11],"doe":0,"don":0,"durat":[3,10],"duti":[3,10],"e":0,"each":[0,3,10],"ec":[3,10],"effect":[3,10],"effort":[3,10],"either":[3,10],"elect":[3,10],"els":0,"endblock":[7,14],"endfor":[7,14],"endif":[7,14],"endors":[1,8],"enjoy":[3,10],"env":0,"equit":[3,10],"equival":[3,10],"error":[3,10],"escap":[5,6,7,12,13,14],"european":[3,10],"even":[1,4,8,11],"event":[1,2,3,4,8,9,10,11],"everi":0,"exampl":0,"except":0,"exclus":[3,10],"execut":0,"exemplari":[1,4,8,11],"exercis":[3,10],"exist":[0,3,10],"expect":[3,10],"express":[1,2,3,4,8,9,10,11],"extens":[3,10],"extent":[3,10],"extract":[3,10],"f":0,"fals":0,"fear":[3,10],"fee":[3,10],"file":[0,2,4,9,11],"first":0,"fit":[1,2,3,4,8,9,10,11],"five":0,"float":0,"follow":[1,2,3,4,8,9,10,11],"forcier":[1,8],"form":[1,3,4,8,10,11],"format":0,"four":0,"free":[2,3,9,10],"freeli":[3,10],"from":[0,1,2,3,8,9,10],"full_upd":0,"fulli":[3,10],"fullnam":[5,6,7,12,13,14],"function":0,"furnish":[2,9],"further":[3,10],"futur":[3,10],"g":0,"gain":[3,10],"gener":0,"get":0,"getattr":0,"good":[1,4,8,11],"grant":[2,3,9,10],"greater":[3,10],"greatest":[3,10],"ha":[3,10],"had":0,"he":[3,10],"heir":[3,10],"held":[3,10],"her":[3,10],"herebi":[2,3,9,10],"hi":[3,10],"hold":0,"holder":[1,2,4,8,9,11],"howev":[1,4,8,11],"i":[0,1,2,3,4,8,9,10,11],"id":0,"ideal":[3,10],"ident":0,"ii":[3,10],"iii":[3,10],"imag":[3,10],"implement":[3,10],"impli":[1,2,3,4,8,9,10,11],"import":0,"improv":0,"incident":[1,4,8,11],"includ":[1,2,3,4,8,9,10,11],"incorpor":[3,10],"increas":0,"indic":[4,11],"indirect":[1,3,4,8,10,11],"ineffect":[3,10],"inform":0,"infring":[3,10],"initialis":0,"initiallis":0,"instanc":0,"instead":0,"int":0,"intend":[3,10],"interrupt":[1,4,8,11],"invalid":[3,10],"irrevoc":[3,10],"item":[7,14],"its":[3,10],"iv":[3,10],"jeff":[1,8],"json":0,"judg":[3,10],"jurisdict":[3,10],"k":0,"kei":0,"kenneth":[1,8],"key_fiv":0,"key_four":0,"key_on":0,"key_thre":0,"key_two":0,"kind":[2,3,9,10],"knowledg":[3,10],"known":[3,10],"kwarg":0,"larg":[3,10],"latent":[3,10],"later":[3,10],"law":[3,10],"legal":[3,10],"less":0,"level":0,"levelnam":0,"liabil":[1,2,4,8,9,11],"liabl":[1,2,3,4,8,9,10,11],"licenc":[4,11],"like":[3,10],"limit":[0,1,2,4,8,9,11],"list":[0,1,4,8,11],"load":0,"load_all_on_init":0,"log":0,"long":0,"loss":[1,3,4,8,10,11],"made":[3,10],"mai":[1,3,8,10],"make":[3,10],"march":[3,10],"materi":[1,4,8,11],"max_ag":0,"maximum":[0,3,10],"mean":[3,10],"medium":[3,10],"member":[3,10],"merchant":[1,2,3,4,8,9,10,11],"merg":[2,9],"messag":0,"met":[1,4,8,11],"method":0,"mockeri":0,"modif":[1,4,8,11],"modifi":[2,3,9,10],"modul":[7,14],"moral":[3,10],"more":0,"most":[3,10],"motiv":[3,10],"mount":0,"much":0,"must":[1,4,8,11],"my":0,"n":0,"name":[0,1,8],"nation":[3,10],"necessari":[3,10],"need":0,"neglig":[1,3,4,8,10,11],"neighbor":[3,10],"non":[3,10],"none":0,"noninfring":[2,9],"notic":[1,2,4,8,9,11],"now":[3,10],"nthe":0,"number":[0,3,10],"object":0,"oblig":[3,10],"obtain":[2,3,9,10],"offer":[3,10],"one":0,"onli":0,"origin":[1,3,8,10],"other":[0,1,2,3,4,8,9,10,11],"otherwis":[1,2,3,4,8,9,10,11],"out":[1,2,3,4,8,9,10,11],"output":0,"overtli":[3,10],"owner":[1,3,8,10],"paragraph":[3,10],"paramet":0,"parent":0,"parliament":[3,10],"part":[3,10],"parti":[3,10],"partial":[3,10],"particular":[1,2,3,4,8,9,10,11],"patent":[3,10],"perform":[3,10],"perman":[3,10],"permiss":[1,2,3,8,9,10],"permit":[1,2,3,4,8,9,10,11],"person":[2,3,9,10],"pertain":[3,10],"pickl":0,"portion":[2,9],"possibl":[1,3,4,8,10,11],"present":[3,10],"preserv":[3,10],"prevent":0,"previou":0,"print":0,"print_n_sleep":0,"prior":[1,8],"privaci":[3,10],"procur":[1,4,8,11],"product":[1,3,8,10],"profit":[1,3,4,8,10,11],"project":[3,4,10,11],"promot":[1,3,8,10],"property_cach":0,"property_cache_json":0,"property_cache_pickl":0,"protect":[3,10],"provid":[0,1,2,3,4,8,9,10,11],"publicli":[3,10],"publish":[2,9],"purpos":[1,2,4,8,9,11],"python":0,"quiet":[3,10],"read":0,"reason":[3,10],"redistribut":[1,3,4,8,10,11],"regard":[3,10],"reitz":[1,8],"reliabl":[3,10],"relinquish":[3,10],"remain":[3,10],"remaind":[3,10],"represent":[3,10],"reproduc":[1,3,4,8,10,11],"reput":[3,10],"requir":[3,10],"resciss":[3,10],"reserv":[1,4,8,11],"respect":[3,10],"respons":[3,10],"restrict":[2,9],"result":[0,3,10],"retain":[1,3,4,8,10,11],"return":0,"return_source_on_non":0,"reus":[3,10],"revoc":[3,10],"right":[1,2,4,8,9,11],"ronach":[1,8],"royalti":[3,10],"rubric":[7,14],"scientif":[3,10],"second":0,"see":[0,4,11],"self":0,"sell":[2,9],"servic":[1,4,8,11],"shall":[1,2,3,4,8,9,10,11],"she":[3,10],"shibukawa":[2,9],"should":[0,3,10],"similar":[3,10],"sleep":0,"sleep_between_kei":0,"slow":0,"smaller":0,"so":[2,3,9,10],"softwar":[1,2,3,4,8,9,10,11],"some":[1,8],"somewher":0,"sourc":[0,1,4,8,11],"special":[1,3,4,8,10,11],"specif":[1,8],"statutori":[3,10],"stdout":0,"storag":0,"storage_vers":0,"storage_version_tag":0,"store":0,"store_on_get":0,"str":0,"stream":0,"strict":[1,4,8,11],"string":0,"structur":0,"subject":[2,3,9,10],"sublicens":[2,3,9,10],"submodul":0,"subsequ":[3,10],"substanti":[2,9],"substitut":[1,4,8,11],"successor":[3,10],"sudo":0,"super":0,"support":0,"surrend":[3,10],"sy":0,"t":0,"take":[0,3,10],"team":[4,11],"term":[3,10],"termin":[3,10],"territori":[3,10],"test":0,"test_slow_data":0,"test_slow_data_cach":0,"theme":[1,8],"theori":[1,4,8,11],"thereof":[3,10],"thi":[0,1,2,3,4,8,9,10,11],"those":[3,10],"three":0,"through":[3,10],"throughout":[3,10],"time":[0,3,10],"timestamp":0,"titl":[3,10],"tm":0,"tort":[1,2,4,8,9,11],"tortiou":[3,10],"trademark":[3,10],"transfer":[0,3,10],"translat":[3,10],"treati":[3,10],"true":0,"try":0,"tupl":0,"turner":[3,10],"two":[0,4,11],"type":0,"uid":0,"uid_tag":0,"uncondit":[3,10],"uncondition":[3,10],"under":[3,4,10,11],"underlin":[5,6,7,12,13,14],"understand":[3,10],"unfair":[3,10],"unicod":0,"uniqu":0,"unittest":0,"unknown":[3,10],"unless":[4,11],"upon":[3,10],"us":[1,2,3,4,8,9,10,11],"usag":0,"usr":0,"utf":0,"valu":0,"version":[0,3,10],"voluntarili":[3,10],"wa":[0,3,10],"wai":[1,4,8,11],"waiv":[3,10],"want":0,"warranti":[1,2,3,4,8,9,10,11],"well":[3,10],"whatsoev":[3,10],"when":0,"where":0,"whether":[1,2,3,4,8,9,10,11],"which":0,"whom":[2,9],"wish":[3,10],"without":[1,2,3,4,8,9,10,11],"work":[1,3,8,10],"world":[3,10],"worldwid":[3,10],"write":0,"written":[1,8],"yet":0,"yoshiki":[2,9],"you":0},"titles":["caching package","<no title>","The MIT License (MIT)","Licence","License for Sphinx","<no title>","<no title>","<no title>","<no title>","The MIT License (MIT)","Licence","License for Sphinx","<no title>","<no title>","<no title>"],"titleterms":{"0":[3,10],"1":[3,10],"2":[3,10],"3":[3,10],"4":[3,10],"The":[0,2,9],"all":0,"ar":0,"bsd":[3,10],"cach":0,"cc0":[3,10],"claus":[3,10],"condit":0,"copyright":[3,10],"disclaim":[3,10],"fallback":[3,10],"follow":0,"given":0,"licenc":[3,10],"licens":[2,3,4,9,10,11],"limit":[3,10],"mit":[2,9],"modul":0,"packag":0,"properti":0,"public":[3,10],"purpos":[3,10],"relat":[3,10],"requir":0,"right":[3,10],"source_inst":0,"sphinx":[4,11],"statement":[3,10],"univers":[3,10],"us":0,"waiver":[3,10],"zero":[3,10]}})
\ No newline at end of file
+Search.setIndex({"alltitles":{"1. Copyright and Related Rights.":[[3,"copyright-and-related-rights"],[10,"copyright-and-related-rights"]],"2. Waiver.":[[3,"waiver"],[10,"waiver"]],"3. Public License Fallback.":[[3,"public-license-fallback"],[10,"public-license-fallback"]],"4. Limitations and Disclaimers.":[[3,"limitations-and-disclaimers"],[10,"limitations-and-disclaimers"]],"CC0 1.0 Universal licence":[[3,"cc0-1-0-universal-licence"],[10,"cc0-1-0-universal-licence"]],"Licence":[[3,null],[10,null]],"License for Sphinx":[[4,null],[11,null]],"Required properties for the source_instance":[[0,null]],"Statement of Purpose":[[3,"statement-of-purpose"],[10,"statement-of-purpose"]],"The MIT License (MIT)":[[2,null],[9,null]],"The cache will be used, if all following conditions are given":[[0,null]],"Zero-Clause BSD Licence":[[3,"zero-clause-bsd-licence"],[10,"zero-clause-bsd-licence"]],"caching (Caching Module)":[[0,"caching-caching-module"]],"caching package":[[0,null]]},"docnames":["index","venv/lib/python3.13/site-packages/alabaster-1.0.0.dist-info/LICENSE","venv/lib/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE","venv/lib/python3.13/site-packages/roman_numerals_py-3.1.0.dist-info/licenses/LICENCE","venv/lib/python3.13/site-packages/sphinx-8.2.3.dist-info/licenses/LICENSE","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/module","venv/lib64/python3.13/site-packages/alabaster-1.0.0.dist-info/LICENSE","venv/lib64/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE","venv/lib64/python3.13/site-packages/roman_numerals_py-3.1.0.dist-info/licenses/LICENCE","venv/lib64/python3.13/site-packages/sphinx-8.2.3.dist-info/licenses/LICENSE","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/module"],"envversion":{"sphinx":65,"sphinx.domains.c":3,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":9,"sphinx.domains.index":1,"sphinx.domains.javascript":3,"sphinx.domains.math":2,"sphinx.domains.python":4,"sphinx.domains.rst":2,"sphinx.domains.std":2},"filenames":["index.rst","venv/lib/python3.13/site-packages/alabaster-1.0.0.dist-info/LICENSE.rst","venv/lib/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE.rst","venv/lib/python3.13/site-packages/roman_numerals_py-3.1.0.dist-info/licenses/LICENCE.rst","venv/lib/python3.13/site-packages/sphinx-8.2.3.dist-info/licenses/LICENSE.rst","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base.rst","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class.rst","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/module.rst","venv/lib64/python3.13/site-packages/alabaster-1.0.0.dist-info/LICENSE.rst","venv/lib64/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE.rst","venv/lib64/python3.13/site-packages/roman_numerals_py-3.1.0.dist-info/licenses/LICENCE.rst","venv/lib64/python3.13/site-packages/sphinx-8.2.3.dist-info/licenses/LICENSE.rst","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base.rst","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class.rst","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/module.rst"],"indexentries":{"add_source_get_keys() (caching.property_cache_pickle method)":[[0,"caching.property_cache_pickle.add_source_get_keys",false]],"age_tag (caching.property_cache_pickle attribute)":[[0,"caching.property_cache_pickle.AGE_TAG",false]],"caching":[[0,"module-caching",false]],"data_tag (caching.property_cache_pickle attribute)":[[0,"caching.property_cache_pickle.DATA_TAG",false]],"data_version_tag (caching.property_cache_pickle attribute)":[[0,"caching.property_cache_pickle.DATA_VERSION_TAG",false]],"full_update() (caching.property_cache_pickle method)":[[0,"caching.property_cache_pickle.full_update",false]],"get() (caching.property_cache_pickle method)":[[0,"caching.property_cache_pickle.get",false]],"module":[[0,"module-caching",false]],"property_cache_json (class in caching)":[[0,"caching.property_cache_json",false]],"property_cache_pickle (class in caching)":[[0,"caching.property_cache_pickle",false]],"storage_version (caching.property_cache_pickle attribute)":[[0,"caching.property_cache_pickle.STORAGE_VERSION",false]],"storage_version_tag (caching.property_cache_pickle attribute)":[[0,"caching.property_cache_pickle.STORAGE_VERSION_TAG",false]],"uid_tag (caching.property_cache_pickle attribute)":[[0,"caching.property_cache_pickle.UID_TAG",false]]},"objects":{"":[[0,0,0,"-","caching"]],"caching":[[0,1,1,"","property_cache_json"],[0,1,1,"","property_cache_pickle"]],"caching.property_cache_pickle":[[0,2,1,"","AGE_TAG"],[0,2,1,"","DATA_TAG"],[0,2,1,"","DATA_VERSION_TAG"],[0,2,1,"","STORAGE_VERSION"],[0,2,1,"","STORAGE_VERSION_TAG"],[0,2,1,"","UID_TAG"],[0,3,1,"","add_source_get_keys"],[0,3,1,"","full_update"],[0,3,1,"","get"]]},"objnames":{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","attribute","Python attribute"],"3":["py","method","Python method"]},"objtypes":{"0":"py:module","1":"py:class","2":"py:attribute","3":"py:method"},"terms":{"":[0,3,10],"0":0,"02":0,"08":0,"1":0,"11":[3,10],"15":0,"1755276689":0,"1755276692":0,"1755276695":0,"1755276698":0,"1755276701":0,"1755276704":0,"1755276707":0,"1755276710":0,"1755276713":0,"1755276716":0,"1755276719":0,"1755276722":0,"18":0,"1996":[3,10],"1f":0,"2":0,"2007":[4,11],"2010":[1,8],"2011":[1,8],"2016":[2,9],"2020":[1,8],"2024":[3,10],"2025":[0,4,11],"26":0,"29":0,"3":0,"32":0,"35":0,"38":0,"41":0,"44":0,"47":0,"50":0,"51":0,"52":0,"53":0,"56":0,"59":0,"642":0,"643":0,"644":0,"645":0,"646":0,"647":0,"648":0,"649":0,"650":0,"765":0,"767":0,"768":0,"8":0,"846":0,"847":0,"848":0,"849":0,"851":0,"852":0,"853":0,"855":0,"9":[3,10],"96":[3,10],"975":0,"976":0,"977":0,"A":[1,2,3,4,8,9,10,11],"AND":[1,2,3,4,8,9,10,11],"AS":[1,2,3,4,8,9,10,11],"BE":[1,2,3,4,8,9,10,11],"BUT":[1,2,4,8,9,11],"BY":[1,4,8,11],"FOR":[1,2,3,4,8,9,10,11],"For":[3,10],"IF":[1,4,8,11],"IN":[1,2,3,4,8,9,10,11],"If":0,"In":[3,10],"It":0,"NO":[1,2,3,4,8,9,10,11],"NOT":[1,2,4,8,9,11],"No":[3,10],"OF":[1,2,3,4,8,9,10,11],"ON":[1,4,8,11],"OR":[1,2,3,4,8,9,10,11],"SUCH":[1,4,8,11],"THE":[1,2,3,4,8,9,10,11],"TO":[1,2,3,4,8,9,10,11],"The":[1,3,8,10],"These":[3,10],"To":[3,10],"WITH":[2,3,9,10],"Will":0,"With":0,"__":0,"__1__":0,"__2__":0,"__five__":0,"__four__":0,"__init__":0,"__main__":0,"__name__":0,"__three__":0,"_age_":0,"_cach":0,"_data_":0,"_property_cache_data_version_":0,"_property_cache_uid_":0,"_storage_version_":0,"abandon":[3,10],"abov":[1,2,4,8,9,11],"absenc":[3,10],"account":[3,10],"accuraci":[3,10],"acknowledg":[3,10],"action":[2,3,9,10],"ad":0,"adam":[3,10],"adapt":[3,10],"add":0,"add_source_get_kei":0,"addit":[3,10],"advertis":[3,10],"advis":[1,4,8,11],"affect":[3,10],"affirm":[3,10],"ag":0,"against":[3,10],"age_tag":0,"alder":0,"all":[2,3,4,9,10,11],"also":0,"alwai":0,"amend":[3,10],"an":[2,3,9,10],"ani":[1,2,3,4,8,9,10,11],"append":0,"appli":[3,10],"applic":[3,10],"ar":[1,3,4,8,10,11],"arg":0,"argument":0,"aris":[1,2,3,4,8,9,10,11],"armin":[1,8],"asctim":0,"assert":[3,10],"associ":[2,3,9,10],"attributeerror":0,"author":[0,2,3,4,9,10,11],"authorship":[3,10],"automat":[3,10],"avail":[0,3,10],"base":[0,1,3,8,10],"basicconfig":0,"been":0,"below":[3,4,10,11],"benefit":[3,10],"between":0,"binari":[1,4,8,11],"block":[7,14],"bool":0,"bsd":[4,11],"build":[3,10],"busi":[1,4,8,11],"c":[1,3,4,8,10,11],"cache_filenam":0,"callback":0,"callback_on_data_storag":0,"can":[3,10],"cancel":[3,10],"case":[3,10],"caus":[1,3,4,8,10,11],"certain":[3,10],"chach":0,"chang":0,"charg":[2,9],"checksum":0,"claim":[2,3,9,10],"class":0,"claus":[4,11],"clear":[3,10],"code":[1,4,8,11],"commerci":[3,10],"common":[3,10],"commun":[3,10],"compens":[3,10],"competit":[3,10],"complet":0,"concern":[3,10],"condit":[1,2,4,8,9,11],"confer":[3,10],"configur":0,"connect":[2,3,9,10],"consent":[3,10],"consequenti":[1,3,4,8,10,11],"consider":[3,10],"contempl":[3,10],"contract":[1,2,3,4,8,9,10,11],"contrari":[3,10],"contravent":[3,10],"contribut":[3,10],"contributor":[1,4,8,11],"copi":[2,3,9,10],"copyright":[1,2,4,8,9,11],"correspond":[3,10],"cosumpt":0,"council":[3,10],"creativ":[3,10],"creator":[3,10],"cultur":[3,10],"current":[0,3,10],"damag":[1,2,3,4,8,9,10,11],"data":[0,1,3,4,8,10,11],"data_tag":0,"data_vers":0,"data_version_tag":0,"databas":[3,10],"date":[3,10],"de":0,"deal":[2,9],"debug":0,"deem":[3,10],"def":0,"default":0,"defect":[3,10],"defin":[3,10],"depict":[3,10],"deriv":[1,8],"descript":0,"detail":0,"detriment":[3,10],"direct":[1,3,4,8,10,11],"dirk":0,"disclaim":[1,4,8,11],"discover":[3,10],"displai":[3,10],"disrupt":[3,10],"dissemin":[3,10],"distribut":[1,2,3,4,8,9,10,11],"do":[2,9],"document":[0,1,2,3,4,8,9,10,11],"doe":0,"don":0,"durat":[3,10],"duti":[3,10],"e":0,"each":[0,3,10],"ec":[3,10],"effect":[3,10],"effort":[3,10],"either":[3,10],"elect":[3,10],"els":0,"endblock":[7,14],"endfor":[7,14],"endif":[7,14],"endors":[1,8],"enjoy":[3,10],"equit":[3,10],"equival":[3,10],"error":[3,10],"escap":[5,6,7,12,13,14],"european":[3,10],"even":[1,4,8,11],"event":[1,2,3,4,8,9,10,11],"everi":0,"exampl":0,"except":0,"exclus":[3,10],"execut":0,"exemplari":[1,4,8,11],"exercis":[3,10],"exist":[0,3,10],"expect":[3,10],"express":[1,2,3,4,8,9,10,11],"extens":[3,10],"extent":[3,10],"extract":[3,10],"f":0,"fals":0,"fear":[3,10],"fee":[3,10],"file":[0,2,4,9,11],"first":0,"fit":[1,2,3,4,8,9,10,11],"five":0,"float":0,"follow":[1,2,3,4,8,9,10,11],"forcier":[1,8],"form":[1,3,4,8,10,11],"format":0,"four":0,"free":[2,3,9,10],"freeli":[3,10],"from":[0,1,2,3,8,9,10],"full_upd":0,"fulli":[3,10],"fullnam":[5,6,7,12,13,14],"function":0,"furnish":[2,9],"further":[3,10],"futur":[3,10],"g":0,"gain":[3,10],"gener":0,"get":0,"getattr":0,"good":[1,4,8,11],"grant":[2,3,9,10],"greater":[3,10],"greatest":[3,10],"ha":[3,10],"had":0,"he":[3,10],"heir":[3,10],"held":[3,10],"her":[3,10],"herebi":[2,3,9,10],"hi":[3,10],"hold":0,"holder":[1,2,4,8,9,11],"howev":[1,4,8,11],"i":[0,1,2,3,4,8,9,10,11],"id":0,"ideal":[3,10],"ident":0,"ii":[3,10],"iii":[3,10],"imag":[3,10],"implement":[3,10],"impli":[1,2,3,4,8,9,10,11],"import":0,"improv":0,"incident":[1,4,8,11],"includ":[1,2,3,4,8,9,10,11],"incorpor":[3,10],"increas":0,"indic":[4,11],"indirect":[1,3,4,8,10,11],"ineffect":[3,10],"inform":0,"infring":[3,10],"initialis":0,"initiallis":0,"instanc":0,"instead":0,"int":0,"intend":[3,10],"interrupt":[1,4,8,11],"invalid":[3,10],"irrevoc":[3,10],"item":[7,14],"its":[3,10],"iv":[3,10],"jeff":[1,8],"json":0,"judg":[3,10],"jurisdict":[3,10],"k":0,"kei":0,"kenneth":[1,8],"key_fiv":0,"key_four":0,"key_on":0,"key_thre":0,"key_two":0,"kind":[2,3,9,10],"knowledg":[3,10],"known":[3,10],"kwarg":0,"larg":[3,10],"latent":[3,10],"later":[3,10],"law":[3,10],"legal":[3,10],"less":0,"level":0,"levelnam":0,"liabil":[1,2,4,8,9,11],"liabl":[1,2,3,4,8,9,10,11],"licenc":[4,11],"like":[3,10],"limit":[0,1,2,4,8,9,11],"list":[0,1,4,8,11],"load":0,"load_all_on_init":0,"log":0,"long":0,"loss":[1,3,4,8,10,11],"made":[3,10],"mai":[1,3,8,10],"make":[3,10],"march":[3,10],"materi":[1,4,8,11],"max_ag":0,"maximum":[0,3,10],"mean":[3,10],"medium":[3,10],"member":[3,10],"merchant":[1,2,3,4,8,9,10,11],"merg":[2,9],"messag":0,"met":[1,4,8,11],"method":0,"mockeri":0,"modif":[1,4,8,11],"modifi":[2,3,9,10],"modul":[7,14],"moral":[3,10],"more":0,"most":[3,10],"motiv":[3,10],"mount":0,"much":0,"must":[1,4,8,11],"my":0,"n":0,"name":[0,1,8],"nation":[3,10],"necessari":[3,10],"need":0,"neglig":[1,3,4,8,10,11],"neighbor":[3,10],"non":[3,10],"none":0,"noninfring":[2,9],"nopep8":0,"notic":[1,2,4,8,9,11],"now":[3,10],"nthe":0,"number":[0,3,10],"object":0,"oblig":[3,10],"obtain":[2,3,9,10],"offer":[3,10],"one":0,"onli":0,"origin":[1,3,8,10],"other":[0,1,2,3,4,8,9,10,11],"otherwis":[1,2,3,4,8,9,10,11],"out":[1,2,3,4,8,9,10,11],"output":0,"overtli":[3,10],"owner":[1,3,8,10],"paragraph":[3,10],"paramet":0,"parent":0,"parliament":[3,10],"part":[3,10],"parti":[3,10],"partial":[3,10],"particular":[1,2,3,4,8,9,10,11],"patent":[3,10],"path":0,"perform":[3,10],"perman":[3,10],"permiss":[1,2,3,8,9,10],"permit":[1,2,3,4,8,9,10,11],"person":[2,3,9,10],"pertain":[3,10],"pickl":0,"portion":[2,9],"possibl":[1,3,4,8,10,11],"present":[3,10],"preserv":[3,10],"prevent":0,"previou":0,"print":0,"print_n_sleep":0,"prior":[1,8],"privaci":[3,10],"procur":[1,4,8,11],"product":[1,3,8,10],"profit":[1,3,4,8,10,11],"project":[3,4,10,11],"promot":[1,3,8,10],"property_cach":0,"property_cache_json":0,"property_cache_pickl":0,"protect":[3,10],"provid":[0,1,2,3,4,8,9,10,11],"publicli":[3,10],"publish":[2,9],"purpos":[1,2,4,8,9,11],"quiet":[3,10],"read":0,"reason":[3,10],"redistribut":[1,3,4,8,10,11],"regard":[3,10],"reitz":[1,8],"reliabl":[3,10],"relinquish":[3,10],"remain":[3,10],"remaind":[3,10],"represent":[3,10],"reproduc":[1,3,4,8,10,11],"reput":[3,10],"requir":[3,10],"resciss":[3,10],"reserv":[1,4,8,11],"respect":[3,10],"respons":[3,10],"restrict":[2,9],"result":[0,3,10],"retain":[1,3,4,8,10,11],"return":0,"return_source_on_non":0,"reus":[3,10],"revoc":[3,10],"right":[1,2,4,8,9,11],"ronach":[1,8],"royalti":[3,10],"rubric":[7,14],"scientif":[3,10],"second":0,"see":[0,4,11],"self":0,"sell":[2,9],"servic":[1,4,8,11],"shall":[1,2,3,4,8,9,10,11],"she":[3,10],"shibukawa":[2,9],"should":[0,3,10],"similar":[3,10],"sleep":0,"sleep_between_kei":0,"slow":0,"smaller":0,"so":[2,3,9,10],"softwar":[1,2,3,4,8,9,10,11],"some":[1,8],"somewher":0,"sourc":[0,1,4,8,11],"special":[1,3,4,8,10,11],"specif":[1,8],"statutori":[3,10],"stdout":0,"storag":0,"storage_vers":0,"storage_version_tag":0,"store":0,"store_on_get":0,"str":0,"stream":0,"strict":[1,4,8,11],"string":0,"structur":0,"subject":[2,3,9,10],"sublicens":[2,3,9,10],"submodul":0,"subsequ":[3,10],"substanti":[2,9],"substitut":[1,4,8,11],"successor":[3,10],"sudo":0,"super":0,"support":0,"surrend":[3,10],"sy":0,"t":0,"take":[0,3,10],"team":[4,11],"term":[3,10],"termin":[3,10],"territori":[3,10],"test":0,"test_slow_data":0,"test_slow_data_cach":0,"theme":[1,8],"theori":[1,4,8,11],"thereof":[3,10],"thi":[0,1,2,3,4,8,9,10,11],"those":[3,10],"three":0,"through":[3,10],"throughout":[3,10],"time":[0,3,10],"timestamp":0,"titl":[3,10],"tm":0,"tort":[1,2,4,8,9,11],"tortiou":[3,10],"trademark":[3,10],"transfer":[0,3,10],"translat":[3,10],"treati":[3,10],"true":0,"try":0,"tupl":0,"turner":[3,10],"two":[0,4,11],"type":0,"uid":0,"uid_tag":0,"uncondit":[3,10],"uncondition":[3,10],"under":[3,4,10,11],"underlin":[5,6,7,12,13,14],"understand":[3,10],"unfair":[3,10],"unicod":0,"uniqu":0,"unittest":0,"unknown":[3,10],"unless":[4,11],"upon":[3,10],"us":[1,2,3,4,8,9,10,11],"usag":0,"valu":0,"version":[0,3,10],"voluntarili":[3,10],"wa":[0,3,10],"wai":[1,4,8,11],"waiv":[3,10],"want":0,"warranti":[1,2,3,4,8,9,10,11],"well":[3,10],"whatsoev":[3,10],"when":0,"where":0,"whether":[1,2,3,4,8,9,10,11],"which":0,"whom":[2,9],"wish":[3,10],"without":[1,2,3,4,8,9,10,11],"work":[1,3,8,10],"world":[3,10],"worldwid":[3,10],"write":0,"written":[1,8],"yet":0,"yoshiki":[2,9],"you":0},"titles":["caching package","<no title>","The MIT License (MIT)","Licence","License for Sphinx","<no title>","<no title>","<no title>","<no title>","The MIT License (MIT)","Licence","License for Sphinx","<no title>","<no title>","<no title>"],"titleterms":{"0":[3,10],"1":[3,10],"2":[3,10],"3":[3,10],"4":[3,10],"The":[0,2,9],"all":0,"ar":0,"bsd":[3,10],"cach":0,"cc0":[3,10],"claus":[3,10],"condit":0,"copyright":[3,10],"disclaim":[3,10],"fallback":[3,10],"follow":0,"given":0,"licenc":[3,10],"licens":[2,3,4,9,10,11],"limit":[3,10],"mit":[2,9],"modul":0,"packag":0,"properti":0,"public":[3,10],"purpos":[3,10],"relat":[3,10],"requir":0,"right":[3,10],"source_inst":0,"sphinx":[4,11],"statement":[3,10],"univers":[3,10],"us":0,"waiver":[3,10],"zero":[3,10]}})
\ No newline at end of file
diff --git a/_examples_/Makefile b/_examples_/Makefile
index 9aea2b0..f1b262b 100644
--- a/_examples_/Makefile
+++ b/_examples_/Makefile
@@ -11,15 +11,14 @@ INTERPRETER = python3
EXAMPLES := $(wildcard *.py)
EXAMPLES := $(filter-out config.py, $(EXAMPLES))
LOGFILES := ${EXAMPLES:.py=.log}
+LOGFILES_1st := ${EXAMPLES:.py=.log_1st}
all: $(LOGFILES)
-include __make.d__/*.mk
-%.py_local:
-
%.log: %.py
- $(MAKE) $<_local
+ $(MAKE) $@_1st 2> /dev/null
echo -e "\e[1m * Running example $<\e[0m"
$(INTERPRETER) $< > $@
@@ -27,4 +26,4 @@ localclean:
clean: localclean
echo -e "\e[1m * Example logs...\e[0m"
rm -f $(LOGFILES)
-
+ rm -f $(LOGFILES_1st)
diff --git a/_examples_/__make.d__/pre.mk b/_examples_/__make.d__/pre.mk
new file mode 100644
index 0000000..a017f29
--- /dev/null
+++ b/_examples_/__make.d__/pre.mk
@@ -0,0 +1,10 @@
+.ONESHELL:
+SHELL = /usr/bin/bash
+MAKEFLAGS += --no-print-directory
+.SILENT:
+
+test:
+ :
+%.log_1st: %.py
+ echo -e "\e[1m * Running slow example $<\e[0m"
+ $(INTERPRETER) $< > $@
diff --git a/_requirements_/specification.pdf b/_requirements_/specification.pdf
index 00fbc3c..38ec41e 100644
Binary files a/_requirements_/specification.pdf and b/_requirements_/specification.pdf differ
diff --git a/_testresults_/unittest.json b/_testresults_/unittest.json
index f453a7e..d2eba65 100644
--- a/_testresults_/unittest.json
+++ b/_testresults_/unittest.json
@@ -644,7 +644,7 @@
"Name": "caching",
"State": "Released",
"Supported Interpreters": "python3",
- "Version": "492ddccaeb7907cd48bd7ca81cbf567b"
+ "Version": "52c295e7e5e9060dd96adbed34253518"
},
"testrun_list": [
{
@@ -665,8 +665,8 @@
"testcases": {
"REQ-0001": {
"args": null,
- "asctime": "2025-08-14 14:58:32,646",
- "created": 1755176312.6460018,
+ "asctime": "2025-08-15 19:13:27,545",
+ "created": 1755278007.5457585,
"exc_text": null,
"filename": "__init__.py",
"funcName": "testCase",
@@ -676,20 +676,20 @@
"message": "REQ-0001",
"module": "__init__",
"moduleLogger": [],
- "msecs": 646.0,
+ "msecs": 545.0,
"msg": "REQ-0001",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 103.190093,
+ "relativeCreated": 76.059096,
"stack_info": null,
"taskName": null,
"testcaseLogger": [
{
"args": [],
- "asctime": "2025-08-14 14:58:32,646",
- "created": 1755176312.646255,
+ "asctime": "2025-08-15 19:13:27,545",
+ "created": 1755278007.545937,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -701,8 +701,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-08-14 14:58:32,646",
- "created": 1755176312.646128,
+ "asctime": "2025-08-15 19:13:27,545",
+ "created": 1755278007.5458548,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -711,38 +711,38 @@
"lineno": 17,
"message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
"module": "test_helpers",
- "msecs": 646.0,
+ "msecs": 545.0,
"msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 103.315911,
+ "relativeCreated": 76.155206,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 646.0,
+ "msecs": 545.0,
"msg": "Prepare: Cleanup before testcase execution",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 103.443213,
+ "relativeCreated": 76.237705,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.0001270771026611328
+ "time_consumption": 8.225440979003906e-05
},
{
"args": [
"'property_cache_pickle'"
],
- "asctime": "2025-08-14 14:58:32,647",
- "created": 1755176312.6471782,
+ "asctime": "2025-08-15 19:13:27,546",
+ "created": 1755278007.5467744,
"exc_text": null,
"filename": "test_cached_data.py",
"funcName": "cached_data",
@@ -754,8 +754,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-08-14 14:58:32,646",
- "created": 1755176312.6463902,
+ "asctime": "2025-08-15 19:13:27,546",
+ "created": 1755278007.5460448,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_cache",
@@ -764,24 +764,24 @@
"lineno": 237,
"message": "Cache file does not exists (yet).",
"module": "__init__",
- "msecs": 646.0,
+ "msecs": 546.0,
"msg": "Cache file does not exists (yet).",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 103.578244,
+ "relativeCreated": 76.345559,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']"
],
- "asctime": "2025-08-14 14:58:32,646",
- "created": 1755176312.6464753,
+ "asctime": "2025-08-15 19:13:27,546",
+ "created": 1755278007.5461164,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_source",
@@ -790,24 +790,24 @@
"lineno": 246,
"message": "Loading all data from source - ['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']",
"module": "__init__",
- "msecs": 646.0,
+ "msecs": 546.0,
"msg": "Loading all data from source - %s",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 103.663292,
+ "relativeCreated": 76.416969,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.pkl"
],
- "asctime": "2025-08-14 14:58:32,647",
- "created": 1755176312.6470778,
+ "asctime": "2025-08-15 19:13:27,546",
+ "created": 1755278007.5466838,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
@@ -816,39 +816,39 @@
"lineno": 256,
"message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.pkl)",
"module": "__init__",
- "msecs": 647.0,
+ "msecs": 546.0,
"msg": "cache-file stored (%s)",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 104.266075,
+ "relativeCreated": 76.984563,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 647.0,
+ "msecs": 546.0,
"msg": "Prepare: First usage of %s with a class holding the data to be cached",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_cached_data.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 104.366349,
+ "relativeCreated": 77.07482,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.00010037422180175781
+ "time_consumption": 9.059906005859375e-05
},
{
"args": [
"'string'",
""
],
- "asctime": "2025-08-14 14:58:32,647",
- "created": 1755176312.647626,
+ "asctime": "2025-08-15 19:13:27,547",
+ "created": 1755278007.547153,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -862,8 +862,8 @@
"args": [
"/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.pkl"
],
- "asctime": "2025-08-14 14:58:32,647",
- "created": 1755176312.6473675,
+ "asctime": "2025-08-15 19:13:27,546",
+ "created": 1755278007.5469277,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_only",
@@ -872,24 +872,24 @@
"lineno": 226,
"message": "Loading properties from cache (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.pkl)",
"module": "__init__",
- "msecs": 647.0,
+ "msecs": 546.0,
"msg": "Loading properties from cache (%s)",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 104.555456,
+ "relativeCreated": 77.228144,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"str"
],
- "asctime": "2025-08-14 14:58:32,647",
- "created": 1755176312.6474466,
+ "asctime": "2025-08-15 19:13:27,546",
+ "created": 1755278007.5469983,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -898,16 +898,16 @@
"lineno": 157,
"message": "Providing property for 'str' from cache",
"module": "__init__",
- "msecs": 647.0,
+ "msecs": 546.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 104.634707,
+ "relativeCreated": 77.298755,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -916,8 +916,8 @@
"'string'",
""
],
- "asctime": "2025-08-14 14:58:32,647",
- "created": 1755176312.6475112,
+ "asctime": "2025-08-15 19:13:27,547",
+ "created": 1755278007.5470572,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -926,16 +926,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=str): 'string' ()",
"module": "test",
- "msecs": 647.0,
+ "msecs": 547.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 104.699339,
+ "relativeCreated": 77.357821,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -945,8 +945,8 @@
"'string'",
""
],
- "asctime": "2025-08-14 14:58:32,647",
- "created": 1755176312.6475692,
+ "asctime": "2025-08-15 19:13:27,547",
+ "created": 1755278007.5471077,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -955,39 +955,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=str): result = 'string' ()",
"module": "test",
- "msecs": 647.0,
+ "msecs": 547.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 104.75729,
+ "relativeCreated": 77.408131,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 647.0,
+ "msecs": 547.0,
"msg": "Data from cached instance with key=str is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 104.814078,
+ "relativeCreated": 77.453557,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 5.6743621826171875e-05
+ "time_consumption": 4.5299530029296875e-05
},
{
"args": [
"'unicode'",
""
],
- "asctime": "2025-08-14 14:58:32,647",
- "created": 1755176312.6478786,
+ "asctime": "2025-08-15 19:13:27,547",
+ "created": 1755278007.547367,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -1001,8 +1001,8 @@
"args": [
"unicode"
],
- "asctime": "2025-08-14 14:58:32,647",
- "created": 1755176312.647716,
+ "asctime": "2025-08-15 19:13:27,547",
+ "created": 1755278007.5472295,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -1011,16 +1011,16 @@
"lineno": 157,
"message": "Providing property for 'unicode' from cache",
"module": "__init__",
- "msecs": 647.0,
+ "msecs": 547.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 104.904138,
+ "relativeCreated": 77.529942,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -1029,8 +1029,8 @@
"'unicode'",
""
],
- "asctime": "2025-08-14 14:58:32,647",
- "created": 1755176312.6477778,
+ "asctime": "2025-08-15 19:13:27,547",
+ "created": 1755278007.547282,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -1039,16 +1039,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=unicode): 'unicode' ()",
"module": "test",
- "msecs": 647.0,
+ "msecs": 547.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 104.965901,
+ "relativeCreated": 77.582446,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -1058,8 +1058,8 @@
"'unicode'",
""
],
- "asctime": "2025-08-14 14:58:32,647",
- "created": 1755176312.6478293,
+ "asctime": "2025-08-15 19:13:27,547",
+ "created": 1755278007.5473251,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -1068,39 +1068,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=unicode): result = 'unicode' ()",
"module": "test",
- "msecs": 647.0,
+ "msecs": 547.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 105.017452,
+ "relativeCreated": 77.625782,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 647.0,
+ "msecs": 547.0,
"msg": "Data from cached instance with key=unicode is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 105.066661,
+ "relativeCreated": 77.667684,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 4.935264587402344e-05
+ "time_consumption": 4.1961669921875e-05
},
{
"args": [
"17",
""
],
- "asctime": "2025-08-14 14:58:32,648",
- "created": 1755176312.648133,
+ "asctime": "2025-08-15 19:13:27,547",
+ "created": 1755278007.547581,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -1114,8 +1114,8 @@
"args": [
"integer"
],
- "asctime": "2025-08-14 14:58:32,647",
- "created": 1755176312.6479664,
+ "asctime": "2025-08-15 19:13:27,547",
+ "created": 1755278007.547442,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -1124,16 +1124,16 @@
"lineno": 157,
"message": "Providing property for 'integer' from cache",
"module": "__init__",
- "msecs": 647.0,
+ "msecs": 547.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 105.154681,
+ "relativeCreated": 77.742431,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -1142,8 +1142,8 @@
"17",
""
],
- "asctime": "2025-08-14 14:58:32,648",
- "created": 1755176312.6480284,
+ "asctime": "2025-08-15 19:13:27,547",
+ "created": 1755278007.5474942,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -1152,16 +1152,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=integer): 17 ()",
"module": "test",
- "msecs": 648.0,
+ "msecs": 547.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 105.216438,
+ "relativeCreated": 77.794845,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -1171,8 +1171,8 @@
"17",
""
],
- "asctime": "2025-08-14 14:58:32,648",
- "created": 1755176312.6480794,
+ "asctime": "2025-08-15 19:13:27,547",
+ "created": 1755278007.5475364,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -1181,39 +1181,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=integer): result = 17 ()",
"module": "test",
- "msecs": 648.0,
+ "msecs": 547.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 105.267356,
+ "relativeCreated": 77.837099,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 648.0,
+ "msecs": 547.0,
"msg": "Data from cached instance with key=integer is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 105.321273,
+ "relativeCreated": 77.881503,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 5.364418029785156e-05
+ "time_consumption": 4.458427429199219e-05
},
{
"args": [
"3.14159",
""
],
- "asctime": "2025-08-14 14:58:32,648",
- "created": 1755176312.6483915,
+ "asctime": "2025-08-15 19:13:27,547",
+ "created": 1755278007.547794,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -1227,8 +1227,8 @@
"args": [
"float"
],
- "asctime": "2025-08-14 14:58:32,648",
- "created": 1755176312.648219,
+ "asctime": "2025-08-15 19:13:27,547",
+ "created": 1755278007.5476556,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -1237,16 +1237,16 @@
"lineno": 157,
"message": "Providing property for 'float' from cache",
"module": "__init__",
- "msecs": 648.0,
+ "msecs": 547.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 105.407331,
+ "relativeCreated": 77.95619,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -1255,8 +1255,8 @@
"3.14159",
""
],
- "asctime": "2025-08-14 14:58:32,648",
- "created": 1755176312.648284,
+ "asctime": "2025-08-15 19:13:27,547",
+ "created": 1755278007.54771,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -1265,16 +1265,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=float): 3.14159 ()",
"module": "test",
- "msecs": 648.0,
+ "msecs": 547.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 105.471943,
+ "relativeCreated": 78.010508,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -1284,8 +1284,8 @@
"3.14159",
""
],
- "asctime": "2025-08-14 14:58:32,648",
- "created": 1755176312.648336,
+ "asctime": "2025-08-15 19:13:27,547",
+ "created": 1755278007.5477529,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -1294,39 +1294,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=float): result = 3.14159 ()",
"module": "test",
- "msecs": 648.0,
+ "msecs": 547.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 105.524036,
+ "relativeCreated": 78.053452,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 648.0,
+ "msecs": 547.0,
"msg": "Data from cached instance with key=float is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 105.579517,
+ "relativeCreated": 78.094728,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 5.555152893066406e-05
+ "time_consumption": 4.124641418457031e-05
},
{
"args": [
"[1, 'two', '3', 4]",
""
],
- "asctime": "2025-08-14 14:58:32,648",
- "created": 1755176312.648677,
+ "asctime": "2025-08-15 19:13:27,548",
+ "created": 1755278007.5480332,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -1340,8 +1340,8 @@
"args": [
"list"
],
- "asctime": "2025-08-14 14:58:32,648",
- "created": 1755176312.648475,
+ "asctime": "2025-08-15 19:13:27,547",
+ "created": 1755278007.5478635,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -1350,16 +1350,16 @@
"lineno": 157,
"message": "Providing property for 'list' from cache",
"module": "__init__",
- "msecs": 648.0,
+ "msecs": 547.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 105.662959,
+ "relativeCreated": 78.164031,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -1368,8 +1368,8 @@
"[ 1, 'two', '3', 4 ]",
""
],
- "asctime": "2025-08-14 14:58:32,648",
- "created": 1755176312.6485438,
+ "asctime": "2025-08-15 19:13:27,547",
+ "created": 1755278007.5479245,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -1378,16 +1378,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=list): [ 1, 'two', '3', 4 ] ()",
"module": "test",
- "msecs": 648.0,
+ "msecs": 547.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 105.731867,
+ "relativeCreated": 78.225147,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -1397,8 +1397,8 @@
"[ 1, 'two', '3', 4 ]",
""
],
- "asctime": "2025-08-14 14:58:32,648",
- "created": 1755176312.648601,
+ "asctime": "2025-08-15 19:13:27,547",
+ "created": 1755278007.5479732,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -1407,39 +1407,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=list): result = [ 1, 'two', '3', 4 ] ()",
"module": "test",
- "msecs": 648.0,
+ "msecs": 547.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 105.789269,
+ "relativeCreated": 78.273698,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 648.0,
+ "msecs": 548.0,
"msg": "Data from cached instance with key=list is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 105.865143,
+ "relativeCreated": 78.333813,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 7.605552673339844e-05
+ "time_consumption": 6.008148193359375e-05
},
{
"args": [
"{'1': 1, '2': 'two', '3': '3', '4': 4}",
""
],
- "asctime": "2025-08-14 14:58:32,648",
- "created": 1755176312.6489651,
+ "asctime": "2025-08-15 19:13:27,548",
+ "created": 1755278007.548275,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -1453,8 +1453,8 @@
"args": [
"dict"
],
- "asctime": "2025-08-14 14:58:32,648",
- "created": 1755176312.6487644,
+ "asctime": "2025-08-15 19:13:27,548",
+ "created": 1755278007.5481083,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -1463,16 +1463,16 @@
"lineno": 157,
"message": "Providing property for 'dict' from cache",
"module": "__init__",
- "msecs": 648.0,
+ "msecs": 548.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 105.952492,
+ "relativeCreated": 78.408993,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -1481,8 +1481,8 @@
"{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
""
],
- "asctime": "2025-08-14 14:58:32,648",
- "created": 1755176312.648834,
+ "asctime": "2025-08-15 19:13:27,548",
+ "created": 1755278007.5481675,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -1491,16 +1491,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=dict): { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
"module": "test",
- "msecs": 648.0,
+ "msecs": 548.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 106.022151,
+ "relativeCreated": 78.467957,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -1510,8 +1510,8 @@
"{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
""
],
- "asctime": "2025-08-14 14:58:32,648",
- "created": 1755176312.648893,
+ "asctime": "2025-08-15 19:13:27,548",
+ "created": 1755278007.5482168,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -1520,39 +1520,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=dict): result = { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
"module": "test",
- "msecs": 648.0,
+ "msecs": 548.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 106.081368,
+ "relativeCreated": 78.517452,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 648.0,
+ "msecs": 548.0,
"msg": "Data from cached instance with key=dict is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 106.153255,
+ "relativeCreated": 78.575436,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 7.200241088867188e-05
+ "time_consumption": 5.817413330078125e-05
},
{
"args": [
"None",
""
],
- "asctime": "2025-08-14 14:58:32,649",
- "created": 1755176312.6492143,
+ "asctime": "2025-08-15 19:13:27,548",
+ "created": 1755278007.5484843,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -1566,8 +1566,8 @@
"args": [
"none"
],
- "asctime": "2025-08-14 14:58:32,649",
- "created": 1755176312.6490526,
+ "asctime": "2025-08-15 19:13:27,548",
+ "created": 1755278007.5483491,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -1576,16 +1576,16 @@
"lineno": 157,
"message": "Providing property for 'none' from cache",
"module": "__init__",
- "msecs": 649.0,
+ "msecs": 548.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 106.24068,
+ "relativeCreated": 78.649707,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -1594,8 +1594,8 @@
"None",
""
],
- "asctime": "2025-08-14 14:58:32,649",
- "created": 1755176312.6491137,
+ "asctime": "2025-08-15 19:13:27,548",
+ "created": 1755278007.548401,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -1604,16 +1604,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=none): None ()",
"module": "test",
- "msecs": 649.0,
+ "msecs": 548.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 106.301723,
+ "relativeCreated": 78.701825,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -1623,8 +1623,8 @@
"None",
""
],
- "asctime": "2025-08-14 14:58:32,649",
- "created": 1755176312.6491652,
+ "asctime": "2025-08-15 19:13:27,548",
+ "created": 1755278007.548443,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -1633,39 +1633,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=none): result = None ()",
"module": "test",
- "msecs": 649.0,
+ "msecs": 548.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 106.353161,
+ "relativeCreated": 78.743718,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 649.0,
+ "msecs": 548.0,
"msg": "Data from cached instance with key=none is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 106.402256,
+ "relativeCreated": 78.784871,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 4.9114227294921875e-05
+ "time_consumption": 4.124641418457031e-05
},
{
"args": [
"5",
""
],
- "asctime": "2025-08-14 14:58:32,649",
- "created": 1755176312.6494567,
+ "asctime": "2025-08-15 19:13:27,548",
+ "created": 1755278007.5486882,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -1679,8 +1679,8 @@
"args": [
"unknown_key"
],
- "asctime": "2025-08-14 14:58:32,649",
- "created": 1755176312.6493008,
+ "asctime": "2025-08-15 19:13:27,548",
+ "created": 1755278007.5485575,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -1689,16 +1689,16 @@
"lineno": 179,
"message": "Key 'unknown_key' is not in cached_keys. Uncached data will be returned.",
"module": "__init__",
- "msecs": 649.0,
+ "msecs": 548.0,
"msg": "Key '%s' is not in cached_keys. Uncached data will be returned.",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 106.488731,
+ "relativeCreated": 78.858087,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -1707,8 +1707,8 @@
"5",
""
],
- "asctime": "2025-08-14 14:58:32,649",
- "created": 1755176312.6493587,
+ "asctime": "2025-08-15 19:13:27,548",
+ "created": 1755278007.5486066,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -1717,16 +1717,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=unknown_key): 5 ()",
"module": "test",
- "msecs": 649.0,
+ "msecs": 548.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 106.546884,
+ "relativeCreated": 78.907269,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -1736,8 +1736,8 @@
"5",
""
],
- "asctime": "2025-08-14 14:58:32,649",
- "created": 1755176312.6494086,
+ "asctime": "2025-08-15 19:13:27,548",
+ "created": 1755278007.5486479,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -1746,43 +1746,43 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=unknown_key): result = 5 ()",
"module": "test",
- "msecs": 649.0,
+ "msecs": 548.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 106.596655,
+ "relativeCreated": 78.948656,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 649.0,
+ "msecs": 548.0,
"msg": "Data from cached instance with key=unknown_key is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 106.644826,
+ "relativeCreated": 78.988626,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 4.8160552978515625e-05
+ "time_consumption": 4.029273986816406e-05
}
],
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.003454923629760742,
- "time_finished": "2025-08-14 14:58:32,649",
- "time_start": "2025-08-14 14:58:32,646"
+ "time_consumption": 0.0029296875,
+ "time_finished": "2025-08-15 19:13:27,548",
+ "time_start": "2025-08-15 19:13:27,545"
},
"REQ-0002": {
"args": null,
- "asctime": "2025-08-14 14:58:38,672",
- "created": 1755176318.6723802,
+ "asctime": "2025-08-15 19:13:33,566",
+ "created": 1755278013.566852,
"exc_text": null,
"filename": "__init__.py",
"funcName": "testCase",
@@ -1792,20 +1792,20 @@
"message": "REQ-0002",
"module": "__init__",
"moduleLogger": [],
- "msecs": 672.0,
+ "msecs": 566.0,
"msg": "REQ-0002",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6129.568229,
+ "relativeCreated": 6097.152697,
"stack_info": null,
"taskName": null,
"testcaseLogger": [
{
"args": [],
- "asctime": "2025-08-14 14:58:38,673",
- "created": 1755176318.6730142,
+ "asctime": "2025-08-15 19:13:33,567",
+ "created": 1755278013.567412,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -1817,8 +1817,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-08-14 14:58:38,672",
- "created": 1755176318.672703,
+ "asctime": "2025-08-15 19:13:33,567",
+ "created": 1755278013.5671566,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -1827,39 +1827,39 @@
"lineno": 17,
"message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
"module": "test_helpers",
- "msecs": 672.0,
+ "msecs": 567.0,
"msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6129.890944,
+ "relativeCreated": 6097.45719,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 673.0,
+ "msecs": 567.0,
"msg": "Prepare: Cleanup before testcase execution",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6130.202383,
+ "relativeCreated": 6097.712543,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.00031113624572753906
+ "time_consumption": 0.00025534629821777344
},
{
"args": [
"'string'",
""
],
- "asctime": "2025-08-14 14:58:38,674",
- "created": 1755176318.6747823,
+ "asctime": "2025-08-15 19:13:33,568",
+ "created": 1755278013.5687883,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -1871,8 +1871,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-08-14 14:58:38,673",
- "created": 1755176318.6733284,
+ "asctime": "2025-08-15 19:13:33,567",
+ "created": 1755278013.5677135,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_cache",
@@ -1881,24 +1881,24 @@
"lineno": 237,
"message": "Cache file does not exists (yet).",
"module": "__init__",
- "msecs": 673.0,
+ "msecs": 567.0,
"msg": "Cache file does not exists (yet).",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6130.516598,
+ "relativeCreated": 6098.014049,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']"
],
- "asctime": "2025-08-14 14:58:38,673",
- "created": 1755176318.6735303,
+ "asctime": "2025-08-15 19:13:33,567",
+ "created": 1755278013.567913,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_source",
@@ -1907,24 +1907,24 @@
"lineno": 246,
"message": "Loading all data from source - ['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']",
"module": "__init__",
- "msecs": 673.0,
+ "msecs": 567.0,
"msg": "Loading all data from source - %s",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6130.718432,
+ "relativeCreated": 6098.213654,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"str"
],
- "asctime": "2025-08-14 14:58:38,674",
- "created": 1755176318.6742902,
+ "asctime": "2025-08-15 19:13:33,568",
+ "created": 1755278013.5685546,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -1933,16 +1933,16 @@
"lineno": 157,
"message": "Providing property for 'str' from cache",
"module": "__init__",
- "msecs": 674.0,
+ "msecs": 568.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6131.478198,
+ "relativeCreated": 6098.855312,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -1951,8 +1951,8 @@
"'string'",
""
],
- "asctime": "2025-08-14 14:58:38,674",
- "created": 1755176318.6744962,
+ "asctime": "2025-08-15 19:13:33,568",
+ "created": 1755278013.5686407,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -1961,16 +1961,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=str): 'string' ()",
"module": "test",
- "msecs": 674.0,
+ "msecs": 568.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6131.684362,
+ "relativeCreated": 6098.94131,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -1980,8 +1980,8 @@
"'string'",
""
],
- "asctime": "2025-08-14 14:58:38,674",
- "created": 1755176318.674642,
+ "asctime": "2025-08-15 19:13:33,568",
+ "created": 1755278013.568719,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -1990,39 +1990,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=str): result = 'string' ()",
"module": "test",
- "msecs": 674.0,
+ "msecs": 568.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6131.830256,
+ "relativeCreated": 6099.019505,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 674.0,
+ "msecs": 568.0,
"msg": "Data from cached instance with key=str is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6131.970368,
+ "relativeCreated": 6099.088835,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.00014019012451171875
+ "time_consumption": 6.937980651855469e-05
},
{
"args": [
"'unicode'",
""
],
- "asctime": "2025-08-14 14:58:38,675",
- "created": 1755176318.6754527,
+ "asctime": "2025-08-15 19:13:33,569",
+ "created": 1755278013.5691092,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -2036,8 +2036,8 @@
"args": [
"unicode"
],
- "asctime": "2025-08-14 14:58:38,675",
- "created": 1755176318.6750195,
+ "asctime": "2025-08-15 19:13:33,568",
+ "created": 1755278013.5689015,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -2046,16 +2046,16 @@
"lineno": 157,
"message": "Providing property for 'unicode' from cache",
"module": "__init__",
- "msecs": 675.0,
+ "msecs": 568.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6132.207525,
+ "relativeCreated": 6099.202147,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -2064,8 +2064,8 @@
"'unicode'",
""
],
- "asctime": "2025-08-14 14:58:38,675",
- "created": 1755176318.6751826,
+ "asctime": "2025-08-15 19:13:33,568",
+ "created": 1755278013.5689805,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -2074,16 +2074,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=unicode): 'unicode' ()",
"module": "test",
- "msecs": 675.0,
+ "msecs": 568.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6132.370663,
+ "relativeCreated": 6099.28112,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -2093,8 +2093,8 @@
"'unicode'",
""
],
- "asctime": "2025-08-14 14:58:38,675",
- "created": 1755176318.675318,
+ "asctime": "2025-08-15 19:13:33,569",
+ "created": 1755278013.5690455,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -2103,39 +2103,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=unicode): result = 'unicode' ()",
"module": "test",
- "msecs": 675.0,
+ "msecs": 569.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6132.506029,
+ "relativeCreated": 6099.346099,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 675.0,
+ "msecs": 569.0,
"msg": "Data from cached instance with key=unicode is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6132.64069,
+ "relativeCreated": 6099.409861,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.0001347064971923828
+ "time_consumption": 6.365776062011719e-05
},
{
"args": [
"17",
""
],
- "asctime": "2025-08-14 14:58:38,676",
- "created": 1755176318.6761112,
+ "asctime": "2025-08-15 19:13:33,569",
+ "created": 1755278013.5694377,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -2149,8 +2149,8 @@
"args": [
"integer"
],
- "asctime": "2025-08-14 14:58:38,675",
- "created": 1755176318.6756725,
+ "asctime": "2025-08-15 19:13:33,569",
+ "created": 1755278013.5692358,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -2159,16 +2159,16 @@
"lineno": 157,
"message": "Providing property for 'integer' from cache",
"module": "__init__",
- "msecs": 675.0,
+ "msecs": 569.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6132.86061,
+ "relativeCreated": 6099.536343,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -2177,8 +2177,8 @@
"17",
""
],
- "asctime": "2025-08-14 14:58:38,675",
- "created": 1755176318.6758318,
+ "asctime": "2025-08-15 19:13:33,569",
+ "created": 1755278013.5693097,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -2187,16 +2187,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=integer): 17 ()",
"module": "test",
- "msecs": 675.0,
+ "msecs": 569.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6133.019776,
+ "relativeCreated": 6099.610265,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -2206,8 +2206,8 @@
"17",
""
],
- "asctime": "2025-08-14 14:58:38,675",
- "created": 1755176318.6759782,
+ "asctime": "2025-08-15 19:13:33,569",
+ "created": 1755278013.569376,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -2216,39 +2216,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=integer): result = 17 ()",
"module": "test",
- "msecs": 675.0,
+ "msecs": 569.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6133.166378,
+ "relativeCreated": 6099.676504,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 676.0,
+ "msecs": 569.0,
"msg": "Data from cached instance with key=integer is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6133.299288,
+ "relativeCreated": 6099.738196,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.00013303756713867188
+ "time_consumption": 6.175041198730469e-05
},
{
"args": [
"3.14159",
""
],
- "asctime": "2025-08-14 14:58:38,676",
- "created": 1755176318.6767933,
+ "asctime": "2025-08-15 19:13:33,569",
+ "created": 1755278013.5697458,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -2262,8 +2262,8 @@
"args": [
"float"
],
- "asctime": "2025-08-14 14:58:38,676",
- "created": 1755176318.676339,
+ "asctime": "2025-08-15 19:13:33,569",
+ "created": 1755278013.569538,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -2272,16 +2272,16 @@
"lineno": 157,
"message": "Providing property for 'float' from cache",
"module": "__init__",
- "msecs": 676.0,
+ "msecs": 569.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6133.527114,
+ "relativeCreated": 6099.838605,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -2290,8 +2290,8 @@
"3.14159",
""
],
- "asctime": "2025-08-14 14:58:38,676",
- "created": 1755176318.6765196,
+ "asctime": "2025-08-15 19:13:33,569",
+ "created": 1755278013.5696213,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -2300,16 +2300,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=float): 3.14159 ()",
"module": "test",
- "msecs": 676.0,
+ "msecs": 569.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6133.707713,
+ "relativeCreated": 6099.921807,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -2319,8 +2319,8 @@
"3.14159",
""
],
- "asctime": "2025-08-14 14:58:38,676",
- "created": 1755176318.6766593,
+ "asctime": "2025-08-15 19:13:33,569",
+ "created": 1755278013.5696845,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -2329,39 +2329,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=float): result = 3.14159 ()",
"module": "test",
- "msecs": 676.0,
+ "msecs": 569.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6133.847457,
+ "relativeCreated": 6099.985081,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 676.0,
+ "msecs": 569.0,
"msg": "Data from cached instance with key=float is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6133.981339,
+ "relativeCreated": 6100.046251,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.00013399124145507812
+ "time_consumption": 6.127357482910156e-05
},
{
"args": [
"[1, 'two', '3', 4]",
""
],
- "asctime": "2025-08-14 14:58:38,677",
- "created": 1755176318.6775322,
+ "asctime": "2025-08-15 19:13:33,570",
+ "created": 1755278013.570081,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -2375,8 +2375,8 @@
"args": [
"list"
],
- "asctime": "2025-08-14 14:58:38,677",
- "created": 1755176318.677014,
+ "asctime": "2025-08-15 19:13:33,569",
+ "created": 1755278013.569846,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -2385,16 +2385,16 @@
"lineno": 157,
"message": "Providing property for 'list' from cache",
"module": "__init__",
- "msecs": 677.0,
+ "msecs": 569.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6134.202053,
+ "relativeCreated": 6100.146546,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -2403,8 +2403,8 @@
"[ 1, 'two', '3', 4 ]",
""
],
- "asctime": "2025-08-14 14:58:38,677",
- "created": 1755176318.6771905,
+ "asctime": "2025-08-15 19:13:33,569",
+ "created": 1755278013.5699303,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -2413,16 +2413,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=list): [ 1, 'two', '3', 4 ] ()",
"module": "test",
- "msecs": 677.0,
+ "msecs": 569.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6134.378773,
+ "relativeCreated": 6100.230868,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -2432,8 +2432,8 @@
"[ 1, 'two', '3', 4 ]",
""
],
- "asctime": "2025-08-14 14:58:38,677",
- "created": 1755176318.677341,
+ "asctime": "2025-08-15 19:13:33,569",
+ "created": 1755278013.5699997,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -2442,39 +2442,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=list): result = [ 1, 'two', '3', 4 ] ()",
"module": "test",
- "msecs": 677.0,
+ "msecs": 569.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6134.52893,
+ "relativeCreated": 6100.300342,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 677.0,
+ "msecs": 570.0,
"msg": "Data from cached instance with key=list is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6134.720327,
+ "relativeCreated": 6100.381726,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.00019121170043945312
+ "time_consumption": 8.130073547363281e-05
},
{
"args": [
"{'1': 1, '2': 'two', '3': '3', '4': 4}",
""
],
- "asctime": "2025-08-14 14:58:38,678",
- "created": 1755176318.6783807,
+ "asctime": "2025-08-15 19:13:33,570",
+ "created": 1755278013.5704281,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -2488,8 +2488,8 @@
"args": [
"dict"
],
- "asctime": "2025-08-14 14:58:38,677",
- "created": 1755176318.6777627,
+ "asctime": "2025-08-15 19:13:33,570",
+ "created": 1755278013.5701902,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -2498,16 +2498,16 @@
"lineno": 157,
"message": "Providing property for 'dict' from cache",
"module": "__init__",
- "msecs": 677.0,
+ "msecs": 570.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6134.950964,
+ "relativeCreated": 6100.490582,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -2516,8 +2516,8 @@
"{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
""
],
- "asctime": "2025-08-14 14:58:38,677",
- "created": 1755176318.67796,
+ "asctime": "2025-08-15 19:13:33,570",
+ "created": 1755278013.5702753,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -2526,16 +2526,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=dict): { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
"module": "test",
- "msecs": 677.0,
+ "msecs": 570.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6135.147984,
+ "relativeCreated": 6100.576046,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -2545,8 +2545,8 @@
"{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
""
],
- "asctime": "2025-08-14 14:58:38,678",
- "created": 1755176318.6781554,
+ "asctime": "2025-08-15 19:13:33,570",
+ "created": 1755278013.5703456,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -2555,39 +2555,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=dict): result = { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
"module": "test",
- "msecs": 678.0,
+ "msecs": 570.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6135.343677,
+ "relativeCreated": 6100.646339,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 678.0,
+ "msecs": 570.0,
"msg": "Data from cached instance with key=dict is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6135.569015,
+ "relativeCreated": 6100.728864,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.00022530555725097656
+ "time_consumption": 8.249282836914062e-05
},
{
"args": [
"None",
""
],
- "asctime": "2025-08-14 14:58:38,679",
- "created": 1755176318.6792486,
+ "asctime": "2025-08-15 19:13:33,570",
+ "created": 1755278013.5707536,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -2601,8 +2601,8 @@
"args": [
"none"
],
- "asctime": "2025-08-14 14:58:38,678",
- "created": 1755176318.678625,
+ "asctime": "2025-08-15 19:13:33,570",
+ "created": 1755278013.5705304,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -2611,16 +2611,16 @@
"lineno": 157,
"message": "Providing property for 'none' from cache",
"module": "__init__",
- "msecs": 678.0,
+ "msecs": 570.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6135.813148,
+ "relativeCreated": 6100.830903,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -2629,8 +2629,8 @@
"None",
""
],
- "asctime": "2025-08-14 14:58:38,678",
- "created": 1755176318.67879,
+ "asctime": "2025-08-15 19:13:33,570",
+ "created": 1755278013.57062,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -2639,16 +2639,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=none): None ()",
"module": "test",
- "msecs": 678.0,
+ "msecs": 570.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6135.97833,
+ "relativeCreated": 6100.920794,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -2658,8 +2658,8 @@
"None",
""
],
- "asctime": "2025-08-14 14:58:38,679",
- "created": 1755176318.6790044,
+ "asctime": "2025-08-15 19:13:33,570",
+ "created": 1755278013.570691,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -2668,39 +2668,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=none): result = None ()",
"module": "test",
- "msecs": 679.0,
+ "msecs": 570.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6136.19256,
+ "relativeCreated": 6100.991716,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 679.0,
+ "msecs": 570.0,
"msg": "Data from cached instance with key=none is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6136.436699,
+ "relativeCreated": 6101.054083,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.000244140625
+ "time_consumption": 6.246566772460938e-05
},
{
"args": [
"False",
""
],
- "asctime": "2025-08-14 14:58:38,680",
- "created": 1755176318.6801958,
+ "asctime": "2025-08-15 19:13:33,570",
+ "created": 1755278013.5709977,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -2716,8 +2716,8 @@
"False",
""
],
- "asctime": "2025-08-14 14:58:38,679",
- "created": 1755176318.6796892,
+ "asctime": "2025-08-15 19:13:33,570",
+ "created": 1755278013.5708675,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -2726,16 +2726,16 @@
"lineno": 22,
"message": "Result (The cache file (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_full_update_sleep.json) shall not exist): False ()",
"module": "test",
- "msecs": 679.0,
+ "msecs": 570.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6136.87736,
+ "relativeCreated": 6101.168064,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -2745,8 +2745,8 @@
"False",
""
],
- "asctime": "2025-08-14 14:58:38,679",
- "created": 1755176318.679943,
+ "asctime": "2025-08-15 19:13:33,570",
+ "created": 1755278013.570932,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -2755,43 +2755,43 @@
"lineno": 26,
"message": "Expectation (The cache file (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_full_update_sleep.json) shall not exist): result = False ()",
"module": "test",
- "msecs": 679.0,
+ "msecs": 570.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6137.131385,
+ "relativeCreated": 6101.232691,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 680.0,
+ "msecs": 570.0,
"msg": "The cache file (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_full_update_sleep.json) shall not exist is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6137.384008,
+ "relativeCreated": 6101.29844,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.00025272369384765625
+ "time_consumption": 6.580352783203125e-05
}
],
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.00781559944152832,
- "time_finished": "2025-08-14 14:58:38,680",
- "time_start": "2025-08-14 14:58:38,672"
+ "time_consumption": 0.004145622253417969,
+ "time_finished": "2025-08-15 19:13:33,570",
+ "time_start": "2025-08-15 19:13:33,566"
},
"REQ-0003": {
"args": null,
- "asctime": "2025-08-14 14:58:32,642",
- "created": 1755176312.6425395,
+ "asctime": "2025-08-15 19:13:27,542",
+ "created": 1755278007.5428247,
"exc_text": null,
"filename": "__init__.py",
"funcName": "testCase",
@@ -2801,20 +2801,20 @@
"message": "REQ-0003",
"module": "__init__",
"moduleLogger": [],
- "msecs": 642.0,
+ "msecs": 542.0,
"msg": "REQ-0003",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 99.727564,
+ "relativeCreated": 73.125365,
"stack_info": null,
"taskName": null,
"testcaseLogger": [
{
"args": [],
- "asctime": "2025-08-14 14:58:32,643",
- "created": 1755176312.6430807,
+ "asctime": "2025-08-15 19:13:27,543",
+ "created": 1755278007.543294,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -2826,8 +2826,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-08-14 14:58:32,642",
- "created": 1755176312.6429133,
+ "asctime": "2025-08-15 19:13:27,543",
+ "created": 1755278007.5431452,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -2836,38 +2836,38 @@
"lineno": 17,
"message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
"module": "test_helpers",
- "msecs": 642.0,
+ "msecs": 543.0,
"msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 100.101268,
+ "relativeCreated": 73.445789,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 643.0,
+ "msecs": 543.0,
"msg": "Prepare: Cleanup before testcase execution",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 100.268863,
+ "relativeCreated": 73.594528,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.00016736984252929688
+ "time_consumption": 0.000148773193359375
},
{
"args": [
"'property_cache_json'"
],
- "asctime": "2025-08-14 14:58:32,643",
- "created": 1755176312.6432078,
+ "asctime": "2025-08-15 19:13:27,543",
+ "created": 1755278007.5434012,
"exc_text": null,
"filename": "test_cached_data.py",
"funcName": "cached_data",
@@ -2877,16 +2877,16 @@
"message": "Prepare: First usage of 'property_cache_json' with a class holding the data to be cached",
"module": "test_cached_data",
"moduleLogger": [],
- "msecs": 643.0,
+ "msecs": 543.0,
"msg": "Prepare: First usage of %s with a class holding the data to be cached",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_cached_data.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 100.395816,
+ "relativeCreated": 73.701715,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
"time_consumption": 0.0
},
@@ -2895,8 +2895,8 @@
"'__string__'",
""
],
- "asctime": "2025-08-14 14:58:32,643",
- "created": 1755176312.643832,
+ "asctime": "2025-08-15 19:13:27,543",
+ "created": 1755278007.5439281,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -2908,8 +2908,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-08-14 14:58:32,643",
- "created": 1755176312.6434593,
+ "asctime": "2025-08-15 19:13:27,543",
+ "created": 1755278007.5436103,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_cache",
@@ -2918,24 +2918,24 @@
"lineno": 237,
"message": "Cache file does not exists (yet).",
"module": "__init__",
- "msecs": 643.0,
+ "msecs": 543.0,
"msg": "Cache file does not exists (yet).",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 100.647301,
+ "relativeCreated": 73.911001,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"str"
],
- "asctime": "2025-08-14 14:58:32,643",
- "created": 1755176312.643569,
+ "asctime": "2025-08-15 19:13:27,543",
+ "created": 1755278007.543706,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -2944,16 +2944,16 @@
"lineno": 163,
"message": "Loading property for key='str' from source instance",
"module": "__init__",
- "msecs": 643.0,
+ "msecs": 543.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 100.756864,
+ "relativeCreated": 74.006337,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -2962,8 +2962,8 @@
"'__string__'",
""
],
- "asctime": "2025-08-14 14:58:32,643",
- "created": 1755176312.6436756,
+ "asctime": "2025-08-15 19:13:27,543",
+ "created": 1755278007.5437975,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -2972,16 +2972,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=str): '__string__' ()",
"module": "test",
- "msecs": 643.0,
+ "msecs": 543.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 100.863694,
+ "relativeCreated": 74.09802,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -2991,8 +2991,8 @@
"'__string__'",
""
],
- "asctime": "2025-08-14 14:58:32,643",
- "created": 1755176312.6437435,
+ "asctime": "2025-08-15 19:13:27,543",
+ "created": 1755278007.5438538,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -3001,39 +3001,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=str): result = '__string__' ()",
"module": "test",
- "msecs": 643.0,
+ "msecs": 543.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 100.931557,
+ "relativeCreated": 74.154393,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 643.0,
+ "msecs": 543.0,
"msg": "Data from cached instance with key=str is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 101.02023,
+ "relativeCreated": 74.228577,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 8.845329284667969e-05
+ "time_consumption": 7.43865966796875e-05
},
{
"args": [
"'__unicode__'",
""
],
- "asctime": "2025-08-14 14:58:32,644",
- "created": 1755176312.6441035,
+ "asctime": "2025-08-15 19:13:27,544",
+ "created": 1755278007.5441587,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -3047,8 +3047,8 @@
"args": [
"unicode"
],
- "asctime": "2025-08-14 14:58:32,643",
- "created": 1755176312.643931,
+ "asctime": "2025-08-15 19:13:27,544",
+ "created": 1755278007.544011,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -3057,16 +3057,16 @@
"lineno": 163,
"message": "Loading property for key='unicode' from source instance",
"module": "__init__",
- "msecs": 643.0,
+ "msecs": 544.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 101.118907,
+ "relativeCreated": 74.311524,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -3075,8 +3075,8 @@
"'__unicode__'",
""
],
- "asctime": "2025-08-14 14:58:32,643",
- "created": 1755176312.6439965,
+ "asctime": "2025-08-15 19:13:27,544",
+ "created": 1755278007.5440667,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -3085,16 +3085,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=unicode): '__unicode__' ()",
"module": "test",
- "msecs": 643.0,
+ "msecs": 544.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 101.184416,
+ "relativeCreated": 74.367161,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -3104,8 +3104,8 @@
"'__unicode__'",
""
],
- "asctime": "2025-08-14 14:58:32,644",
- "created": 1755176312.6440492,
+ "asctime": "2025-08-15 19:13:27,544",
+ "created": 1755278007.5441127,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -3114,39 +3114,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=unicode): result = '__unicode__' ()",
"module": "test",
- "msecs": 644.0,
+ "msecs": 544.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 101.237289,
+ "relativeCreated": 74.413158,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 644.0,
+ "msecs": 544.0,
"msg": "Data from cached instance with key=unicode is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 101.291483,
+ "relativeCreated": 74.459372,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 5.435943603515625e-05
+ "time_consumption": 4.601478576660156e-05
},
{
"args": [
"34",
""
],
- "asctime": "2025-08-14 14:58:32,644",
- "created": 1755176312.6443906,
+ "asctime": "2025-08-15 19:13:27,544",
+ "created": 1755278007.5443697,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -3160,8 +3160,8 @@
"args": [
"integer"
],
- "asctime": "2025-08-14 14:58:32,644",
- "created": 1755176312.6441905,
+ "asctime": "2025-08-15 19:13:27,544",
+ "created": 1755278007.5442328,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -3170,16 +3170,16 @@
"lineno": 163,
"message": "Loading property for key='integer' from source instance",
"module": "__init__",
- "msecs": 644.0,
+ "msecs": 544.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 101.37863,
+ "relativeCreated": 74.533475,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -3188,8 +3188,8 @@
"34",
""
],
- "asctime": "2025-08-14 14:58:32,644",
- "created": 1755176312.644259,
+ "asctime": "2025-08-15 19:13:27,544",
+ "created": 1755278007.5442846,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -3198,16 +3198,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=integer): 34 ()",
"module": "test",
- "msecs": 644.0,
+ "msecs": 544.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 101.447143,
+ "relativeCreated": 74.585302,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -3217,8 +3217,8 @@
"34",
""
],
- "asctime": "2025-08-14 14:58:32,644",
- "created": 1755176312.6443365,
+ "asctime": "2025-08-15 19:13:27,544",
+ "created": 1755278007.5443275,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -3227,39 +3227,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=integer): result = 34 ()",
"module": "test",
- "msecs": 644.0,
+ "msecs": 544.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 101.52442,
+ "relativeCreated": 74.628112,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 644.0,
+ "msecs": 544.0,
"msg": "Data from cached instance with key=integer is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 101.57866,
+ "relativeCreated": 74.670381,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 5.412101745605469e-05
+ "time_consumption": 4.220008850097656e-05
},
{
"args": [
"2.71828",
""
],
- "asctime": "2025-08-14 14:58:32,644",
- "created": 1755176312.6446435,
+ "asctime": "2025-08-15 19:13:27,544",
+ "created": 1755278007.5445879,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -3273,8 +3273,8 @@
"args": [
"float"
],
- "asctime": "2025-08-14 14:58:32,644",
- "created": 1755176312.6444771,
+ "asctime": "2025-08-15 19:13:27,544",
+ "created": 1755278007.5444453,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -3283,16 +3283,16 @@
"lineno": 163,
"message": "Loading property for key='float' from source instance",
"module": "__init__",
- "msecs": 644.0,
+ "msecs": 544.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 101.665215,
+ "relativeCreated": 74.745858,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -3301,8 +3301,8 @@
"2.71828",
""
],
- "asctime": "2025-08-14 14:58:32,644",
- "created": 1755176312.6445408,
+ "asctime": "2025-08-15 19:13:27,544",
+ "created": 1755278007.5444994,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -3311,16 +3311,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=float): 2.71828 ()",
"module": "test",
- "msecs": 644.0,
+ "msecs": 544.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 101.728724,
+ "relativeCreated": 74.800028,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -3330,8 +3330,8 @@
"2.71828",
""
],
- "asctime": "2025-08-14 14:58:32,644",
- "created": 1755176312.644593,
+ "asctime": "2025-08-15 19:13:27,544",
+ "created": 1755278007.5445445,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -3340,39 +3340,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=float): result = 2.71828 ()",
"module": "test",
- "msecs": 644.0,
+ "msecs": 544.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 101.781104,
+ "relativeCreated": 74.84501,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 644.0,
+ "msecs": 544.0,
"msg": "Data from cached instance with key=float is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 101.831696,
+ "relativeCreated": 74.888363,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 5.054473876953125e-05
+ "time_consumption": 4.3392181396484375e-05
},
{
"args": [
"['one', 2, 3, '4']",
""
],
- "asctime": "2025-08-14 14:58:32,644",
- "created": 1755176312.6449707,
+ "asctime": "2025-08-15 19:13:27,544",
+ "created": 1755278007.5448623,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -3386,8 +3386,8 @@
"args": [
"list"
],
- "asctime": "2025-08-14 14:58:32,644",
- "created": 1755176312.6447272,
+ "asctime": "2025-08-15 19:13:27,544",
+ "created": 1755278007.544659,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -3396,16 +3396,16 @@
"lineno": 163,
"message": "Loading property for key='list' from source instance",
"module": "__init__",
- "msecs": 644.0,
+ "msecs": 544.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 101.915389,
+ "relativeCreated": 74.959499,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -3414,8 +3414,8 @@
"[ 'one', 2, 3, '4' ]",
""
],
- "asctime": "2025-08-14 14:58:32,644",
- "created": 1755176312.6448038,
+ "asctime": "2025-08-15 19:13:27,544",
+ "created": 1755278007.5447218,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -3424,16 +3424,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=list): [ 'one', 2, 3, '4' ] ()",
"module": "test",
- "msecs": 644.0,
+ "msecs": 544.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 101.992013,
+ "relativeCreated": 75.022558,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -3443,8 +3443,8 @@
"[ 'one', 2, 3, '4' ]",
""
],
- "asctime": "2025-08-14 14:58:32,644",
- "created": 1755176312.6448686,
+ "asctime": "2025-08-15 19:13:27,544",
+ "created": 1755278007.5447757,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -3453,39 +3453,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=list): result = [ 'one', 2, 3, '4' ] ()",
"module": "test",
- "msecs": 644.0,
+ "msecs": 544.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 102.056576,
+ "relativeCreated": 75.076367,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 644.0,
+ "msecs": 544.0,
"msg": "Data from cached instance with key=list is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 102.158762,
+ "relativeCreated": 75.162933,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.00010204315185546875
+ "time_consumption": 8.654594421386719e-05
},
{
"args": [
"{'1': '1', '2': 2, '3': 'three', '4': '4'}",
""
],
- "asctime": "2025-08-14 14:58:32,645",
- "created": 1755176312.6452956,
+ "asctime": "2025-08-15 19:13:27,545",
+ "created": 1755278007.5451367,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -3499,8 +3499,8 @@
"args": [
"dict"
],
- "asctime": "2025-08-14 14:58:32,645",
- "created": 1755176312.6450791,
+ "asctime": "2025-08-15 19:13:27,544",
+ "created": 1755278007.544943,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -3509,16 +3509,16 @@
"lineno": 163,
"message": "Loading property for key='dict' from source instance",
"module": "__init__",
- "msecs": 645.0,
+ "msecs": 544.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 102.267186,
+ "relativeCreated": 75.243772,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -3527,8 +3527,8 @@
"{ '1': '1', '2': 2, '3': 'three', '4': '4' }",
""
],
- "asctime": "2025-08-14 14:58:32,645",
- "created": 1755176312.6451492,
+ "asctime": "2025-08-15 19:13:27,545",
+ "created": 1755278007.5450048,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -3537,16 +3537,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=dict): { '1': '1', '2': 2, '3': 'three', '4': '4' } ()",
"module": "test",
- "msecs": 645.0,
+ "msecs": 545.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 102.337404,
+ "relativeCreated": 75.305339,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -3556,8 +3556,8 @@
"{ '1': '1', '2': 2, '3': 'three', '4': '4' }",
""
],
- "asctime": "2025-08-14 14:58:32,645",
- "created": 1755176312.6452081,
+ "asctime": "2025-08-15 19:13:27,545",
+ "created": 1755278007.5450575,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -3566,39 +3566,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=dict): result = { '1': '1', '2': 2, '3': 'three', '4': '4' } ()",
"module": "test",
- "msecs": 645.0,
+ "msecs": 545.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 102.396199,
+ "relativeCreated": 75.358233,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 645.0,
+ "msecs": 545.0,
"msg": "Data from cached instance with key=dict is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 102.483669,
+ "relativeCreated": 75.437239,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 8.749961853027344e-05
+ "time_consumption": 7.915496826171875e-05
},
{
"args": [
"'not None'",
""
],
- "asctime": "2025-08-14 14:58:32,645",
- "created": 1755176312.6455429,
+ "asctime": "2025-08-15 19:13:27,545",
+ "created": 1755278007.5453532,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -3612,8 +3612,8 @@
"args": [
"none"
],
- "asctime": "2025-08-14 14:58:32,645",
- "created": 1755176312.6453822,
+ "asctime": "2025-08-15 19:13:27,545",
+ "created": 1755278007.5452127,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -3622,16 +3622,16 @@
"lineno": 163,
"message": "Loading property for key='none' from source instance",
"module": "__init__",
- "msecs": 645.0,
+ "msecs": 545.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 102.570161,
+ "relativeCreated": 75.513305,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -3640,8 +3640,8 @@
"'not None'",
""
],
- "asctime": "2025-08-14 14:58:32,645",
- "created": 1755176312.6454442,
+ "asctime": "2025-08-15 19:13:27,545",
+ "created": 1755278007.5452638,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -3650,16 +3650,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=none): 'not None' ()",
"module": "test",
- "msecs": 645.0,
+ "msecs": 545.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 102.632115,
+ "relativeCreated": 75.564533,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -3669,8 +3669,8 @@
"'not None'",
""
],
- "asctime": "2025-08-14 14:58:32,645",
- "created": 1755176312.6454945,
+ "asctime": "2025-08-15 19:13:27,545",
+ "created": 1755278007.5453064,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -3679,39 +3679,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=none): result = 'not None' ()",
"module": "test",
- "msecs": 645.0,
+ "msecs": 545.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 102.682677,
+ "relativeCreated": 75.607101,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 645.0,
+ "msecs": 545.0,
"msg": "Data from cached instance with key=none is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 102.73099,
+ "relativeCreated": 75.653846,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 4.839897155761719e-05
+ "time_consumption": 4.673004150390625e-05
},
{
"args": [
"5",
""
],
- "asctime": "2025-08-14 14:58:32,645",
- "created": 1755176312.6457808,
+ "asctime": "2025-08-15 19:13:27,545",
+ "created": 1755278007.5455637,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -3725,8 +3725,8 @@
"args": [
"unknown_key"
],
- "asctime": "2025-08-14 14:58:32,645",
- "created": 1755176312.645629,
+ "asctime": "2025-08-15 19:13:27,545",
+ "created": 1755278007.5454292,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -3735,16 +3735,16 @@
"lineno": 179,
"message": "Key 'unknown_key' is not in cached_keys. Uncached data will be returned.",
"module": "__init__",
- "msecs": 645.0,
+ "msecs": 545.0,
"msg": "Key '%s' is not in cached_keys. Uncached data will be returned.",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 102.816943,
+ "relativeCreated": 75.729899,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -3753,8 +3753,8 @@
"5",
""
],
- "asctime": "2025-08-14 14:58:32,645",
- "created": 1755176312.645686,
+ "asctime": "2025-08-15 19:13:27,545",
+ "created": 1755278007.5454798,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -3763,16 +3763,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=unknown_key): 5 ()",
"module": "test",
- "msecs": 645.0,
+ "msecs": 545.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 102.874012,
+ "relativeCreated": 75.780179,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -3782,8 +3782,8 @@
"5",
""
],
- "asctime": "2025-08-14 14:58:32,645",
- "created": 1755176312.645734,
+ "asctime": "2025-08-15 19:13:27,545",
+ "created": 1755278007.5455222,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -3792,43 +3792,43 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=unknown_key): result = 5 ()",
"module": "test",
- "msecs": 645.0,
+ "msecs": 545.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 102.922112,
+ "relativeCreated": 75.822721,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 645.0,
+ "msecs": 545.0,
"msg": "Data from cached instance with key=unknown_key is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 102.968738,
+ "relativeCreated": 75.864128,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 4.673004150390625e-05
+ "time_consumption": 4.1484832763671875e-05
}
],
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.003241300582885742,
- "time_finished": "2025-08-14 14:58:32,645",
- "time_start": "2025-08-14 14:58:32,642"
+ "time_consumption": 0.00273895263671875,
+ "time_finished": "2025-08-15 19:13:27,545",
+ "time_start": "2025-08-15 19:13:27,542"
},
"REQ-0004": {
"args": null,
- "asctime": "2025-08-14 14:58:32,662",
- "created": 1755176312.6625688,
+ "asctime": "2025-08-15 19:13:27,558",
+ "created": 1755278007.5585122,
"exc_text": null,
"filename": "__init__.py",
"funcName": "testCase",
@@ -3838,20 +3838,20 @@
"message": "REQ-0004",
"module": "__init__",
"moduleLogger": [],
- "msecs": 662.0,
+ "msecs": 558.0,
"msg": "REQ-0004",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 119.756687,
+ "relativeCreated": 88.812619,
"stack_info": null,
"taskName": null,
"testcaseLogger": [
{
"args": [],
- "asctime": "2025-08-14 14:58:32,662",
- "created": 1755176312.6628714,
+ "asctime": "2025-08-15 19:13:27,558",
+ "created": 1755278007.558699,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -3863,8 +3863,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-08-14 14:58:32,662",
- "created": 1755176312.662775,
+ "asctime": "2025-08-15 19:13:27,558",
+ "created": 1755278007.5586486,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -3873,52 +3873,52 @@
"lineno": 20,
"message": "Cache file does not exist on filesystem.",
"module": "test_helpers",
- "msecs": 662.0,
+ "msecs": 558.0,
"msg": "Cache file does not exist on filesystem.",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 119.963247,
+ "relativeCreated": 88.94929,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 662.0,
+ "msecs": 558.0,
"msg": "Prepare: Cleanup before testcase execution",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 120.059292,
+ "relativeCreated": 88.999516,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 9.632110595703125e-05
+ "time_consumption": 5.030632019042969e-05
},
{
"args": [
- "6.007658243179321",
+ "6.006384372711182",
""
],
- "asctime": "2025-08-14 14:58:38,671",
- "created": 1755176318.6712148,
+ "asctime": "2025-08-15 19:13:33,565",
+ "created": 1755278013.5657017,
"exc_text": null,
"filename": "test.py",
"funcName": "greater_chk",
"levelname": "INFO",
"levelno": 20,
"lineno": 230,
- "message": "Consumed time for full_update is greater expectation (Content 6.007658243179321 and Type is ).",
+ "message": "Consumed time for full_update is greater expectation (Content 6.006384372711182 and Type is ).",
"module": "test",
"moduleLogger": [
{
"args": [],
- "asctime": "2025-08-14 14:58:32,663",
- "created": 1755176312.6630664,
+ "asctime": "2025-08-15 19:13:27,558",
+ "created": 1755278007.5587976,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_cache",
@@ -3927,24 +3927,24 @@
"lineno": 237,
"message": "Cache file does not exists (yet).",
"module": "__init__",
- "msecs": 663.0,
+ "msecs": 558.0,
"msg": "Cache file does not exists (yet).",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 120.254452,
+ "relativeCreated": 89.098151,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']"
],
- "asctime": "2025-08-14 14:58:32,663",
- "created": 1755176312.663167,
+ "asctime": "2025-08-15 19:13:27,558",
+ "created": 1755278007.5588615,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_source",
@@ -3953,24 +3953,24 @@
"lineno": 246,
"message": "Loading all data from source - ['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']",
"module": "__init__",
- "msecs": 663.0,
+ "msecs": 558.0,
"msg": "Loading all data from source - %s",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 120.355178,
+ "relativeCreated": 89.162091,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']"
],
- "asctime": "2025-08-14 14:58:32,663",
- "created": 1755176312.6636105,
+ "asctime": "2025-08-15 19:13:27,559",
+ "created": 1755278007.5592785,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_source",
@@ -3979,24 +3979,24 @@
"lineno": 246,
"message": "Loading all data from source - ['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']",
"module": "__init__",
- "msecs": 663.0,
+ "msecs": 559.0,
"msg": "Loading all data from source - %s",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 120.798356,
+ "relativeCreated": 89.579253,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_full_update_sleep.json"
],
- "asctime": "2025-08-14 14:58:38,670",
- "created": 1755176318.67032,
+ "asctime": "2025-08-15 19:13:33,564",
+ "created": 1755278013.56479,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
@@ -4005,44 +4005,44 @@
"lineno": 301,
"message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_full_update_sleep.json)",
"module": "__init__",
- "msecs": 670.0,
+ "msecs": 564.0,
"msg": "cache-file stored (%s)",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6127.508348,
+ "relativeCreated": 6095.090687,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"Consumed time for full_update",
- "6.007658243179321",
+ "6.006384372711182",
""
],
- "asctime": "2025-08-14 14:58:38,670",
- "created": 1755176318.6707983,
+ "asctime": "2025-08-15 19:13:33,565",
+ "created": 1755278013.5652878,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 22,
- "message": "Result (Consumed time for full_update): 6.007658243179321 ()",
+ "message": "Result (Consumed time for full_update): 6.006384372711182 ()",
"module": "test",
- "msecs": 670.0,
+ "msecs": 565.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6127.98652,
+ "relativeCreated": 6095.588615,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -4052,8 +4052,8 @@
"6.0",
""
],
- "asctime": "2025-08-14 14:58:38,670",
- "created": 1755176318.6709988,
+ "asctime": "2025-08-15 19:13:33,565",
+ "created": 1755278013.565489,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -4062,74 +4062,74 @@
"lineno": 26,
"message": "Expectation (Consumed time for full_update): result > 6.0 ()",
"module": "test",
- "msecs": 670.0,
+ "msecs": 565.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6128.186873,
+ "relativeCreated": 6095.78984,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 671.0,
+ "msecs": 565.0,
"msg": "Consumed time for full_update is greater expectation (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6128.402991,
+ "relativeCreated": 6096.00231,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.00021600723266601562
+ "time_consumption": 0.00021266937255859375
},
{
"args": [
- "6.007658243179321",
+ "6.006384372711182",
""
],
- "asctime": "2025-08-14 14:58:38,671",
- "created": 1755176318.671857,
+ "asctime": "2025-08-15 19:13:33,566",
+ "created": 1755278013.5663404,
"exc_text": null,
"filename": "test.py",
"funcName": "less_chk",
"levelname": "INFO",
"levelno": 20,
"lineno": 207,
- "message": "Consumed time for full_update is greater expectation (Content 6.007658243179321 and Type is ).",
+ "message": "Consumed time for full_update is greater expectation (Content 6.006384372711182 and Type is ).",
"module": "test",
"moduleLogger": [
{
"args": [
"Consumed time for full_update",
- "6.007658243179321",
+ "6.006384372711182",
""
],
- "asctime": "2025-08-14 14:58:38,671",
- "created": 1755176318.6715243,
+ "asctime": "2025-08-15 19:13:33,566",
+ "created": 1755278013.5660114,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 22,
- "message": "Result (Consumed time for full_update): 6.007658243179321 ()",
+ "message": "Result (Consumed time for full_update): 6.006384372711182 ()",
"module": "test",
- "msecs": 671.0,
+ "msecs": 566.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6128.712475,
+ "relativeCreated": 6096.311963,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -4139,8 +4139,8 @@
"6.5",
""
],
- "asctime": "2025-08-14 14:58:38,671",
- "created": 1755176318.671684,
+ "asctime": "2025-08-15 19:13:33,566",
+ "created": 1755278013.5661695,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -4149,43 +4149,43 @@
"lineno": 26,
"message": "Expectation (Consumed time for full_update): result < 6.5 ()",
"module": "test",
- "msecs": 671.0,
+ "msecs": 566.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6128.872209,
+ "relativeCreated": 6096.470152,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 671.0,
+ "msecs": 566.0,
"msg": "Consumed time for full_update is greater expectation (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6129.045149,
+ "relativeCreated": 6096.641082,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.00017309188842773438
+ "time_consumption": 0.0001709461212158203
}
],
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 6.009288311004639,
- "time_finished": "2025-08-14 14:58:38,671",
- "time_start": "2025-08-14 14:58:32,662"
+ "time_consumption": 6.007828235626221,
+ "time_finished": "2025-08-15 19:13:33,566",
+ "time_start": "2025-08-15 19:13:27,558"
},
"REQ-0005": {
"args": null,
- "asctime": "2025-08-14 14:58:32,649",
- "created": 1755176312.6496592,
+ "asctime": "2025-08-15 19:13:27,548",
+ "created": 1755278007.5488384,
"exc_text": null,
"filename": "__init__.py",
"funcName": "testCase",
@@ -4195,20 +4195,20 @@
"message": "REQ-0005",
"module": "__init__",
"moduleLogger": [],
- "msecs": 649.0,
+ "msecs": 548.0,
"msg": "REQ-0005",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 106.847221,
+ "relativeCreated": 79.139029,
"stack_info": null,
"taskName": null,
"testcaseLogger": [
{
"args": [],
- "asctime": "2025-08-14 14:58:32,649",
- "created": 1755176312.6498413,
+ "asctime": "2025-08-15 19:13:27,548",
+ "created": 1755278007.5489795,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -4220,8 +4220,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-08-14 14:58:32,649",
- "created": 1755176312.6497867,
+ "asctime": "2025-08-15 19:13:27,548",
+ "created": 1755278007.548935,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -4230,38 +4230,38 @@
"lineno": 20,
"message": "Cache file does not exist on filesystem.",
"module": "test_helpers",
- "msecs": 649.0,
+ "msecs": 548.0,
"msg": "Cache file does not exist on filesystem.",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 106.974803,
+ "relativeCreated": 79.235485,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 649.0,
+ "msecs": 548.0,
"msg": "Prepare: Cleanup before testcase execution",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 107.029548,
+ "relativeCreated": 79.280121,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 5.459785461425781e-05
+ "time_consumption": 4.458427429199219e-05
},
{
"args": [
"'property_cache_json'"
],
- "asctime": "2025-08-14 14:58:32,653",
- "created": 1755176312.6538973,
+ "asctime": "2025-08-15 19:13:27,552",
+ "created": 1755278007.552053,
"exc_text": null,
"filename": "test_cached_data.py",
"funcName": "cached_data",
@@ -4273,8 +4273,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-08-14 14:58:32,649",
- "created": 1755176312.6499484,
+ "asctime": "2025-08-15 19:13:27,549",
+ "created": 1755278007.5490694,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_cache",
@@ -4283,24 +4283,24 @@
"lineno": 237,
"message": "Cache file does not exists (yet).",
"module": "__init__",
- "msecs": 649.0,
+ "msecs": 549.0,
"msg": "Cache file does not exists (yet).",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 107.136512,
+ "relativeCreated": 79.369985,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"str"
],
- "asctime": "2025-08-14 14:58:32,650",
- "created": 1755176312.6500232,
+ "asctime": "2025-08-15 19:13:27,549",
+ "created": 1755278007.5491316,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -4309,52 +4309,52 @@
"lineno": 163,
"message": "Loading property for key='str' from source instance",
"module": "__init__",
- "msecs": 650.0,
+ "msecs": 549.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 107.211308,
+ "relativeCreated": 79.432152,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"str",
"string",
- 1755176312
+ 1755278007
],
- "asctime": "2025-08-14 14:58:32,650",
- "created": 1755176312.6500807,
+ "asctime": "2025-08-15 19:13:27,549",
+ "created": 1755278007.549179,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 167,
- "message": "Adding key=str, value=string with timestamp=1755176312 to chache",
+ "message": "Adding key=str, value=string with timestamp=1755278007 to chache",
"module": "__init__",
- "msecs": 650.0,
+ "msecs": 549.0,
"msg": "Adding key=%s, value=%s with timestamp=%d to chache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 107.268784,
+ "relativeCreated": 79.479724,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
],
- "asctime": "2025-08-14 14:58:32,650",
- "created": 1755176312.650496,
+ "asctime": "2025-08-15 19:13:27,549",
+ "created": 1755278007.5494845,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
@@ -4363,24 +4363,24 @@
"lineno": 301,
"message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
"module": "__init__",
- "msecs": 650.0,
+ "msecs": 549.0,
"msg": "cache-file stored (%s)",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 107.684094,
+ "relativeCreated": 79.785257,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"integer"
],
- "asctime": "2025-08-14 14:58:32,650",
- "created": 1755176312.650626,
+ "asctime": "2025-08-15 19:13:27,549",
+ "created": 1755278007.5495806,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -4389,52 +4389,52 @@
"lineno": 163,
"message": "Loading property for key='integer' from source instance",
"module": "__init__",
- "msecs": 650.0,
+ "msecs": 549.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 107.81403,
+ "relativeCreated": 79.881123,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"integer",
17,
- 1755176312
+ 1755278007
],
- "asctime": "2025-08-14 14:58:32,650",
- "created": 1755176312.6506925,
+ "asctime": "2025-08-15 19:13:27,549",
+ "created": 1755278007.5496345,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 167,
- "message": "Adding key=integer, value=17 with timestamp=1755176312 to chache",
+ "message": "Adding key=integer, value=17 with timestamp=1755278007 to chache",
"module": "__init__",
- "msecs": 650.0,
+ "msecs": 549.0,
"msg": "Adding key=%s, value=%s with timestamp=%d to chache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 107.880555,
+ "relativeCreated": 79.935222,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
],
- "asctime": "2025-08-14 14:58:32,650",
- "created": 1755176312.6509337,
+ "asctime": "2025-08-15 19:13:27,549",
+ "created": 1755278007.5498266,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
@@ -4443,24 +4443,24 @@
"lineno": 301,
"message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
"module": "__init__",
- "msecs": 650.0,
+ "msecs": 549.0,
"msg": "cache-file stored (%s)",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 108.121746,
+ "relativeCreated": 80.127218,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"list"
],
- "asctime": "2025-08-14 14:58:32,651",
- "created": 1755176312.651078,
+ "asctime": "2025-08-15 19:13:27,549",
+ "created": 1755278007.549952,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -4469,16 +4469,16 @@
"lineno": 163,
"message": "Loading property for key='list' from source instance",
"module": "__init__",
- "msecs": 651.0,
+ "msecs": 549.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 108.265902,
+ "relativeCreated": 80.252677,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -4490,36 +4490,36 @@
"3",
4
],
- 1755176312
+ 1755278007
],
- "asctime": "2025-08-14 14:58:32,651",
- "created": 1755176312.6511426,
+ "asctime": "2025-08-15 19:13:27,550",
+ "created": 1755278007.5500045,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 167,
- "message": "Adding key=list, value=[1, 'two', '3', 4] with timestamp=1755176312 to chache",
+ "message": "Adding key=list, value=[1, 'two', '3', 4] with timestamp=1755278007 to chache",
"module": "__init__",
- "msecs": 651.0,
+ "msecs": 550.0,
"msg": "Adding key=%s, value=%s with timestamp=%d to chache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 108.330685,
+ "relativeCreated": 80.30513,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
],
- "asctime": "2025-08-14 14:58:32,652",
- "created": 1755176312.6521978,
+ "asctime": "2025-08-15 19:13:27,551",
+ "created": 1755278007.5510385,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
@@ -4528,24 +4528,24 @@
"lineno": 301,
"message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
"module": "__init__",
- "msecs": 652.0,
+ "msecs": 551.0,
"msg": "cache-file stored (%s)",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 109.38607,
+ "relativeCreated": 81.339088,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"dict"
],
- "asctime": "2025-08-14 14:58:32,652",
- "created": 1755176312.652368,
+ "asctime": "2025-08-15 19:13:27,551",
+ "created": 1755278007.5511563,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -4554,16 +4554,16 @@
"lineno": 163,
"message": "Loading property for key='dict' from source instance",
"module": "__init__",
- "msecs": 652.0,
+ "msecs": 551.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 109.556221,
+ "relativeCreated": 81.45681,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -4575,36 +4575,36 @@
"3": "3",
"4": 4
},
- 1755176312
+ 1755278007
],
- "asctime": "2025-08-14 14:58:32,652",
- "created": 1755176312.6524425,
+ "asctime": "2025-08-15 19:13:27,551",
+ "created": 1755278007.5512106,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 167,
- "message": "Adding key=dict, value={'1': 1, '2': 'two', '3': '3', '4': 4} with timestamp=1755176312 to chache",
+ "message": "Adding key=dict, value={'1': 1, '2': 'two', '3': '3', '4': 4} with timestamp=1755278007 to chache",
"module": "__init__",
- "msecs": 652.0,
+ "msecs": 551.0,
"msg": "Adding key=%s, value=%s with timestamp=%d to chache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 109.630581,
+ "relativeCreated": 81.511279,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
],
- "asctime": "2025-08-14 14:58:32,652",
- "created": 1755176312.6528673,
+ "asctime": "2025-08-15 19:13:27,551",
+ "created": 1755278007.5514953,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
@@ -4613,24 +4613,24 @@
"lineno": 301,
"message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
"module": "__init__",
- "msecs": 652.0,
+ "msecs": 551.0,
"msg": "cache-file stored (%s)",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 110.05533,
+ "relativeCreated": 81.796073,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"none"
],
- "asctime": "2025-08-14 14:58:32,653",
- "created": 1755176312.6530616,
+ "asctime": "2025-08-15 19:13:27,551",
+ "created": 1755278007.551611,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -4639,52 +4639,52 @@
"lineno": 163,
"message": "Loading property for key='none' from source instance",
"module": "__init__",
- "msecs": 653.0,
+ "msecs": 551.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 110.249849,
+ "relativeCreated": 81.911523,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"none",
null,
- 1755176312
+ 1755278007
],
- "asctime": "2025-08-14 14:58:32,653",
- "created": 1755176312.6531684,
+ "asctime": "2025-08-15 19:13:27,551",
+ "created": 1755278007.5516658,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 167,
- "message": "Adding key=none, value=None with timestamp=1755176312 to chache",
+ "message": "Adding key=none, value=None with timestamp=1755278007 to chache",
"module": "__init__",
- "msecs": 653.0,
+ "msecs": 551.0,
"msg": "Adding key=%s, value=%s with timestamp=%d to chache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 110.356448,
+ "relativeCreated": 81.966166,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
],
- "asctime": "2025-08-14 14:58:32,653",
- "created": 1755176312.6537185,
+ "asctime": "2025-08-15 19:13:27,551",
+ "created": 1755278007.5519416,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
@@ -4693,39 +4693,39 @@
"lineno": 301,
"message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
"module": "__init__",
- "msecs": 653.0,
+ "msecs": 551.0,
"msg": "cache-file stored (%s)",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 110.90663,
+ "relativeCreated": 82.242354,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 653.0,
+ "msecs": 552.0,
"msg": "Prepare: First usage of %s with a class holding the data to be cached",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_cached_data.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 111.085354,
+ "relativeCreated": 82.353591,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.00017881393432617188
+ "time_consumption": 0.00011134147644042969
},
{
"args": [
"'string'",
""
],
- "asctime": "2025-08-14 14:58:32,654",
- "created": 1755176312.6545851,
+ "asctime": "2025-08-15 19:13:27,552",
+ "created": 1755278007.552488,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -4739,8 +4739,8 @@
"args": [
"/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
],
- "asctime": "2025-08-14 14:58:32,654",
- "created": 1755176312.6541836,
+ "asctime": "2025-08-15 19:13:27,552",
+ "created": 1755278007.5522575,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_only",
@@ -4749,24 +4749,24 @@
"lineno": 296,
"message": "Loading properties from cache (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
"module": "__init__",
- "msecs": 654.0,
+ "msecs": 552.0,
"msg": "Loading properties from cache (%s)",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 111.371735,
+ "relativeCreated": 82.558151,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"str"
],
- "asctime": "2025-08-14 14:58:32,654",
- "created": 1755176312.6543214,
+ "asctime": "2025-08-15 19:13:27,552",
+ "created": 1755278007.5523326,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -4775,16 +4775,16 @@
"lineno": 157,
"message": "Providing property for 'str' from cache",
"module": "__init__",
- "msecs": 654.0,
+ "msecs": 552.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 111.50958,
+ "relativeCreated": 82.633276,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -4793,8 +4793,8 @@
"'string'",
""
],
- "asctime": "2025-08-14 14:58:32,654",
- "created": 1755176312.6544194,
+ "asctime": "2025-08-15 19:13:27,552",
+ "created": 1755278007.5523915,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -4803,16 +4803,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=str): 'string' ()",
"module": "test",
- "msecs": 654.0,
+ "msecs": 552.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 111.607644,
+ "relativeCreated": 82.69193,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -4822,8 +4822,8 @@
"'string'",
""
],
- "asctime": "2025-08-14 14:58:32,654",
- "created": 1755176312.6545172,
+ "asctime": "2025-08-15 19:13:27,552",
+ "created": 1755278007.5524397,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -4832,39 +4832,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=str): result = 'string' ()",
"module": "test",
- "msecs": 654.0,
+ "msecs": 552.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 111.705396,
+ "relativeCreated": 82.740322,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 654.0,
+ "msecs": 552.0,
"msg": "Data from cached instance with key=str is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 111.773263,
+ "relativeCreated": 82.788796,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 6.794929504394531e-05
+ "time_consumption": 4.839897155761719e-05
},
{
"args": [
"'__unicode__'",
""
],
- "asctime": "2025-08-14 14:58:32,655",
- "created": 1755176312.6554353,
+ "asctime": "2025-08-15 19:13:27,553",
+ "created": 1755278007.553132,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -4878,8 +4878,8 @@
"args": [
"unicode"
],
- "asctime": "2025-08-14 14:58:32,654",
- "created": 1755176312.6546922,
+ "asctime": "2025-08-15 19:13:27,552",
+ "created": 1755278007.5525699,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -4888,52 +4888,52 @@
"lineno": 163,
"message": "Loading property for key='unicode' from source instance",
"module": "__init__",
- "msecs": 654.0,
+ "msecs": 552.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 111.880102,
+ "relativeCreated": 82.870344,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"unicode",
"__unicode__",
- 1755176312
+ 1755278007
],
- "asctime": "2025-08-14 14:58:32,654",
- "created": 1755176312.6547513,
+ "asctime": "2025-08-15 19:13:27,552",
+ "created": 1755278007.5526187,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 167,
- "message": "Adding key=unicode, value=__unicode__ with timestamp=1755176312 to chache",
+ "message": "Adding key=unicode, value=__unicode__ with timestamp=1755278007 to chache",
"module": "__init__",
- "msecs": 654.0,
+ "msecs": 552.0,
"msg": "Adding key=%s, value=%s with timestamp=%d to chache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 111.939239,
+ "relativeCreated": 82.919363,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
],
- "asctime": "2025-08-14 14:58:32,655",
- "created": 1755176312.6551409,
+ "asctime": "2025-08-15 19:13:27,552",
+ "created": 1755278007.552913,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
@@ -4942,16 +4942,16 @@
"lineno": 301,
"message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
"module": "__init__",
- "msecs": 655.0,
+ "msecs": 552.0,
"msg": "cache-file stored (%s)",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 112.329003,
+ "relativeCreated": 83.213553,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -4960,8 +4960,8 @@
"'__unicode__'",
""
],
- "asctime": "2025-08-14 14:58:32,655",
- "created": 1755176312.6553063,
+ "asctime": "2025-08-15 19:13:27,553",
+ "created": 1755278007.5530272,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -4970,16 +4970,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=unicode): '__unicode__' ()",
"module": "test",
- "msecs": 655.0,
+ "msecs": 553.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 112.494432,
+ "relativeCreated": 83.327664,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -4989,8 +4989,8 @@
"'__unicode__'",
""
],
- "asctime": "2025-08-14 14:58:32,655",
- "created": 1755176312.6553776,
+ "asctime": "2025-08-15 19:13:27,553",
+ "created": 1755278007.5530858,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -4999,39 +4999,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=unicode): result = '__unicode__' ()",
"module": "test",
- "msecs": 655.0,
+ "msecs": 553.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 112.565685,
+ "relativeCreated": 83.38632,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 655.0,
+ "msecs": 553.0,
"msg": "Data from cached instance with key=unicode is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 112.623485,
+ "relativeCreated": 83.432658,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 5.7697296142578125e-05
+ "time_consumption": 4.6253204345703125e-05
},
{
"args": [
"17",
""
],
- "asctime": "2025-08-14 14:58:32,655",
- "created": 1755176312.6557062,
+ "asctime": "2025-08-15 19:13:27,553",
+ "created": 1755278007.5533512,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -5045,8 +5045,8 @@
"args": [
"integer"
],
- "asctime": "2025-08-14 14:58:32,655",
- "created": 1755176312.6555376,
+ "asctime": "2025-08-15 19:13:27,553",
+ "created": 1755278007.5532112,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -5055,16 +5055,16 @@
"lineno": 157,
"message": "Providing property for 'integer' from cache",
"module": "__init__",
- "msecs": 655.0,
+ "msecs": 553.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 112.72586,
+ "relativeCreated": 83.511776,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -5073,8 +5073,8 @@
"17",
""
],
- "asctime": "2025-08-14 14:58:32,655",
- "created": 1755176312.6556027,
+ "asctime": "2025-08-15 19:13:27,553",
+ "created": 1755278007.5532653,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -5083,16 +5083,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=integer): 17 ()",
"module": "test",
- "msecs": 655.0,
+ "msecs": 553.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 112.790658,
+ "relativeCreated": 83.565945,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -5102,8 +5102,8 @@
"17",
""
],
- "asctime": "2025-08-14 14:58:32,655",
- "created": 1755176312.6556556,
+ "asctime": "2025-08-15 19:13:27,553",
+ "created": 1755278007.5533094,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -5112,39 +5112,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=integer): result = 17 ()",
"module": "test",
- "msecs": 655.0,
+ "msecs": 553.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 112.843748,
+ "relativeCreated": 83.60998,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 655.0,
+ "msecs": 553.0,
"msg": "Data from cached instance with key=integer is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 112.89433,
+ "relativeCreated": 83.651665,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 5.054473876953125e-05
+ "time_consumption": 4.172325134277344e-05
},
{
"args": [
"2.71828",
""
],
- "asctime": "2025-08-14 14:58:32,656",
- "created": 1755176312.656518,
+ "asctime": "2025-08-15 19:13:27,554",
+ "created": 1755278007.5540116,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -5158,8 +5158,8 @@
"args": [
"float"
],
- "asctime": "2025-08-14 14:58:32,655",
- "created": 1755176312.6557984,
+ "asctime": "2025-08-15 19:13:27,553",
+ "created": 1755278007.5534232,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -5168,52 +5168,52 @@
"lineno": 163,
"message": "Loading property for key='float' from source instance",
"module": "__init__",
- "msecs": 655.0,
+ "msecs": 553.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 112.986716,
+ "relativeCreated": 83.723627,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"float",
2.71828,
- 1755176312
+ 1755278007
],
- "asctime": "2025-08-14 14:58:32,655",
- "created": 1755176312.655855,
+ "asctime": "2025-08-15 19:13:27,553",
+ "created": 1755278007.5534694,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 167,
- "message": "Adding key=float, value=2.71828 with timestamp=1755176312 to chache",
+ "message": "Adding key=float, value=2.71828 with timestamp=1755278007 to chache",
"module": "__init__",
- "msecs": 655.0,
+ "msecs": 553.0,
"msg": "Adding key=%s, value=%s with timestamp=%d to chache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 113.042855,
+ "relativeCreated": 83.770086,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
],
- "asctime": "2025-08-14 14:58:32,656",
- "created": 1755176312.6562545,
+ "asctime": "2025-08-15 19:13:27,553",
+ "created": 1755278007.5537946,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
@@ -5222,16 +5222,16 @@
"lineno": 301,
"message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
"module": "__init__",
- "msecs": 656.0,
+ "msecs": 553.0,
"msg": "cache-file stored (%s)",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 113.442464,
+ "relativeCreated": 84.095205,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -5240,8 +5240,8 @@
"2.71828",
""
],
- "asctime": "2025-08-14 14:58:32,656",
- "created": 1755176312.6563969,
+ "asctime": "2025-08-15 19:13:27,553",
+ "created": 1755278007.553909,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -5250,16 +5250,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=float): 2.71828 ()",
"module": "test",
- "msecs": 656.0,
+ "msecs": 553.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 113.58477,
+ "relativeCreated": 84.209696,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -5269,8 +5269,8 @@
"2.71828",
""
],
- "asctime": "2025-08-14 14:58:32,656",
- "created": 1755176312.6564622,
+ "asctime": "2025-08-15 19:13:27,553",
+ "created": 1755278007.553965,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -5279,39 +5279,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=float): result = 2.71828 ()",
"module": "test",
- "msecs": 656.0,
+ "msecs": 553.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 113.65014,
+ "relativeCreated": 84.265629,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 656.0,
+ "msecs": 554.0,
"msg": "Data from cached instance with key=float is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 113.705869,
+ "relativeCreated": 84.312173,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 5.5789947509765625e-05
+ "time_consumption": 4.649162292480469e-05
},
{
"args": [
"[1, 'two', '3', 4]",
""
],
- "asctime": "2025-08-14 14:58:32,656",
- "created": 1755176312.656825,
+ "asctime": "2025-08-15 19:13:27,554",
+ "created": 1755278007.5542636,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -5325,8 +5325,8 @@
"args": [
"list"
],
- "asctime": "2025-08-14 14:58:32,656",
- "created": 1755176312.6566195,
+ "asctime": "2025-08-15 19:13:27,554",
+ "created": 1755278007.5540946,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -5335,16 +5335,16 @@
"lineno": 157,
"message": "Providing property for 'list' from cache",
"module": "__init__",
- "msecs": 656.0,
+ "msecs": 554.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 113.80774,
+ "relativeCreated": 84.39527,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -5353,8 +5353,8 @@
"[ 1, 'two', '3', 4 ]",
""
],
- "asctime": "2025-08-14 14:58:32,656",
- "created": 1755176312.656692,
+ "asctime": "2025-08-15 19:13:27,554",
+ "created": 1755278007.5541558,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -5363,16 +5363,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=list): [ 1, 'two', '3', 4 ] ()",
"module": "test",
- "msecs": 656.0,
+ "msecs": 554.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 113.880173,
+ "relativeCreated": 84.456441,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -5382,8 +5382,8 @@
"[ 1, 'two', '3', 4 ]",
""
],
- "asctime": "2025-08-14 14:58:32,656",
- "created": 1755176312.6567519,
+ "asctime": "2025-08-15 19:13:27,554",
+ "created": 1755278007.5542057,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -5392,39 +5392,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=list): result = [ 1, 'two', '3', 4 ] ()",
"module": "test",
- "msecs": 656.0,
+ "msecs": 554.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 113.939926,
+ "relativeCreated": 84.506374,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 656.0,
+ "msecs": 554.0,
"msg": "Data from cached instance with key=list is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 114.013118,
+ "relativeCreated": 84.56416,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 7.319450378417969e-05
+ "time_consumption": 5.793571472167969e-05
},
{
"args": [
"{'1': 1, '2': 'two', '3': '3', '4': 4}",
""
],
- "asctime": "2025-08-14 14:58:32,657",
- "created": 1755176312.6571276,
+ "asctime": "2025-08-15 19:13:27,554",
+ "created": 1755278007.5545146,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -5438,8 +5438,8 @@
"args": [
"dict"
],
- "asctime": "2025-08-14 14:58:32,656",
- "created": 1755176312.65692,
+ "asctime": "2025-08-15 19:13:27,554",
+ "created": 1755278007.554342,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -5448,16 +5448,16 @@
"lineno": 157,
"message": "Providing property for 'dict' from cache",
"module": "__init__",
- "msecs": 656.0,
+ "msecs": 554.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 114.108034,
+ "relativeCreated": 84.642623,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -5466,8 +5466,8 @@
"{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
""
],
- "asctime": "2025-08-14 14:58:32,656",
- "created": 1755176312.6569922,
+ "asctime": "2025-08-15 19:13:27,554",
+ "created": 1755278007.5544024,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -5476,16 +5476,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=dict): { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
"module": "test",
- "msecs": 656.0,
+ "msecs": 554.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 114.180326,
+ "relativeCreated": 84.70298,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -5495,8 +5495,8 @@
"{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
""
],
- "asctime": "2025-08-14 14:58:32,657",
- "created": 1755176312.6570554,
+ "asctime": "2025-08-15 19:13:27,554",
+ "created": 1755278007.554456,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -5505,39 +5505,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=dict): result = { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
"module": "test",
- "msecs": 657.0,
+ "msecs": 554.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 114.243673,
+ "relativeCreated": 84.756768,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 657.0,
+ "msecs": 554.0,
"msg": "Data from cached instance with key=dict is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 114.315867,
+ "relativeCreated": 84.815352,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 7.224082946777344e-05
+ "time_consumption": 5.8650970458984375e-05
},
{
"args": [
"None",
""
],
- "asctime": "2025-08-14 14:58:32,657",
- "created": 1755176312.6573818,
+ "asctime": "2025-08-15 19:13:27,554",
+ "created": 1755278007.5547376,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -5551,8 +5551,8 @@
"args": [
"none"
],
- "asctime": "2025-08-14 14:58:32,657",
- "created": 1755176312.6572149,
+ "asctime": "2025-08-15 19:13:27,554",
+ "created": 1755278007.5545893,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -5561,16 +5561,16 @@
"lineno": 157,
"message": "Providing property for 'none' from cache",
"module": "__init__",
- "msecs": 657.0,
+ "msecs": 554.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 114.403091,
+ "relativeCreated": 84.889678,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -5579,8 +5579,8 @@
"None",
""
],
- "asctime": "2025-08-14 14:58:32,657",
- "created": 1755176312.6572766,
+ "asctime": "2025-08-15 19:13:27,554",
+ "created": 1755278007.5546527,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -5589,16 +5589,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=none): None ()",
"module": "test",
- "msecs": 657.0,
+ "msecs": 554.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 114.464796,
+ "relativeCreated": 84.953257,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -5608,8 +5608,8 @@
"None",
""
],
- "asctime": "2025-08-14 14:58:32,657",
- "created": 1755176312.6573281,
+ "asctime": "2025-08-15 19:13:27,554",
+ "created": 1755278007.554696,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -5618,39 +5618,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=none): result = None ()",
"module": "test",
- "msecs": 657.0,
+ "msecs": 554.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 114.516156,
+ "relativeCreated": 84.996819,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 657.0,
+ "msecs": 554.0,
"msg": "Data from cached instance with key=none is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 114.570022,
+ "relativeCreated": 85.03837,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 5.364418029785156e-05
+ "time_consumption": 4.1484832763671875e-05
},
{
"args": [
"5",
""
],
- "asctime": "2025-08-14 14:58:32,657",
- "created": 1755176312.657637,
+ "asctime": "2025-08-15 19:13:27,554",
+ "created": 1755278007.5549517,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -5664,8 +5664,8 @@
"args": [
"unknown_key"
],
- "asctime": "2025-08-14 14:58:32,657",
- "created": 1755176312.6574714,
+ "asctime": "2025-08-15 19:13:27,554",
+ "created": 1755278007.554812,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -5674,16 +5674,16 @@
"lineno": 179,
"message": "Key 'unknown_key' is not in cached_keys. Uncached data will be returned.",
"module": "__init__",
- "msecs": 657.0,
+ "msecs": 554.0,
"msg": "Key '%s' is not in cached_keys. Uncached data will be returned.",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 114.659577,
+ "relativeCreated": 85.11258,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -5692,8 +5692,8 @@
"5",
""
],
- "asctime": "2025-08-14 14:58:32,657",
- "created": 1755176312.657531,
+ "asctime": "2025-08-15 19:13:27,554",
+ "created": 1755278007.554861,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -5702,16 +5702,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=unknown_key): 5 ()",
"module": "test",
- "msecs": 657.0,
+ "msecs": 554.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 114.719217,
+ "relativeCreated": 85.161767,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -5721,8 +5721,8 @@
"5",
""
],
- "asctime": "2025-08-14 14:58:32,657",
- "created": 1755176312.6575863,
+ "asctime": "2025-08-15 19:13:27,554",
+ "created": 1755278007.5549068,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -5731,43 +5731,43 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=unknown_key): result = 5 ()",
"module": "test",
- "msecs": 657.0,
+ "msecs": 554.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 114.77445,
+ "relativeCreated": 85.207455,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 657.0,
+ "msecs": 554.0,
"msg": "Data from cached instance with key=unknown_key is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 114.825033,
+ "relativeCreated": 85.252199,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 5.054473876953125e-05
+ "time_consumption": 4.482269287109375e-05
}
],
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.007977724075317383,
- "time_finished": "2025-08-14 14:58:32,657",
- "time_start": "2025-08-14 14:58:32,649"
+ "time_consumption": 0.006113290786743164,
+ "time_finished": "2025-08-15 19:13:27,554",
+ "time_start": "2025-08-15 19:13:27,548"
},
"REQ-0006": {
"args": null,
- "asctime": "2025-08-14 14:58:38,680",
- "created": 1755176318.680951,
+ "asctime": "2025-08-15 19:13:33,571",
+ "created": 1755278013.571209,
"exc_text": null,
"filename": "__init__.py",
"funcName": "testCase",
@@ -5777,20 +5777,20 @@
"message": "REQ-0006",
"module": "__init__",
"moduleLogger": [],
- "msecs": 680.0,
+ "msecs": 571.0,
"msg": "REQ-0006",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6138.139059,
+ "relativeCreated": 6101.509554,
"stack_info": null,
"taskName": null,
"testcaseLogger": [
{
"args": [],
- "asctime": "2025-08-14 14:58:38,681",
- "created": 1755176318.681744,
+ "asctime": "2025-08-15 19:13:33,571",
+ "created": 1755278013.571594,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -5802,8 +5802,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-08-14 14:58:38,681",
- "created": 1755176318.6814256,
+ "asctime": "2025-08-15 19:13:33,571",
+ "created": 1755278013.5714414,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -5812,38 +5812,38 @@
"lineno": 17,
"message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
"module": "test_helpers",
- "msecs": 681.0,
+ "msecs": 571.0,
"msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6138.61379,
+ "relativeCreated": 6101.742026,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 681.0,
+ "msecs": 571.0,
"msg": "Prepare: Cleanup before testcase execution",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6138.932299,
+ "relativeCreated": 6101.894634,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.0003185272216796875
+ "time_consumption": 0.000152587890625
},
{
"args": [
"'property_cache_json'"
],
- "asctime": "2025-08-14 14:58:38,684",
- "created": 1755176318.6843255,
+ "asctime": "2025-08-15 19:13:33,573",
+ "created": 1755278013.5730522,
"exc_text": null,
"filename": "test_dump_cache.py",
"funcName": "dump_cache",
@@ -5855,8 +5855,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-08-14 14:58:38,682",
- "created": 1755176318.6820495,
+ "asctime": "2025-08-15 19:13:33,571",
+ "created": 1755278013.571754,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_cache",
@@ -5865,24 +5865,24 @@
"lineno": 237,
"message": "Cache file does not exists (yet).",
"module": "__init__",
- "msecs": 682.0,
+ "msecs": 571.0,
"msg": "Cache file does not exists (yet).",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6139.237648,
+ "relativeCreated": 6102.054507,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']"
],
- "asctime": "2025-08-14 14:58:38,682",
- "created": 1755176318.682298,
+ "asctime": "2025-08-15 19:13:33,571",
+ "created": 1755278013.5718613,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_source",
@@ -5891,24 +5891,24 @@
"lineno": 246,
"message": "Loading all data from source - ['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']",
"module": "__init__",
- "msecs": 682.0,
+ "msecs": 571.0,
"msg": "Loading all data from source - %s",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6139.485825,
+ "relativeCreated": 6102.161927,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
],
- "asctime": "2025-08-14 14:58:38,684",
- "created": 1755176318.6840131,
+ "asctime": "2025-08-15 19:13:33,572",
+ "created": 1755278013.5728893,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
@@ -5917,39 +5917,39 @@
"lineno": 301,
"message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
"module": "__init__",
- "msecs": 684.0,
+ "msecs": 572.0,
"msg": "cache-file stored (%s)",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6141.201105,
+ "relativeCreated": 6103.190036,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 684.0,
+ "msecs": 573.0,
"msg": "Prepare: First usage of %s with a class holding the data to be cached",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_dump_cache.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6141.513442,
+ "relativeCreated": 6103.3528,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.0003123283386230469
+ "time_consumption": 0.0001628398895263672
},
{
"args": [
"'string'",
""
],
- "asctime": "2025-08-14 14:58:38,686",
- "created": 1755176318.686122,
+ "asctime": "2025-08-15 19:13:33,573",
+ "created": 1755278013.5737438,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -5963,8 +5963,8 @@
"args": [
"/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
],
- "asctime": "2025-08-14 14:58:38,685",
- "created": 1755176318.6850662,
+ "asctime": "2025-08-15 19:13:33,573",
+ "created": 1755278013.5733662,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_only",
@@ -5973,24 +5973,24 @@
"lineno": 296,
"message": "Loading properties from cache (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
"module": "__init__",
- "msecs": 685.0,
+ "msecs": 573.0,
"msg": "Loading properties from cache (%s)",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6142.254256,
+ "relativeCreated": 6103.666828,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"str"
],
- "asctime": "2025-08-14 14:58:38,685",
- "created": 1755176318.6854544,
+ "asctime": "2025-08-15 19:13:33,573",
+ "created": 1755278013.5734925,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -5999,16 +5999,16 @@
"lineno": 157,
"message": "Providing property for 'str' from cache",
"module": "__init__",
- "msecs": 685.0,
+ "msecs": 573.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6142.642338,
+ "relativeCreated": 6103.793085,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -6017,8 +6017,8 @@
"'string'",
""
],
- "asctime": "2025-08-14 14:58:38,685",
- "created": 1755176318.685692,
+ "asctime": "2025-08-15 19:13:33,573",
+ "created": 1755278013.573588,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -6027,16 +6027,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=str): 'string' ()",
"module": "test",
- "msecs": 685.0,
+ "msecs": 573.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6142.880318,
+ "relativeCreated": 6103.888689,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -6046,8 +6046,8 @@
"'string'",
""
],
- "asctime": "2025-08-14 14:58:38,685",
- "created": 1755176318.6859288,
+ "asctime": "2025-08-15 19:13:33,573",
+ "created": 1755278013.5736687,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -6056,39 +6056,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=str): result = 'string' ()",
"module": "test",
- "msecs": 685.0,
+ "msecs": 573.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6143.116863,
+ "relativeCreated": 6103.969317,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 686.0,
+ "msecs": 573.0,
"msg": "Data from cached instance with key=str is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6143.309988,
+ "relativeCreated": 6104.044471,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.00019311904907226562
+ "time_consumption": 7.510185241699219e-05
},
{
"args": [
"'unicode'",
""
],
- "asctime": "2025-08-14 14:58:38,686",
- "created": 1755176318.686651,
+ "asctime": "2025-08-15 19:13:33,574",
+ "created": 1755278013.574114,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -6102,8 +6102,8 @@
"args": [
"unicode"
],
- "asctime": "2025-08-14 14:58:38,686",
- "created": 1755176318.6864054,
+ "asctime": "2025-08-15 19:13:33,573",
+ "created": 1755278013.573878,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -6112,16 +6112,16 @@
"lineno": 157,
"message": "Providing property for 'unicode' from cache",
"module": "__init__",
- "msecs": 686.0,
+ "msecs": 573.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6143.593534,
+ "relativeCreated": 6104.178499,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -6130,8 +6130,8 @@
"'unicode'",
""
],
- "asctime": "2025-08-14 14:58:38,686",
- "created": 1755176318.6864984,
+ "asctime": "2025-08-15 19:13:33,573",
+ "created": 1755278013.573968,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -6140,16 +6140,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=unicode): 'unicode' ()",
"module": "test",
- "msecs": 686.0,
+ "msecs": 573.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6143.686366,
+ "relativeCreated": 6104.268385,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -6159,8 +6159,8 @@
"'unicode'",
""
],
- "asctime": "2025-08-14 14:58:38,686",
- "created": 1755176318.6865659,
+ "asctime": "2025-08-15 19:13:33,574",
+ "created": 1755278013.5740416,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -6169,39 +6169,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=unicode): result = 'unicode' ()",
"module": "test",
- "msecs": 686.0,
+ "msecs": 574.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6143.754063,
+ "relativeCreated": 6104.342109,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 686.0,
+ "msecs": 574.0,
"msg": "Data from cached instance with key=unicode is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6143.838879,
+ "relativeCreated": 6104.414769,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 8.511543273925781e-05
+ "time_consumption": 7.2479248046875e-05
},
{
"args": [
"17",
""
],
- "asctime": "2025-08-14 14:58:38,686",
- "created": 1755176318.6869836,
+ "asctime": "2025-08-15 19:13:33,574",
+ "created": 1755278013.5744777,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -6215,8 +6215,8 @@
"args": [
"integer"
],
- "asctime": "2025-08-14 14:58:38,686",
- "created": 1755176318.6867685,
+ "asctime": "2025-08-15 19:13:33,574",
+ "created": 1755278013.5742383,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -6225,16 +6225,16 @@
"lineno": 157,
"message": "Providing property for 'integer' from cache",
"module": "__init__",
- "msecs": 686.0,
+ "msecs": 574.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6143.956695,
+ "relativeCreated": 6104.538793,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -6243,8 +6243,8 @@
"17",
""
],
- "asctime": "2025-08-14 14:58:38,686",
- "created": 1755176318.6868546,
+ "asctime": "2025-08-15 19:13:33,574",
+ "created": 1755278013.5743256,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -6253,16 +6253,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=integer): 17 ()",
"module": "test",
- "msecs": 686.0,
+ "msecs": 574.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6144.042723,
+ "relativeCreated": 6104.626005,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -6272,8 +6272,8 @@
"17",
""
],
- "asctime": "2025-08-14 14:58:38,686",
- "created": 1755176318.6869202,
+ "asctime": "2025-08-15 19:13:33,574",
+ "created": 1755278013.5744038,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -6282,39 +6282,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=integer): result = 17 ()",
"module": "test",
- "msecs": 686.0,
+ "msecs": 574.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6144.108276,
+ "relativeCreated": 6104.704461,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 686.0,
+ "msecs": 574.0,
"msg": "Data from cached instance with key=integer is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6144.171786,
+ "relativeCreated": 6104.778118,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 6.341934204101562e-05
+ "time_consumption": 7.390975952148438e-05
},
{
"args": [
"3.14159",
""
],
- "asctime": "2025-08-14 14:58:38,687",
- "created": 1755176318.687302,
+ "asctime": "2025-08-15 19:13:33,574",
+ "created": 1755278013.5748644,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -6328,8 +6328,8 @@
"args": [
"float"
],
- "asctime": "2025-08-14 14:58:38,687",
- "created": 1755176318.6870894,
+ "asctime": "2025-08-15 19:13:33,574",
+ "created": 1755278013.5746167,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -6338,16 +6338,16 @@
"lineno": 157,
"message": "Providing property for 'float' from cache",
"module": "__init__",
- "msecs": 687.0,
+ "msecs": 574.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6144.277596,
+ "relativeCreated": 6104.917098,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -6356,8 +6356,8 @@
"3.14159",
""
],
- "asctime": "2025-08-14 14:58:38,687",
- "created": 1755176318.6871734,
+ "asctime": "2025-08-15 19:13:33,574",
+ "created": 1755278013.5747151,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -6366,16 +6366,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=float): 3.14159 ()",
"module": "test",
- "msecs": 687.0,
+ "msecs": 574.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6144.361454,
+ "relativeCreated": 6105.015641,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -6385,8 +6385,8 @@
"3.14159",
""
],
- "asctime": "2025-08-14 14:58:38,687",
- "created": 1755176318.6872394,
+ "asctime": "2025-08-15 19:13:33,574",
+ "created": 1755278013.574792,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -6395,39 +6395,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=float): result = 3.14159 ()",
"module": "test",
- "msecs": 687.0,
+ "msecs": 574.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6144.427511,
+ "relativeCreated": 6105.092614,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 687.0,
+ "msecs": 574.0,
"msg": "Data from cached instance with key=float is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6144.490125,
+ "relativeCreated": 6105.165103,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 6.270408630371094e-05
+ "time_consumption": 7.2479248046875e-05
},
{
"args": [
"[1, 'two', '3', 4]",
""
],
- "asctime": "2025-08-14 14:58:38,687",
- "created": 1755176318.687728,
+ "asctime": "2025-08-15 19:13:33,575",
+ "created": 1755278013.5752733,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -6441,8 +6441,8 @@
"args": [
"list"
],
- "asctime": "2025-08-14 14:58:38,687",
- "created": 1755176318.6874278,
+ "asctime": "2025-08-15 19:13:33,574",
+ "created": 1755278013.574989,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -6451,16 +6451,16 @@
"lineno": 157,
"message": "Providing property for 'list' from cache",
"module": "__init__",
- "msecs": 687.0,
+ "msecs": 574.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6144.616023,
+ "relativeCreated": 6105.289684,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -6469,8 +6469,8 @@
"[ 1, 'two', '3', 4 ]",
""
],
- "asctime": "2025-08-14 14:58:38,687",
- "created": 1755176318.687531,
+ "asctime": "2025-08-15 19:13:33,575",
+ "created": 1755278013.5750868,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -6479,16 +6479,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=list): [ 1, 'two', '3', 4 ] ()",
"module": "test",
- "msecs": 687.0,
+ "msecs": 575.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6144.719118,
+ "relativeCreated": 6105.38757,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -6498,8 +6498,8 @@
"[ 1, 'two', '3', 4 ]",
""
],
- "asctime": "2025-08-14 14:58:38,687",
- "created": 1755176318.6876245,
+ "asctime": "2025-08-15 19:13:33,575",
+ "created": 1755278013.575177,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -6508,39 +6508,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=list): result = [ 1, 'two', '3', 4 ] ()",
"module": "test",
- "msecs": 687.0,
+ "msecs": 575.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6144.812516,
+ "relativeCreated": 6105.477636,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 687.0,
+ "msecs": 575.0,
"msg": "Data from cached instance with key=list is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6144.916091,
+ "relativeCreated": 6105.573823,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.00010347366333007812
+ "time_consumption": 9.632110595703125e-05
},
{
"args": [
"{'1': 1, '2': 'two', '3': '3', '4': 4}",
""
],
- "asctime": "2025-08-14 14:58:38,688",
- "created": 1755176318.6881487,
+ "asctime": "2025-08-15 19:13:33,575",
+ "created": 1755278013.5756817,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -6554,8 +6554,8 @@
"args": [
"dict"
],
- "asctime": "2025-08-14 14:58:38,687",
- "created": 1755176318.6878567,
+ "asctime": "2025-08-15 19:13:33,575",
+ "created": 1755278013.575399,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -6564,16 +6564,16 @@
"lineno": 157,
"message": "Providing property for 'dict' from cache",
"module": "__init__",
- "msecs": 687.0,
+ "msecs": 575.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6145.044729,
+ "relativeCreated": 6105.699422,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -6582,8 +6582,8 @@
"{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
""
],
- "asctime": "2025-08-14 14:58:38,687",
- "created": 1755176318.68796,
+ "asctime": "2025-08-15 19:13:33,575",
+ "created": 1755278013.5754979,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -6592,16 +6592,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=dict): { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
"module": "test",
- "msecs": 687.0,
+ "msecs": 575.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6145.147937,
+ "relativeCreated": 6105.798694,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -6611,8 +6611,8 @@
"{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
""
],
- "asctime": "2025-08-14 14:58:38,688",
- "created": 1755176318.6880457,
+ "asctime": "2025-08-15 19:13:33,575",
+ "created": 1755278013.5755827,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -6621,39 +6621,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=dict): result = { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
"module": "test",
- "msecs": 688.0,
+ "msecs": 575.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6145.233946,
+ "relativeCreated": 6105.883216,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 688.0,
+ "msecs": 575.0,
"msg": "Data from cached instance with key=dict is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6145.336785,
+ "relativeCreated": 6105.982488,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.000102996826171875
+ "time_consumption": 9.894371032714844e-05
},
{
"args": [
"None",
""
],
- "asctime": "2025-08-14 14:58:38,688",
- "created": 1755176318.6885614,
+ "asctime": "2025-08-15 19:13:33,576",
+ "created": 1755278013.5760808,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -6667,8 +6667,8 @@
"args": [
"none"
],
- "asctime": "2025-08-14 14:58:38,688",
- "created": 1755176318.688295,
+ "asctime": "2025-08-15 19:13:33,575",
+ "created": 1755278013.575828,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -6677,16 +6677,16 @@
"lineno": 157,
"message": "Providing property for 'none' from cache",
"module": "__init__",
- "msecs": 688.0,
+ "msecs": 575.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6145.482986,
+ "relativeCreated": 6106.12853,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -6695,8 +6695,8 @@
"None",
""
],
- "asctime": "2025-08-14 14:58:38,688",
- "created": 1755176318.688395,
+ "asctime": "2025-08-15 19:13:33,575",
+ "created": 1755278013.5759206,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -6705,16 +6705,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=none): None ()",
"module": "test",
- "msecs": 688.0,
+ "msecs": 575.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6145.583054,
+ "relativeCreated": 6106.22125,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -6724,8 +6724,8 @@
"None",
""
],
- "asctime": "2025-08-14 14:58:38,688",
- "created": 1755176318.6884844,
+ "asctime": "2025-08-15 19:13:33,575",
+ "created": 1755278013.5759969,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -6734,39 +6734,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=none): result = None ()",
"module": "test",
- "msecs": 688.0,
+ "msecs": 575.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6145.672499,
+ "relativeCreated": 6106.297521,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 688.0,
+ "msecs": 576.0,
"msg": "Data from cached instance with key=none is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 6145.749523,
+ "relativeCreated": 6106.381442,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 7.700920104980469e-05
+ "time_consumption": 8.392333984375e-05
},
{
"args": [
"'__string__'",
""
],
- "asctime": "2025-08-14 14:58:40,691",
- "created": 1755176320.691619,
+ "asctime": "2025-08-15 19:13:35,579",
+ "created": 1755278015.5790389,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -6778,8 +6778,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-08-14 14:58:40,688",
- "created": 1755176320.6889791,
+ "asctime": "2025-08-15 19:13:35,576",
+ "created": 1755278015.576648,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -6788,24 +6788,24 @@
"lineno": 154,
"message": "The cached value is old, cached value will be ignored",
"module": "__init__",
- "msecs": 688.0,
+ "msecs": 576.0,
"msg": "The cached value is old, cached value will be ignored",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8146.167277,
+ "relativeCreated": 8106.948554,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"str"
],
- "asctime": "2025-08-14 14:58:40,689",
- "created": 1755176320.689246,
+ "asctime": "2025-08-15 19:13:35,576",
+ "created": 1755278015.5769112,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -6814,52 +6814,52 @@
"lineno": 163,
"message": "Loading property for key='str' from source instance",
"module": "__init__",
- "msecs": 689.0,
+ "msecs": 576.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8146.433937,
+ "relativeCreated": 8107.211635,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"str",
"__string__",
- 1755176320
+ 1755278015
],
- "asctime": "2025-08-14 14:58:40,689",
- "created": 1755176320.6894248,
+ "asctime": "2025-08-15 19:13:35,577",
+ "created": 1755278015.5770895,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 167,
- "message": "Adding key=str, value=__string__ with timestamp=1755176320 to chache",
+ "message": "Adding key=str, value=__string__ with timestamp=1755278015 to chache",
"module": "__init__",
- "msecs": 689.0,
+ "msecs": 577.0,
"msg": "Adding key=%s, value=%s with timestamp=%d to chache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8146.612697,
+ "relativeCreated": 8107.390044,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
],
- "asctime": "2025-08-14 14:58:40,690",
- "created": 1755176320.6907468,
+ "asctime": "2025-08-15 19:13:35,578",
+ "created": 1755278015.5782278,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
@@ -6868,16 +6868,16 @@
"lineno": 301,
"message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
"module": "__init__",
- "msecs": 690.0,
+ "msecs": 578.0,
"msg": "cache-file stored (%s)",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8147.934919,
+ "relativeCreated": 8108.52823,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -6886,8 +6886,8 @@
"'__string__'",
""
],
- "asctime": "2025-08-14 14:58:40,691",
- "created": 1755176320.691274,
+ "asctime": "2025-08-15 19:13:35,578",
+ "created": 1755278015.578709,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -6896,16 +6896,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=str): '__string__' ()",
"module": "test",
- "msecs": 691.0,
+ "msecs": 578.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8148.461984,
+ "relativeCreated": 8109.009666,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -6915,8 +6915,8 @@
"'__string__'",
""
],
- "asctime": "2025-08-14 14:58:40,691",
- "created": 1755176320.6914618,
+ "asctime": "2025-08-15 19:13:35,578",
+ "created": 1755278015.5788894,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -6925,39 +6925,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=str): result = '__string__' ()",
"module": "test",
- "msecs": 691.0,
+ "msecs": 578.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8148.649981,
+ "relativeCreated": 8109.190007,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 691.0,
+ "msecs": 579.0,
"msg": "Data from cached instance with key=str is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8148.806897,
+ "relativeCreated": 8109.339645,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.0001571178436279297
+ "time_consumption": 0.0001494884490966797
},
{
"args": [
"'__unicode__'",
""
],
- "asctime": "2025-08-14 14:58:40,693",
- "created": 1755176320.693916,
+ "asctime": "2025-08-15 19:13:35,581",
+ "created": 1755278015.5813293,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -6969,8 +6969,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-08-14 14:58:40,691",
- "created": 1755176320.6919038,
+ "asctime": "2025-08-15 19:13:35,579",
+ "created": 1755278015.5793247,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -6979,24 +6979,24 @@
"lineno": 154,
"message": "The cached value is old, cached value will be ignored",
"module": "__init__",
- "msecs": 691.0,
+ "msecs": 579.0,
"msg": "The cached value is old, cached value will be ignored",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8149.091913,
+ "relativeCreated": 8109.625402,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"unicode"
],
- "asctime": "2025-08-14 14:58:40,692",
- "created": 1755176320.6920881,
+ "asctime": "2025-08-15 19:13:35,579",
+ "created": 1755278015.5795116,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -7005,52 +7005,52 @@
"lineno": 163,
"message": "Loading property for key='unicode' from source instance",
"module": "__init__",
- "msecs": 692.0,
+ "msecs": 579.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8149.276033,
+ "relativeCreated": 8109.812074,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"unicode",
"__unicode__",
- 1755176320
+ 1755278015
],
- "asctime": "2025-08-14 14:58:40,692",
- "created": 1755176320.692238,
+ "asctime": "2025-08-15 19:13:35,579",
+ "created": 1755278015.5796602,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 167,
- "message": "Adding key=unicode, value=__unicode__ with timestamp=1755176320 to chache",
+ "message": "Adding key=unicode, value=__unicode__ with timestamp=1755278015 to chache",
"module": "__init__",
- "msecs": 692.0,
+ "msecs": 579.0,
"msg": "Adding key=%s, value=%s with timestamp=%d to chache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8149.426129,
+ "relativeCreated": 8109.960825,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
],
- "asctime": "2025-08-14 14:58:40,693",
- "created": 1755176320.6932256,
+ "asctime": "2025-08-15 19:13:35,580",
+ "created": 1755278015.5806477,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
@@ -7059,16 +7059,16 @@
"lineno": 301,
"message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
"module": "__init__",
- "msecs": 693.0,
+ "msecs": 580.0,
"msg": "cache-file stored (%s)",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8150.413902,
+ "relativeCreated": 8110.948326,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -7077,8 +7077,8 @@
"'__unicode__'",
""
],
- "asctime": "2025-08-14 14:58:40,693",
- "created": 1755176320.693593,
+ "asctime": "2025-08-15 19:13:35,581",
+ "created": 1755278015.5810158,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -7087,16 +7087,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=unicode): '__unicode__' ()",
"module": "test",
- "msecs": 693.0,
+ "msecs": 581.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8150.781181,
+ "relativeCreated": 8111.316393,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -7106,8 +7106,8 @@
"'__unicode__'",
""
],
- "asctime": "2025-08-14 14:58:40,693",
- "created": 1755176320.693769,
+ "asctime": "2025-08-15 19:13:35,581",
+ "created": 1755278015.5811868,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -7116,39 +7116,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=unicode): result = '__unicode__' ()",
"module": "test",
- "msecs": 693.0,
+ "msecs": 581.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8150.957058,
+ "relativeCreated": 8111.487496,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 693.0,
+ "msecs": 581.0,
"msg": "Data from cached instance with key=unicode is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8151.104144,
+ "relativeCreated": 8111.629908,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.00014710426330566406
+ "time_consumption": 0.00014257431030273438
},
{
"args": [
"34",
""
],
- "asctime": "2025-08-14 14:58:40,696",
- "created": 1755176320.696173,
+ "asctime": "2025-08-15 19:13:35,583",
+ "created": 1755278015.583567,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -7160,8 +7160,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-08-14 14:58:40,694",
- "created": 1755176320.6941776,
+ "asctime": "2025-08-15 19:13:35,581",
+ "created": 1755278015.5815942,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -7170,24 +7170,24 @@
"lineno": 154,
"message": "The cached value is old, cached value will be ignored",
"module": "__init__",
- "msecs": 694.0,
+ "msecs": 581.0,
"msg": "The cached value is old, cached value will be ignored",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8151.365748,
+ "relativeCreated": 8111.894668,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"integer"
],
- "asctime": "2025-08-14 14:58:40,694",
- "created": 1755176320.694356,
+ "asctime": "2025-08-15 19:13:35,581",
+ "created": 1755278015.5817366,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -7196,52 +7196,52 @@
"lineno": 163,
"message": "Loading property for key='integer' from source instance",
"module": "__init__",
- "msecs": 694.0,
+ "msecs": 581.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8151.544188,
+ "relativeCreated": 8112.037026,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"integer",
34,
- 1755176320
+ 1755278015
],
- "asctime": "2025-08-14 14:58:40,694",
- "created": 1755176320.6945028,
+ "asctime": "2025-08-15 19:13:35,581",
+ "created": 1755278015.581876,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 167,
- "message": "Adding key=integer, value=34 with timestamp=1755176320 to chache",
+ "message": "Adding key=integer, value=34 with timestamp=1755278015 to chache",
"module": "__init__",
- "msecs": 694.0,
+ "msecs": 581.0,
"msg": "Adding key=%s, value=%s with timestamp=%d to chache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8151.691043,
+ "relativeCreated": 8112.176614,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
],
- "asctime": "2025-08-14 14:58:40,695",
- "created": 1755176320.6954901,
+ "asctime": "2025-08-15 19:13:35,582",
+ "created": 1755278015.5828655,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
@@ -7250,16 +7250,16 @@
"lineno": 301,
"message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
"module": "__init__",
- "msecs": 695.0,
+ "msecs": 582.0,
"msg": "cache-file stored (%s)",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8152.678257,
+ "relativeCreated": 8113.16611,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -7268,8 +7268,8 @@
"34",
""
],
- "asctime": "2025-08-14 14:58:40,695",
- "created": 1755176320.6958544,
+ "asctime": "2025-08-15 19:13:35,583",
+ "created": 1755278015.5832543,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -7278,16 +7278,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=integer): 34 ()",
"module": "test",
- "msecs": 695.0,
+ "msecs": 583.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8153.042428,
+ "relativeCreated": 8113.55484,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -7297,8 +7297,8 @@
"34",
""
],
- "asctime": "2025-08-14 14:58:40,696",
- "created": 1755176320.6960282,
+ "asctime": "2025-08-15 19:13:35,583",
+ "created": 1755278015.5834255,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -7307,39 +7307,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=integer): result = 34 ()",
"module": "test",
- "msecs": 696.0,
+ "msecs": 583.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8153.216234,
+ "relativeCreated": 8113.726232,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 696.0,
+ "msecs": 583.0,
"msg": "Data from cached instance with key=integer is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8153.361104,
+ "relativeCreated": 8113.867462,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.00014472007751464844
+ "time_consumption": 0.00014138221740722656
},
{
"args": [
"2.71828",
""
],
- "asctime": "2025-08-14 14:58:40,698",
- "created": 1755176320.6983764,
+ "asctime": "2025-08-15 19:13:35,585",
+ "created": 1755278015.5851402,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -7351,8 +7351,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-08-14 14:58:40,696",
- "created": 1755176320.696419,
+ "asctime": "2025-08-15 19:13:35,583",
+ "created": 1755278015.5838108,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -7361,24 +7361,24 @@
"lineno": 154,
"message": "The cached value is old, cached value will be ignored",
"module": "__init__",
- "msecs": 696.0,
+ "msecs": 583.0,
"msg": "The cached value is old, cached value will be ignored",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8153.607286,
+ "relativeCreated": 8114.111349,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"float"
],
- "asctime": "2025-08-14 14:58:40,696",
- "created": 1755176320.6965618,
+ "asctime": "2025-08-15 19:13:35,583",
+ "created": 1755278015.583953,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -7387,52 +7387,52 @@
"lineno": 163,
"message": "Loading property for key='float' from source instance",
"module": "__init__",
- "msecs": 696.0,
+ "msecs": 583.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8153.749904,
+ "relativeCreated": 8114.253478,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"float",
2.71828,
- 1755176320
+ 1755278015
],
- "asctime": "2025-08-14 14:58:40,696",
- "created": 1755176320.696707,
+ "asctime": "2025-08-15 19:13:35,584",
+ "created": 1755278015.5840976,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 167,
- "message": "Adding key=float, value=2.71828 with timestamp=1755176320 to chache",
+ "message": "Adding key=float, value=2.71828 with timestamp=1755278015 to chache",
"module": "__init__",
- "msecs": 696.0,
+ "msecs": 584.0,
"msg": "Adding key=%s, value=%s with timestamp=%d to chache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8153.895114,
+ "relativeCreated": 8114.3982,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
],
- "asctime": "2025-08-14 14:58:40,697",
- "created": 1755176320.697658,
+ "asctime": "2025-08-15 19:13:35,584",
+ "created": 1755278015.5848284,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
@@ -7441,16 +7441,16 @@
"lineno": 301,
"message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
"module": "__init__",
- "msecs": 697.0,
+ "msecs": 584.0,
"msg": "cache-file stored (%s)",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8154.846333,
+ "relativeCreated": 8115.12914,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -7459,8 +7459,8 @@
"2.71828",
""
],
- "asctime": "2025-08-14 14:58:40,698",
- "created": 1755176320.6980183,
+ "asctime": "2025-08-15 19:13:35,584",
+ "created": 1755278015.5849936,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -7469,16 +7469,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=float): 2.71828 ()",
"module": "test",
- "msecs": 698.0,
+ "msecs": 584.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8155.206514,
+ "relativeCreated": 8115.294077,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -7488,8 +7488,8 @@
"2.71828",
""
],
- "asctime": "2025-08-14 14:58:40,698",
- "created": 1755176320.698191,
+ "asctime": "2025-08-15 19:13:35,585",
+ "created": 1755278015.5850728,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -7498,39 +7498,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=float): result = 2.71828 ()",
"module": "test",
- "msecs": 698.0,
+ "msecs": 585.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8155.379051,
+ "relativeCreated": 8115.373174,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 698.0,
+ "msecs": 585.0,
"msg": "Data from cached instance with key=float is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8155.564594,
+ "relativeCreated": 8115.440705,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.00018548965454101562
+ "time_consumption": 6.747245788574219e-05
},
{
"args": [
"['one', 2, 3, '4']",
""
],
- "asctime": "2025-08-14 14:58:40,700",
- "created": 1755176320.7006657,
+ "asctime": "2025-08-15 19:13:35,586",
+ "created": 1755278015.5861917,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -7542,8 +7542,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-08-14 14:58:40,698",
- "created": 1755176320.6986237,
+ "asctime": "2025-08-15 19:13:35,585",
+ "created": 1755278015.585251,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -7552,24 +7552,24 @@
"lineno": 154,
"message": "The cached value is old, cached value will be ignored",
"module": "__init__",
- "msecs": 698.0,
+ "msecs": 585.0,
"msg": "The cached value is old, cached value will be ignored",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8155.811795,
+ "relativeCreated": 8115.551624,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"list"
],
- "asctime": "2025-08-14 14:58:40,698",
- "created": 1755176320.6987658,
+ "asctime": "2025-08-15 19:13:35,585",
+ "created": 1755278015.5853148,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -7578,16 +7578,16 @@
"lineno": 163,
"message": "Loading property for key='list' from source instance",
"module": "__init__",
- "msecs": 698.0,
+ "msecs": 585.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8155.953969,
+ "relativeCreated": 8115.615549,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -7599,36 +7599,36 @@
3,
"4"
],
- 1755176320
+ 1755278015
],
- "asctime": "2025-08-14 14:58:40,698",
- "created": 1755176320.698909,
+ "asctime": "2025-08-15 19:13:35,585",
+ "created": 1755278015.5853791,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 167,
- "message": "Adding key=list, value=['one', 2, 3, '4'] with timestamp=1755176320 to chache",
+ "message": "Adding key=list, value=['one', 2, 3, '4'] with timestamp=1755278015 to chache",
"module": "__init__",
- "msecs": 698.0,
+ "msecs": 585.0,
"msg": "Adding key=%s, value=%s with timestamp=%d to chache",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8156.096944,
+ "relativeCreated": 8115.679768,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
"args": [
"/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
],
- "asctime": "2025-08-14 14:58:40,699",
- "created": 1755176320.699885,
+ "asctime": "2025-08-15 19:13:35,585",
+ "created": 1755278015.585832,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
@@ -7637,16 +7637,16 @@
"lineno": 301,
"message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
"module": "__init__",
- "msecs": 699.0,
+ "msecs": 585.0,
"msg": "cache-file stored (%s)",
"name": "caching",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8157.072969,
+ "relativeCreated": 8116.132912,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -7655,8 +7655,8 @@
"[ 'one', 2, 3, '4' ]",
""
],
- "asctime": "2025-08-14 14:58:40,700",
- "created": 1755176320.7002668,
+ "asctime": "2025-08-15 19:13:35,586",
+ "created": 1755278015.5860095,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -7665,16 +7665,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=list): [ 'one', 2, 3, '4' ] ()",
"module": "test",
- "msecs": 700.0,
+ "msecs": 586.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8157.45483,
+ "relativeCreated": 8116.310249,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
},
{
@@ -7684,8 +7684,8 @@
"[ 'one', 2, 3, '4' ]",
""
],
- "asctime": "2025-08-14 14:58:40,700",
- "created": 1755176320.7004678,
+ "asctime": "2025-08-15 19:13:35,586",
+ "created": 1755278015.5861018,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -7694,39 +7694,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=list): result = [ 'one', 2, 3, '4' ] ()",
"module": "test",
- "msecs": 700.0,
+ "msecs": 586.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8157.655751,
+ "relativeCreated": 8116.402277,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread"
}
],
- "msecs": 700.0,
+ "msecs": 586.0,
"msg": "Data from cached instance with key=list is correct (Content %s and Type is %s).",
"name": "__tLogger__",
"pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
- "process": 743412,
+ "process": 1015645,
"processName": "MainProcess",
- "relativeCreated": 8157.853574,
+ "relativeCreated": 8116.492126,
"stack_info": null,
"taskName": null,
- "thread": 140229749231872,
+ "thread": 140171799056640,
"threadName": "MainThread",
- "time_consumption": 0.00019788742065429688
+ "time_consumption": 8.988380432128906e-05
},
{
"args": [
"{'1': '1', '2': 2, '3': 'three', '4': '4'}",
"