python3-sortedcontainers-2.1.0-150200.3.4.1<>,7 ePp9|pxjuw\PVOXln:duڮt :eXB~깆LztLl#HAV m%qJsD .v]l..3W% v"7tb:oaFh41aijܯ=Nݤ g8ȆTNw% xIO_FQ{oj9WcTl{BmgjT=5gr}.I+_S5>>.h?.Xd! . J $04Mny L z          ,    '( G8 P9 p: F&oG&H&I'<X'TY'X\'l]'^)b+ c+d,De,If,Ll,Nu,`v,w-x-ly- z-.. ..TCpython3-sortedcontainers2.1.0150200.3.4.1Sorted container data typesSortedContainers is an Apache2 licensed containers library, written in pure-Python, and fast as C-extensions. Python's standard library is great until you need a sorted container type. Many will attest that you can get really far without one, but the moment you **really need** a sorted list, dict, or set, you're faced with a dozen different implementations, most using C-extensions without great documentation and benchmarking. SortedContainers takes all of the work out of Python sorted types - making your deployment and use of Python easy. There's no need to install a C compiler or pre-build and distribute custom extensions. Performance is a feature and testing has 100% coverage with unit tests and hours of stress.ePh01-ch3bhOSUSE Linux Enterprise 15SUSE LLC Apache-2.0https://www.suse.com/Development/Languages/Pythonhttps://github.com/grantjenks/python-sortedcontainerslinuxnoarch0G@SXvXvLLW( Mq$-AA큤A큤A큤A큤eOeOeOeOeOeO[.PeOeOeOeOeOeOeOeOeO[.P[.P[.PeP[.PeP[.P9a48462a93fe30f6707f1764348f99f8aac074c3312ad7808bb899902667d53496740596cbbb088f8f21ff3e19ce0addb2fdcb17187203f9c29baf8b415cb33b01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b015b34abea9ffb5d20b35b645617c02dd79b268e2e3ee555057ed84fdd6b8905235d4d37c3cb23a4559073ad8596c196fc849f847022775bf364531865bac9d98b398265bb4a43cedccc7bf37dd0c954a1d9ed3206427f015b5c495c7522f911c3f0f2c8f76a4ae6fae38da34c782600924792235bc9e4dcdf8b779ddca86769f0d9a70b6a12c5c8e474f92bb1f2ea63b22643563e3d810cc4fe03eaaefde4f17639e49f17831a4ead14bec7d9f2adec7663eee2bb0b6e485af9db2b96338d54a45ff71c566bcb1abf99966cbd09864046049ebed3b0fe11b025b896d58dc3387e722540bbbf87f778d68b2f547d2db722ba856297d89a163d7a4086c60d700b5575ca52353558d4f873d3e1f23fd0198aac7158ff7f4c98d379023af28b7916d1f60d82222dc652b0e81172b9d691f28d50cc43a091ef0432463adbc82ae8addb93e2aecbd69421e8d407eddcd48b75e41829172355184c1459a9fbb8fea9d8a4f3e54470a3584e3b29036c35680bedd38cc7423f2b1761f0d90b5fbc497b82e51236094246326d62837f9d85b3abcc397c68fa8378f92824f428ab444e4bb39895de183193f76addeeb52ba7589ac2fd7f53f18e191fdb4337f41cd5f725a07dcf4a5137118a925727b8a1690bc6ea70b156ee6739dbb51fd4d386718d6ce5rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpython-sortedcontainers-2.1.0-150200.3.4.1.src.rpmpython3-sortedcontainers@    python(abi)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.63.0.4-14.6.0-14.0-15.2-14.14.1\@\l@[@Z4@Z+@YjWT@tchvatal@suse.commcepl@suse.comtoddrme2178@gmail.comarun@gmx.dearun@gmx.dealoisio@gmx.comtoddrme2178@gmail.comtoddrme2178@gmail.com- Update to 2.1.0: * Small updates to docs and tests for Python 3.7. * Change imports for Abstract Base Classes to collections.abc to avoid warnings in Python 3.7. * SortedDict methods iterkeys, iteritems, itervalues, viewkeys, viewitems, and viewvalues are not implemented for Python 2. Attribute lookup now raises :exc:`AttributeError`. * Accessing SortedDict.iloc will emit DeprecationWarning. * SortedSet.__rsub__ erroneously reversed its arguments. The method has been removed in favor of the inherited Set.__rsub__ which has a correct implementation. * :class:`SortedKeysView` and :class:`SortedValuesView` set-operations now return :class:`SortedSet` objects to better match the semantics of version 1. - use github tarball for tests- Remove superfluous devel dependency for noarch package- Update to 2.0.2 + API Changes * SortedListWithKey is deprecated. Use SortedKeyList instead. The name SortedListWithKey remains as an alias for SortedKeyList. The alias will be removed in Version 3. * sortedcontainers.sortedlist.LOAD has moved to SortedList.DEFAULT_LOAD_FACTOR so that derived classes can customize the value. * SortedList._half and SortedList._dual have been removed. Use SortedList._load instead. * SortedList.add parameter val renamed to value. * SortedList.__contains__ parameter val renamed to value. * SortedList.discard parameter val renamed to value. * SortedList.remove parameter val renamed to value. * SortedList.__delitem__ parameter idx renamed to index. * SortedList.__getitem__ parameter idx renamed to index. * SortedList.__setitem__ now raises :exc:NotImplementedError. Use SortedList.__delitem__ and SortedList.add instead. * SortedList.bisect_left parameter val renamed to value. * SortedList.bisect_right parameter val renamed to value. * SortedList.bisect parameter val renamed to value. * SortedList.count parameter val renamed to value. * SortedList.append now raises :exc:NotImplementedError. Use SortedList.add instead. * SortedList.extend now raises :exc:NotImplementedError. Use SortedList.update instead. * SortedList.insert now raises :exc:NotImplementedError. Use SortedList.add instead. * SortedList.pop parameter idx renamed to index. * SortedList.index parameter val renamed to value. * SortedList.__add__ parameter that renamed to other. * SortedList.__iadd__ parameter that renamed to other. * SortedList.__mul__ parameter that renamed to num. * SortedList.__imul__ parameter that renamed to num. * SortedList._make_cmp renamed to SortedList.__make_cmp. * SortedKeyList.add parameter val renamed to value. * SortedKeyList.__contains__ parameter val renamed to value. * SortedKeyList.discard parameter val renamed to value. * SortedKeyList.remove parameter val renamed to value. * SortedKeyList.bisect_left parameter val renamed to value. * SortedKeyList.bisect_right parameter val renamed to value. * SortedKeyList.bisect parameter val renamed to value. * SortedKeyList.count parameter val renamed to value. * SortedKeyList.append now raises :exc:NotImplementedError. Use SortedKeyList.add instead. * SortedKeyList.extend now raises :exc:NotImplementedError. Use SortedKeyList.update instead. * SortedKeyList.insert now raises :exc:NotImplementedError. Use SortedKeyList.add instead. * SortedKeyList.index parameter val renamed to value. * SortedKeyList.__add__ parameter that renamed to other. * SortedKeyList.__radd__ added. * SortedKeyList.__iadd__ parameter that renamed to other. * SortedKeyList.__mul__ parameter that renamed to num. * SortedKeyList.__rmul__ added. * SortedKeyList.__imul__ parameter that renamed to num. * Removed SortedDict.iloc. Use SortedDict.keys and SortedKeysView instead. * SortedDict.fromkeys parameter seq renamed to iterable. * SortedDict.keys now returns SortedKeysView. * SortedDict.items now returns SortedItemsView. * SortedDict.values now returns SortedValuesView. * Removed SortedDict.viewkeys. Use SortedDict.keys instead. * Removed SortedDict.viewitems. Use SortedDict.items instead. * Removed SortedDict.viewvalues. Use SortedDict.values instead. * SortedDict.iterkeys removed. Use SortedDict.keys instead. * SortedDict.iteritems removed. Use SortedDict.items instead. * SortedDict.itervalues removed. Use SortedDict.values instead. * SortedDict.popitem now accepts an optional index argument. Default `-1`. * sorteddict.KeysView renamed to SortedKeysView. * sorteddict.ItemsView renamed to SortedItemsView. * sorteddict.ValuesView renamed to SortedValuesView. * Sorted dict views rely on collections abstract base classes: dict views and sequence. The SortedKeysView.__getitem__, SortedItemsView.__getitem__, and SortedValuesView.__getitem__ methods are implemented and optimized. All other mixin methods use the default implementation provided by the base class. Prefer SortedDict methods to view methods when possible. * SortedSet._make_cmp renamed to SortedSet.__make_cmp. * SortedSet.symmetric_difference parameter that renamed to other. * SortedSet.symmetric_difference_update parameter that renamed to other. + Miscellaneous * Sphinx autodoc now used for API documentation. * All benchmarks now run on CPython 3.6 unless otherwise noted. * Testing now uses pytest rather than nose. * AppVeyor CI testing added. * Updated versions of alternative implementations. * Rename Github repo from grantjenks/sorted_containers to grantjenks/python-sortedcontainers. * Fix broken links in documentation.- specfile: * update copyright year - update to version 1.5.10: * Improved performance of islice(...) methods.- update to version 1.5.9: * Dropped CPython 2.6 testing. - changes from version 1.5.8: * Bugfixes + Added SortedList.reverse to override MutableSequence.reverse and raise NotImplementedError.- Update to version 1.5.7 * Changed ``SortedList.__setitem__`` to support slices with stop less than start and step equal one. 1.5.6: * Changed ``SortedList.__setitem__`` to support slices that alias itself. 1.5.5: * Changed ``SortedList.extend`` to support empty iterables. 1.5.4: * Changed ``SortedList.__new__`` to call ``SortedListWithKey.__init__`` once instead of twice. - Build HTML documentation and put it into -doc subpackage - Enabled tests - Converted to singlespec- Update to 1.5.3 * No upstream changelog- Initial versionh01-ch3b 1704808467 2.1.0-150200.3.4.1sortedcontainerssortedcontainers-2.1.0-py3.6.egg-infoPKG-INFOSOURCES.txtdependency_links.txttop_level.txt__init__.py__pycache____init__.cpython-36.opt-1.pyc__init__.cpython-36.pycsorteddict.cpython-36.opt-1.pycsorteddict.cpython-36.pycsortedlist.cpython-36.opt-1.pycsortedlist.cpython-36.pycsortedset.cpython-36.opt-1.pycsortedset.cpython-36.pycsorteddict.pysortedlist.pysortedset.pypython3-sortedcontainersREADME.rstpython3-sortedcontainersLICENSE/usr/lib/python3.6/site-packages//usr/lib/python3.6/site-packages/sortedcontainers-2.1.0-py3.6.egg-info//usr/lib/python3.6/site-packages/sortedcontainers//usr/lib/python3.6/site-packages/sortedcontainers/__pycache__//usr/share/doc/packages//usr/share/doc/packages/python3-sortedcontainers//usr/share/licenses//usr/share/licenses/python3-sortedcontainers/-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:32015/SUSE_SLE-15-SP2_Update/c621f7267bac1005f2735093a41592bb-python-sortedcontainers.SUSE_SLE-15-SP2_Updatedrpmxz5noarch-suse-linuxdirectoryASCII textPython script, ASCII text executablepython 3.6 byte-compiled RRRRRRRRRRRR]~ jB+pJ}LLvQ_bJo81ƀ)q1b,2etЪb;gAZJF\xOgF1L_Svte17cun@H OgW cQEw[|25 73I%Xl41d0/k|Jd폞Sj934[Ss䗦e XWe|>nHhc(L9z;ḱjA6ҥ2 fE++(YrbqzH.`胞 ykyk,WlRW5_GdpocEet4ia1m|/2>1!履 2^~5NE c\ 6*O)̼3ʮOpsY ;/bh? .1eG<ò>W򋎕8f4/NBXP?MM%PXĜR`o##dxw.64_D8udlUG+AR* ~ ^9UC-ex LP#}Fը\91sq9h";Zkf=݈-\ކbw'L2lrZWzrg)KneGm]\4N!C$}N;w^VQq q> * cҡ- m :JI.mhY/&oks@[٢ *j-2 YZ