python3-persistent-devel-4.5.0-bp155.2.10 >  A dkS̊I%z Ĩ/4 lw4J @HDԒN e?Lq Vľ}H7u>]T!$z)Dc Na!E ,X;vndF(<7@# fUdŗea4cc% X \Ng_k##m#֦#zcEmiu $b]*JsKLpNo.Xwi%c>m]xwG,KVϻ(xy,Q/sE8$uqQ\=*E I8b*V'(٨E{cwGTB~KFf7[b^S_?_tFU=ZNn&2iYCmxFgp^&҃8W'x*1d:CvXU>H̷u V4YRF$YtPCw 0ywMk!Hd8{UAV LjPjmA62f3fe90a0229b5c8a4fb7ddcf4ce5daeccc095ea44aa4af58dfda7c40e83b617e76a49966ef9834a04098d80fcb8f9abfbfc1cc1dkS̊I%z B5"hU aj^ZVD\Of*EuoFP9qU~hatx6d-7R^3~9$?g>6}*gx<1"D3أEiӔs<{TqŷゕuNPV=#+ej0qޥ^HBr-GedG 2j\[b#m{Gi)N9ILd; IO5`aLYH#=< C-EYBBC7aҮsiD3zۊQЋ{y,4ՁBdjf@F>:䰈&k4d l]1X+$%jYȭU@yj xs(AW+R}L9+ݹbi=pzZ&E"f̺-ĥ§i݌Ү6<)?OB[{G F014w' k5;:;9 Ka䫺|F<ެZkt4*1[`F>p; ? d! , K BHPh t    8d|T(w8 9 :x FGHIXY\(]@^bcd e f l u (v @z j |   Cpython3-persistent-devel4.5.0bp155.2.10Translucent persistent objectsThis package contains the files needed for binding the python3-persistent C module.dkSbuild74BSUSE Linux Enterprise 15 SP5openSUSEZPL-2.1https://bugs.opensuse.orgDevelopment/Languages/Pythonhttps://github.com/zopefoundation/persistentlinuxx86_64 O OA큤dkS\ \ \ \ \ b125f075c0a99fdb755a9009d8fa364636e802d81589e79d8e4dab719c01d38645ba575763b4be0a85c1211115902426053c275eeadc2decf98fdd5904eb004d7fbf85fb9fb1627485bfc2f8017c65765a634cd31ac87169da4ba2de911774edb125f075c0a99fdb755a9009d8fa364636e802d81589e79d8e4dab719c01d38645ba575763b4be0a85c1211115902426053c275eeadc2decf98fdd5904eb004drootrootrootrootrootrootrootrootrootrootrootrootpython-persistent-4.5.0-bp155.2.10.src.rpmpython3-persistent-develpython3-persistent-devel(x86-64)    python3-develpython3-persistentrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)4.5.03.0.4-14.6.0-14.0-15.2-14.14.3\\~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 buildbuild74 16847553984.5.0-bp155.2.104.5.0-bp155.2.10persistentcPersistence.hring.h_compat.hcPersistence.hring.h/usr/include/python3.6m//usr/include/python3.6m/persistent//usr/lib64/python3.6/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-protection -gobs://build.opensuse.org/openSUSE:Backports:SLE-15-SP5/standard/2fa073b76c8cc3dfe24eda52f3c59cb8-python-persistentcpioxz5x86_64-suse-linuxdirectoryC source, ASCII textASCII text V"I4!%iutf-8f3eb0f670afc899b4aeec92184052011529a83962fdc2434b1befa299c14020f?P7zXZ !t/F ] crt:bLL ؝.OF>Ґ|BHatP䣧͛' [45AҍgjU_>D>+/+­`C%VK^qɑvҺ9,#V!$FKeQ6P<}G hy *QԤGH6y0ux+eҩNpc%P"e XhFa{^Ft"pQu 4^Mn |>aCthGhb8VZs3E~6z5T k!-Bcoݍ bF>T4Xt= pfi^CaH->!vE_?۫zkLZpwI%dz{˿Zrt 꼩|h8|̌u՝F6xbR_Ξ%n4O*%U95x'Ԅ 6`4(%$fxhfG_#.m ^k7=yqFkjWLأ;7pW t:Tdm,qDݢԾYzuC1sh`xjbXdWퟖ…{y +WeʣS+wxdV;M7ve ϓ- q{Ǫ(hK{hc=FY^k4%.Ûeߝ![DAja)ܴEQmxktLujj(&%CDic@lQ?B! SupX׫FJ%3&ǽ״THܙUEiůڤU+D N;8zd*bIBM:}5%%=>$<͇i\ J(НrNu5ŤNl5jqa=Ybv˒|Gux<+|]1d"!n W_n"uNGy+/^;EY4KAaQP71& Ze:9)'8o4ykzDmqTԹWaWj2 JFP Nzc63):%~c*ZޢU_)p%O:iiUN_Y bQKûSw Lč,'o:W,CuM6Trk0Ԛ-baW*(v R鮘l^B|?K&o_rXEt EsxyW␊hȄXH1rt&l_Z/l<0"e=pInHĩo4TzYDjͶhL3*It"Oi0@0: ]%LuZ3T: geƧ r~f@ظM!] _"?3O2!$\ ۹jb`#^89zXԥ4g{eZ=2_kړ3S: x3u}4?6ھOT5Jc|/Ae J 9Ԝ`Z>-GV^QQO'ZAo13Ɗ{8:U p߄Ӎd$n-ү\kY2dFpDv u[_Y:ŠD֑3 lҠiw0w>|@3g]43XU 9Js粇į+\,F8bR&vh®ܼKfjkUP) 9?h:R6Tt % %-] 97DDJVr p-3tT/]VV[mb 0zfR4lɆ0#+ة7tKX+?|v( ֓bV(#N,Aq"ɢ3_NKP䈹߼BjqD<3♛B0& Oi.y=l{f ^YKK6 tv@OS^ b-273ckIrVka/pOFśfW>,q ڱ˭(9*_D嵐Iɬ*m7mPy.೸<~i-/-ݹWOLTz7r#8c$ͼ眞jPx Qkr,07Ku:o^/d֣p$j8"Xf Mx*OigJ%@{3mp6<3vv6/tx"0*jCof u{<>@Es7bEh/K2=+d^vН0NsEPq_#O.;: }4jvC:Odi:s*C_ +& xN!9Wx(l$ͥZog) rc)_܍pI YZ