python2-persistent-devel-4.5.0-bp153.1.23 >  A `D"!M@eeecf@dЭEKo,+҂aL@q{ߥ$o@Ӫ1z;N/l%}u pڨH@'F`. +ܶPp 8Yde WOwAGInbDB@3g'$`a $}7|.%ɘ<3Fqh\ H+˱X3LX1jtq8͵}%4vw~r;e8p+;Bc8d2f8146aa7e3c29ccf2f64231f98f81f8ca9ba60a270fb93ad8a90412f88ef7caf1a532e6ac283592ba531523eea2970115b062`D"!M@eee1ćİ=u'uAH~.+\.򃣞niߐ3d;q0ǺUL[_Q |S6 %W+: Vn_ouKUW;KX avxE B?4Ej4IrmhB+꬇pԮws9:'Uesz$FW6ޏg{g1)}!2$Z3*/'[򟊿|%?IwrfF9\ɻF>p>!<?!,d! , K FLTl x    <hp(8 9 : BFGHI,X4Y@Zt[x\]^bOcd he mf pl ru v z    !(Cpython2-persistent-devel4.5.0bp153.1.23Translucent persistent objectsThis package contains the files needed for binding the python2-persistent C module.`Dobs-arm-9BSUSE Linux Enterprise 15 SP3openSUSEZPL-2.1https://bugs.opensuse.orgDevelopment/Languages/Pythonhttps://github.com/zopefoundation/persistentlinuxaarch64 O OA큤`D\ \ \ \ \ b125f075c0a99fdb755a9009d8fa364636e802d81589e79d8e4dab719c01d38645ba575763b4be0a85c1211115902426053c275eeadc2decf98fdd5904eb004d7fbf85fb9fb1627485bfc2f8017c65765a634cd31ac87169da4ba2de911774edb125f075c0a99fdb755a9009d8fa364636e802d81589e79d8e4dab719c01d38645ba575763b4be0a85c1211115902426053c275eeadc2decf98fdd5904eb004drootrootrootrootrootrootrootrootrootrootrootrootpython-persistent-4.5.0-bp153.1.23.src.rpmpython-persistent-develpython2-persistent-develpython2-persistent-devel(aarch-64)    python2-develpython2-persistentrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)4.5.03.0.4-14.6.0-14.0-15.2-14.14.1\\~d\}@[r@[Y[P}@YNT@UOH@S,)QY@pgajdos@suse.comHans-Peter Jansen Tomáš Chvátal mcepl@suse.comtchvatal@suse.commcepl@suse.comaloisio@gmx.combenoit.monin@gmx.frschwab@linux-m68k.orghpj@urpla.net- version update to 4.5.0 - Fully test the C implementation of the PickleCache, and fix discrepancies between it and the Python implementation: - Allow sweeping cache without ``cache_size``. ``cache_size_bytes`` works with ``cache_size=0``, no need to set ``cache_size`` to a large value. - Require ``CFFI`` on CPython for pure-Python operation. This drops support for Jython (which was untested). See `issue 77 `_. - Fix DeprecationWarning about ``PY_SSIZE_T_CLEAN``. See `issue 108 `_. - Drop support for Python 3.4. - deleted patches - persistent-4.2.4.2-switch-off-tests.patch (not needed)- Allow build with older distributions (%autopatch macro needs an appended empty line) - Refresh patch persistent-4.2.4.2-switch-off-tests.patch- Update to 4.4.3: * Too many changes around see CHANGES.rst - Do not bother with documentation generating - Add more dependencies- Update to 4.3.0: * Fix the possibility of a rare crash in the C extension when deallocating items. See https://github.com/zopefoundation/persistent/issues/66 * Change cPickleCache's comparison of object sizes to determine whether an object can go in the cache to use PyObject_TypeCheck(). This matches what the pure Python implementation does and is a stronger test that the object really is compatible with the cache. Previously, an object could potentially include cPersistent_HEAD and not set tp_base to cPersistenceCAPI->pertype and still be eligible for the pickle cache; that is no longer the case. See https://github.com/zopefoundation/persistent/issues/69- Do not restrict python version makes stuff very unresolvable- Clean up SPEC - Fix tests (persistent-4.2.4.2-switch-off-tests.patch removes failing test)- Update to 4.2.4.2 * Packaging-only release: fix Python 2.7 manylinux wheels. 4.2.4.1: * Packaging-only release: get manylinux wheel built automatically. 4.2.4: * Avoid raising a SystemError: error return without exception set when loading an object with slots whose jar generates an exception (such as a ZODB POSKeyError) in setstate. 4.2.3: * Fix the hashcode of Python TimeStamp objects on 64-bit Python on Windows. See https://github.com/zopefoundation/persistent/pull/55 * Stop calling gc.collect every time PickleCache.incrgc is called (every transaction boundary) in pure-Python mode (PyPy). This means that the reported size of the cache may be wrong (until the next GC), but it is much faster. This should not have any observable effects for user code. * Stop clearing the dict and slots of objects added to PickleCache.new_ghost (typically these values are passed to __new__ from the pickle data) in pure-Python mode (PyPy). This matches the behaviour of the C code. * Add support for Python 3.6. * Fix __setstate__ interning when state parameter is not a built-in dict 4.2.2: * Drop use of ctypes for determining maximum integer size, to increase pure-Python compatibility. See https://github.com/zopefoundation/persistent/pull/31 * Ensure that __slots__ attributes are cleared when a persistent object is ghostified. (This excluses classes that override __new__. See https://github.com/zopefoundation/persistent/wiki/Notes_on_state_ new_and_slots if you’re curious.) 4.2.1: * Fix the hashcode of C TimeStamp objects on 64-bit Python 3 on Windows. 4.2.0: * Fixed the Python(/PYPY) implementation TimeStamp.timeTime method to have subsecond precision. * When testing PURE_PYTHON environments under tox, avoid poisoning the user’s global wheel cache. * Add support for Python 3.5. * Drop support for Python 2.6 and 3.2. 4.1.1: * Fix manifest and re-upload to fix stray files included in 4.1.0. 4.1.0: * Make the Python implementation of Persistent and PickleCache behave more similarly to the C implementation. In particular, the Python version can now run the complete ZODB and ZEO test suites. * Fix the hashcode of the Python TimeStamp on 32-bit platforms. - Converted to single-spec - Dropped fix_32-bit_timestamp_hashcode.patch (fixed upstream)- update to version 4.0.9: * Make the C and Python TimeStamp objects behave more alike * Intern keys of object state in __setstate__ to reduce memory usage when unpickling multiple objects with the same attributes * Add support for PyPy3 * 100% branch coverage - additional changes from version 4.0.8: * Add support for Python 3.4 * In pure-Python Persistent, avoid loading state in _p_activate for non-ghost objects (which could corrupt their state). (PR #9) * In pure-Python, and don’t throw POSKeyError if _p_activate is called on an object that has never been committed. (PR #9) * In pure-Python Persistent, avoid calling a subclass’s __setattr__ at instance creation time. (PR #8) * Make it possible to delete _p_jar / _p_oid of a pure-Python Persistent object which has been removed from the jar’s cache (fixes aborting a ZODB Connection that has added objects). (PR #7) - additional changes from version 4.0.7: * Avoid a KeyError from _p_accessed() on newly-created objects under pure-Python: these objects may be assigned to a jar, but not yet added to its cache. (PR #6) * Avoid a failure in Persistent.__setstate__ when the state dict contains exactly two keys. (PR #5) * Fix a hang in picklecache invalidation if OIDs are manually passed out-of-order. (PR #4) * Add PURE_PYTHON environment variable support: if set, the C extensions will not be built, imported, or tested - update project URL - point the source URL to pypi - drop type-mismatch.patch: fixed upstream - add fix_32-bit_timestamp_hashcode.patch: fix timestamp hash computation on 32 bit platform - pass -q to test to avoid spamming the build log - rename CHANGES.txt and README.txt to CHANGES.rst and README.rst: changed upstream- type-mismatch.patch: Use Py_ssize_t rather than PY_LONG_LONG for sizes- version 4.0.6: initial buildpython-persistent-develobs-arm-9 16150740514.5.0-bp153.1.234.5.0-bp153.1.234.5.0-bp153.1.234.5.0-bp153.1.23persistentcPersistence.hring.h_compat.hcPersistence.hring.h/usr/include/python2.7//usr/include/python2.7/persistent//usr/lib64/python2.7/site-packages/persistent/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protectionobs://build.opensuse.org/openSUSE:Backports:SLE-15-SP3/standard/2fa073b76c8cc3dfe24eda52f3c59cb8-python-persistentcpioxz5aarch64-suse-linuxdirectoryC source, ASCII textASCII textI !-&[sutf-8a8f8077e6a99243a75dfd62ef1f4f860864a57442e39bc0cb91acfbf7a09b5dc? 7zXZ !t/F ] crt:bLLsfsUq22ng-LBp4EiL_3<ƪ{>M8rD;*1S.yBu2.|ǓK&m$&6+ D'03Tq#5)Xf[9B|>M[8߭̈́ nζrsRLmU4xLn_w{XB@4S\x j.\sQM_Nx^ ۚQ>Am Vg^o3*뇼wA`/ag_Թ&uS1cH-5UaR_ .*c=Vnod-?IK }LOzN"@V񵬠 0=_ܭ=fP:WǸxFBi?%,4~4D!c*{fQc60wogsnlɴDlnZ{6fKMj%/~p%z ZΥ(+z`0! EGd AK2dդ*Z';1txvp(^()4;bO1"C$JmnT1HdEN^xkiـt( (f]$燨6qD$:XZqAkؑyc&&gcar-XԳ.>$lAItCI7aA:6uݚMi* nPZ' W^ʠpzB K/_b -%Al=(xR:^5 ޜƅ p'^wYdfze .na0 eצd.tgڬ2事z;@HHݸc(B6 x2~2)9IX=eU+r=1ͭM!A8Nxe;p5HZJ T TVwR<]BTj"L 0Sb|\[ga@~5--GV%@YpdQ\K )=v9H3X[!_ۏ0A}Jsh U3yGX,5t_ vCh/e_AcTrHe#%.V3 a!\we(v9qg3p}iM M(H*,w ( 0Ӗ*fTB pWp;fbz/Kei&(X?>827y$A0&)A@6>CHuYddpP C 7᧶&v%<ɫJ3g.(?2- ,txKϸ2b8xU=I>mmQ\DpVBzOVFGxumdx>ǫU7n.iEBj#`j㝄WŰDLo TKNX49B2 R%n0 Z$[1v*g~4'#hDZ/%,2̼Rg5C@1gs -K%kc x!ݜ[\E\~K`Vgi4T :*Bõ߉k 4%يqG9Gpi;Ot:XN fuC~'/P}0< %45d\xQ^o|ٴ>"Q! )}RgDJo4IAG$,\*vc99NoHpZQ_p~ u^5Qd=Y9\z@:ENY5g9`Mα8`no7sciB{h_q waa$shoZp RQsa i0Lͷ7A`q878`R5I)`,p7J5lc*pk} 4[M%)T<^&č(E/J?0F8aϪn x}_&K$'b+F!ԛfE~"X$Ѵ( ֋+lmnNH'YV̏X(Cr|:#%'ɩFq9[<^3q?`"t+qnӠ52r-3;jrn<1 UFTxID71lus1Bޔb q6vIMb+ D"o2 ȸ̂QtP1zh#zi.BK{_q"7%9%Ž.UmCqڌ>.*:qQhSƩ`ϑB5z|dc[o H/;`-%"#[)iD0zNW H[AzmKЂ^&8q.6%1}C =>u鴎`R 6YYa,]vd'%1GZBB/Vvςǝ" GMmna(0+q{ ߁ n8 {G H^bp=knYy1*b]xhR/?*$\B ZP])]bFSOd#A`Z=c k7tk*3pk"\fAJufDqGKxVsUEÓLlo{U!_"J+6sn$1F'@΅M:BCg3`Ezh9ԍٶ1Q YZ