python311-cachetools-5.3.1-150400.8.6.1<>,2Pf/{p9|ڈ+dah3?$7S!=F5LӬF?[#֋F Lp'Tg)Dwt &nhSot6wj='[E_;шR[,z(JI3+| ,u~S(OkAdAɇT`kU 2}]f3i_08($vY)'ZPGrn~Sƥ˺_iMjG MaWo#6K h>>)L?)<d * Z!BF \y * T   ((| 7( `8 h9 : %F""G"8H"I"X"Y"\#]#d^$b&(c&d']e'bf'el'gu'|v'w( x(`y( z(((()8Cpython311-cachetools5.3.1150400.8.6.1Extensible memoizing collections and decoratorsThis module provides various memoizing collections and decorators, including a variant of the Python 3 Standard Library `@lru_cache`_ function decorator.f/{h01-ch3cSUSE Linux Enterprise 15SUSE LLC MIThttps://www.suse.com/Development/Languages/Pythonhttps://github.com/tkem/cachetoolslinuxnoarchCl aUU  M#U=AA큤A큤A큤A큤f/zf/zf/zf/zf/zf/zdrhf/zf/zf/zf/zf/zf/zf/zcͷb=f/{driFc* f/{beH18223cca06d2338d15f4e1acb867b5ca9ba87399800e186e680fcb6db0f059b812cc3a251b9eeeb93c9de0f8a82fd270eff3c54b499468203990dd256c0c14e901ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b6a2d851fbf131b0a017028157e8a9bce4e48402b670ee91d4ace332ae54fbc3bb8a2d3576a3d4170ecc8e56a604a6c27c73cc2f3c4befaf270c40eccc7c03eb018fca63dd8e28b9001675d112830b487462f0e186bf90212c46804fdcddcd3d818fca63dd8e28b9001675d112830b487462f0e186bf90212c46804fdcddcd3d87d6ce918ff0189368194ad46d98eb1df0ee767788e4c4b44a2d1cec289bb74967d6ce918ff0189368194ad46d98eb1df0ee767788e4c4b44a2d1cec289bb74967190f8405de46d254053b8c30f4e2e0b81a425cca04002882eb35e4ac7f505ee7190f8405de46d254053b8c30f4e2e0b81a425cca04002882eb35e4ac7f505ee2b10b0eda921c3e5a496dbec7e0ce42f85c51b1779e2caeaae82b357764fd8e377e7295b6e7613fb95e74c92970d7721ebdd3509d273431f88c562226424b512d8b452e30e4deb61e40095f217ad645218921cb202e09250aea175ea01bb43e775fe01a2de21bb20cef920edda9a040b2c7295a1b4dfebb909fa304f3d9d0a6876260c1370a7d41d5fac71a27d781f3add5d7249adfbbfa930846d2d9e47dbd5rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpython-cachetools-5.3.1-150400.8.6.1.src.rpmpython311-cachetools@     python(abi)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PartialHardlinkSets)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.113.0.4-14.6.0-14.0.4-14.0-15.2-14.14.3dtdBzd7c@cGc1@aj`@`@_@_^l@^*@]{\v{\l@Y3Y0Wu@Ub@dmueller@suse.comdmueller@suse.commcepl@suse.comdmueller@suse.comdmueller@suse.comyarunachalam@suse.comdmueller@suse.compgajdos@suse.comdmueller@suse.comdmueller@suse.comdmueller@suse.comdmueller@suse.commcalabkova@suse.comtchvatal@suse.comtbechtold@suse.commcepl@suse.comtoddrme2178@gmail.comdmueller@suse.comtbechtold@suse.comdmueller@suse.com- update to 5.3.1: * Depend on Python >= 3.7.- add sle15_python_module_pythons (jsc#PED-68)- Make calling of %{sle15modernpython} optional.- update to 5.3.0: * Add ``cache_info()`` function to ``@cached`` decorator.- update to 5.2.1: * Add support for Python 3.11. * Correct version information in RTD documentation. * ``badges/shields``: Change to GitHub workflow badge routes.- update to v5.2.0 * Add cachetools.keys.methodkey(). * Add cache_clear() function to decorators. * Add src directory to sys.path for Sphinx autodoc. * Modernize func wrappers. - update to v5.1.0 * Add cache decorator parameters as wrapper function attributes. - update to v5.0.0 * Require Python 3.7 or later (breaking change). * Remove deprecated submodules (breaking change). The cache, fifo, lfu, lru, mru, rr and ttl submodules have been deleted. Therefore, statements like from cachetools.ttl import TTLCache will no longer work. Use from cachetools import TTLCache instead. * Pass self to @cachedmethod key function (breaking change). The key function passed to the @cachedmethod decorator is now called as key(self, *args, **kwargs). The default key function has been changed to ignore its first argument, so this should only affect applications using custom key functions with the @cachedmethod decorator. * Change exact time of expiration in TTLCache (breaking change). TTLCache items now get expired if their expiration time is less than or equal to timer(). For applications using the default timer(), this should be barely noticable, but it may affect the use of custom timers with larger tick intervals. Note that this also implies that a TTLCache with ttl=0 can no longer hold any items, since they will expire immediately. * Change Cache.__repr__() format (breaking change). String representations of cache instances now use a more compact and efficient format, e.g. LRUCache({1: 1, 2: 2}, maxsize=10, currsize=2) * Add TLRU cache implementation. * Documentation improvements.- update to 4.2.4: - Add submodule shims for backward compatibility. - Add documentation and tests for using ``TTLCache`` with ``datetime``. - Link to typeshed typing stubs. - Flatten package file hierarchy.- version update to 4.2.2 * Update build environment. * Remove Python 2 remnants. * Format code with Black. - %check: use %pyunittest macro- update to 4.2.1: - Handle ``__missing__()`` not storing cache items. - Clean up ``__missing__()`` example.- update to 4.2.0: - Add FIFO cache implementation. - Add MRU cache implementation. - Improve behavior of decorators in case of race conditions. - Improve documentation regarding mutability of caches values and use of key functions with decorators. - Officially support Python 3.9.- update to 4.1.1: - Improve ``popitem()`` exception context handling. - Replace ``float('inf')`` with ``math.inf``.- update to 4.1.0: - Support ``user_function`` with ``cachetools.func`` decorators (Python 3.8 compatibility). - Support ``cache_parameters()`` with ``cachetools.func`` decorators (Python 3.9 compatibility).- update to 4.0.0 * Require Python 3.5 or later.- Update to 3.1.1: * Document how to use shared caches with @cachedmethod. * Fix pickling/unpickling of cache keys- update to 3.1.0: - Fix Python 3.8 compatibility issue. - Use ``time.monotonic`` as default timer if available. - Improve documentation regarding thread safety. - Officially support Python 3.7. - Drop Python 3.3 support (breaking change). - Remove ``missing`` cache constructor parameter (breaking change). - Remove ``self`` from ``@cachedmethod`` key arguments (breaking change). - Add support for ``maxsize=None`` in ``cachetools.func`` decorators.- Remove superfluous devel dependency for noarch package- Implement single-spec version - Update to version 2.0.1 * Officially support Python 3.6. * Move documentation to RTD. * Documentation: Update import paths for key functions (courtesy of slavkoja).- update to 2.0.0: - Drop Python 3.2 support (breaking change). - Drop support for deprecated features (breaking change). - Move key functions to separate package (breaking change). - Accept non-integer ``maxsize`` in ``Cache.__repr__()``.- update to 1.1.6: - Reimplement ``LRUCache`` and ``TTLCache`` using ``collections.OrderedDict``. Note that this will break pickle compatibility with previous versions. - Fix ``TTLCache`` not calling ``__missing__()`` of derived classes. - Handle ``ValueError`` in ``Cache.__missing__()`` for consistency with caching decorators. - Improve how ``TTLCache`` handles expired items. - Use ``Counter.most_common()`` for ``LFUCache.popitem()``. - Refactor ``Cache`` base class. Note that this will break pickle compatibility with previous versions. - Clean up ``LRUCache`` and ``TTLCache`` implementations. - Refactor ``LRUCache`` and ``TTLCache`` implementations. Note that this will break pickle compatibility with previous versions. - Document pending removal of deprecated features. - Minor documentation improvements. - Fix pickle tests. - Fix pickling of large ``LRUCache`` and ``TTLCache`` instances. - Improve key functions. - Improve documentation. - Improve unit test coverage. - Add ``@cached`` function decorator. - Add ``hashkey`` and ``typedkey`` fuctions. - Add `key` and `lock` arguments to ``@cachedmethod``. - Set ``__wrapped__`` attributes for Python versions < 3.2. - Move ``functools`` compatible decorators to ``cachetools.func``. - Deprecate ``@cachedmethod`` `typed` argument. - Deprecate `cache` attribute for ``@cachedmethod`` wrappers. - Deprecate `getsizeof` and `lock` arguments for `cachetools.func` decorator. - Use pypi.io as Source url- Initial package (1.0.3)h01-ch3c 1714414971 5.3.1-150400.8.6.1cachetoolscachetools-5.3.1-py3.11.egg-infoPKG-INFOSOURCES.txtdependency_links.txttop_level.txt__init__.py__pycache____init__.cpython-311.opt-1.pyc__init__.cpython-311.pycfunc.cpython-311.opt-1.pycfunc.cpython-311.pyckeys.cpython-311.opt-1.pyckeys.cpython-311.pycfunc.pykeys.pypython311-cachetoolsCHANGELOG.rstREADME.rstpython311-cachetoolsLICENSE/usr/lib/python3.11/site-packages//usr/lib/python3.11/site-packages/cachetools-5.3.1-py3.11.egg-info//usr/lib/python3.11/site-packages/cachetools//usr/lib/python3.11/site-packages/cachetools/__pycache__//usr/share/doc/packages//usr/share/doc/packages/python311-cachetools//usr/share/licenses//usr/share/licenses/python311-cachetools/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.suse.de/SUSE:Maintenance:33601/SUSE_SLE-15-SP4_Update/750f034ac2e22f5018ae5ee0cc2eab8d-python-cachetools.SUSE_SLE-15-SP4_Updatedrpmxz5noarch-suse-linuxdirectoryPython script, ASCII text executableASCII text RRRRRRRRRR5i/ utf-898117ee850c1c5fd1800c47309571cc3e47ee280cd85b02ac278e861bbb2292a? 7zXZ !t/ ]"k%a IVf8Wip΅6h#AM VT(95J[ׅ krPWYm`BsPz8;T&"PoVlwـPYMk2j,v9PԒ%^[?sRo{];fYgH;I7w +5Y5`[CPy.? JXKO*ۈ{hr$s?)iȌxt1x~E,(y^&^c!sC#]݆$[%70ʳ(py/dOY'/ (aRd @\7$;㺓md /# yw,dWKɓ]Y9`Ϋw5YMxo OU/O+,Y݋ |1L?[Ay[mM)!ݙD(`Xw/?Ț#VU&ײo# \ bd)e)(/kdV=9hbk.HB}~0b@0,IeP4q!N\</ןO24RM,^}~J 6ϊ]0O*]@I(@#rh qY^70^z)faʶ Y ݖ('/ GѣD<n M'?Ç[ ._䏲KIGٰ\-!Cmњ7<,]˂1Aem/9 ٱ?Z ( y+k*v]1ħfo]crt)seW:*{2WvT9ǓX/(!W78rgNBs|ڗ([/UDNqsQo='yC=U\JB=tyAV>tХ9Tgნϋ/"1)(IĴ--ID^{~sDŽ!TfJj e4US"xHQD=-{jCx<}\q (][S ^ Wp b=R'çljyG;'9~8 b6w.Up#PB^; "36&`/VRatq ,~ YZ