python-storm-django-0.20-8.2>t  DH`pY3/=„,b%yۉ"Ec!G88t϶.cB,^MtҢBOs>ٜ 'ٽ1&k^q m.U Ĝn^(~-kD[2Pb6Kh)V4$:u\NcvU{8ÌDz\VZ!T9- wl?xP8֑I'ALg?Ǽ@NaKFg>y Q8863f9042ccd253b49f5f0efdd7e0779b5bcb3b59NY3/=„0o4YI˃зX׹o"gHpg}?F9RyTln4%Kn6ir/(H~W2ˮ^tRgNH12fj*6d;Krh픑brK>' dH2!sn$PB*G[GʔCZT7fʏ7lx .i?Ͽ[>:!<?!,d  @ ( X  p         @ |  8P(89:hFG, H\ I XY\ ] ^hbcdeflu  v 8w x y z!Cpython-storm-django0.208.2Django support for the Storm ORMThe python-storm-django package contains the Django support for the Storm ORM.Y3{lamb01RmopenSUSE Leap 42.3openSUSELGPL-2.0+http://bugs.opensuse.orgDevelopment/Languages/Pythonhttp://storm.canonical.com/linuxx86_64 # ,3A큤A큤Y3vP/Y3vY3vP/Y3vP/Y3vP/Y3vP/Y3vc69eae5a65fe33fdbafbf489cb9a82ba62738f12a42fdda428ec9478f282b218d41d8cd98f00b204e9800998ecf8427e5850c0f0717a20e9c868b87639da3a61ce9afeedd082826c5f4f6c00bbf1bfcc5c76ec1217eab5cc97e524331c41d28095e53e76515b086b86a4ea32843e3d625ed20c4d06c6aaf76cec9210c56ca1d99e074a8702b39f81b3ba925f0521dc5363a4dc957efb4179dae81e60ac963a57rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpython-storm-0.20-8.2.src.rpmpython-storm-djangopython-storm-django(x86-64)@   python(abi)python-djangopython-stormrpmlib(CompressedFileNames)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsLzma)2.70.203.0.4-14.0-14.4.6-14.11.2RRi O]@Ni@Jv@p.drouand@gmail.comspeilicke@suse.comsaschpe@gmx.desaschpe@suse.dedominique-obs@leuenberger.net- Update to version 0.20 + A new CaptureTracer has been added to storm.testing, for capturing all SQL statements executed by Storm. It can be used like this: with CaptureTracer() as tracer: [#] Run queries pass print tracer.queries # Print all queries run in the context manager block You will need the python-fixtures package in order to use this feature. + Setuptools is now required to run setup.py. This makes it much easier to install the majority of the dependencies required to run the test suite in its entirety. + Disconnection errors arising from PostgreSQL are now more reliably detected, especially with regard to recent libpq updates in Ubuntu. There are also disconnection tests that simulate sudden termination of pgbouncer . + Insert expressions now support multi-row and subquery INSERT statements. + Support in the postgres backend to use the RETURNING extension for UPDATE statement, optionally specifying the columns to return. (PostgreSQL >= 8.2 only) + Add a new Distinct expression for pre-pending the 'DISTINCT' token to SQL expressions that support it (like columns). + Switch to REPEATABLE READ as isolation level for Postgres. If you use psycopg2 < 2.4, it doesn't change anything. For psycopg2 2.4 and newer, it will keep the same behavior on Postgres < 9 as it's equivalent to SERIALIZABLE, but it will be less strict on Postgres >= 9. + Add support for two-phase commits, using the DB API version 2.0, which is only supported by PostgreSQL. + ZStormResourceManager now has a schema_stamp_dir optional instance attribute that, if set, will be used to to save timestamps of the schema's patch packages, so schema upgrades will be performed only when needed. + When a SQLObjectResultSet object was sliced with slice.start and slice.end both zero (sqlobject[0:0]), the full, unsliced resultset was returned (bug #872086). + Fixes some test failures around Django disconnections from PostgreSQL stores. + Some of the proxy-less disconnection tests were causing segfaults, so they're now run in a subprocess via subunit's IsolatedTestCase, when it's available. + Fix a few non-uses of super() in TestHelper. + Abort the transaction and reset ZStorm at the end of tests/zope/README.txt. + Fix the ./test script to not import tests until after local eggs have been added to sys.path. This ensures that all possible features are available to the tests. + If transaction.commit() fails, call transaction.abort() to rollback everything and leave the transaction in a clean state when using Django's ZopeTransactionMiddleware and DatabaseWrapper. + It's now again possible to use the Desc() expression when passing an order_by parameter to a ReferenceSet (bug #620369). - Use sources tarball from Pypi- Require python-setuptools instead of distribute (upstreams merged)- Update to version 0.19: - A new Cast expressions compiles an input and the type to cast it to into a call the CAST function - The storm.zope.testing.ZStormResourceManager now supports applying database schemas using a custom URI, typically for connecting to the database using a different user with greater privileges than the user running the tests. Note that the format of the 'databases' parameter passed to the constructor of the ZStormResourceManager class has changed. - A new storm.twisted.transact module has been added with facilities to integrate Storm with twisted, by running transactions in a separate thread from the main one in order to not block the reactor. - ResultSet.config's "distinct" argument now also accepts a tuple of columns, which will be turned into a DISTINCT ON clause. - Provide wrapped cursor objects in the Django integration layer. Catch some disconnection errors that might otherwise be missed, leading to broken connections. - A new JSON property is available. It's similar to the existing Pickle property, except that it serializes data as JSON, and must back onto a text column rather than a byte column. - Cache the compilation of columns and tables - Add two new tracers extracted from the Launchpad codebase. BaseStatementTracer provides statements with parameters substituted to its subclasses. TimelineTracer records queries in a timeline (useful for OOPS reports). - New ROW constructor - Add support for Postgres DISTINCT ON queries. * See NEWS for more details - Split of Django and Twisted support packages- Update to version 0.18: * Include code to manage and migrate database schemas. See the storm.schema sub-package (bug #250412). * Added a storm.zope.testing.ZStormResourceManager class to manage a set of stores registered with ZStorm (bug #618704). * When a TimeoutError is raised it includes a description about why the exception was raised, to help make it easier to reason about timeout-related issues (bug #617973). * Improved the IResultSet interface to document the rationale of why some attributes are not included (bug #659883). * Make storm compatible with psycopg2 2.2 (bug #585704). * Fix bug #620615, which caused lazy expressions to cause subsequent loading of objects to explode if unflushed. * Fix bug #620508, which caused slicing a ResultSet to break subsequent count() calls. * Fix bug #659708, correcting the behavior of the sqlobject is_empty and __nonzero__ methods. * Fix bug #619017, which caused __storm_loaded__ to be called without its object's variables defined if the object were in the alive cache but disappeared. * See https://launchpad.net/storm for more changes... - Set license to LGPL-2.0+ (SPDX style) - BuildRequire python-distribute instead of python-setuptools - Use newer %{python_sitearch} macro instead of %{py_sitedir}- Package imported from PackMan, to be pushed to openSUSE:Factorylamb01 1495217019 0.20-8.20.20-8.2django__init__.py__init__.pycbackend__init__.py__init__.pycbase.pybase.pycmiddleware.pymiddleware.pycstores.pystores.pyc/usr/lib64/python2.7/site-packages/storm//usr/lib64/python2.7/site-packages/storm/django//usr/lib64/python2.7/site-packages/storm/django/backend/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -gobs://build.opensuse.org/openSUSE:Leap:42.3/standard/060708f6732e116c75df0081845839ad-python-stormcpiolzma5x86_64-suse-linuxdirectoryASCII textpython 2.7 byte-compiledemptyPython script, ASCII text executable RRRRRRRRRR"GswUD;?`] crt:bLLD63 jk ⱪc?5!, n}XcMQtM-g7eJ?Am-n{J<T^-Iiu DKm i0a(2{R-j lUP@#FZn|);՗R+ }[K5`4)osp;I$|B ?￞VQF*/NYޡ_U5~Bj'YK#ܰlYK%z'Ŀ_ސA`\VfT3s^{}RO4Ĥy Wh9!јl4ib0rMQ_'$TmgX\Is T".H/\=83}x6<"c Ņ qF?5ɭ[% e2%W98W8a.woIҽغbB=piJ EDXG)EdK]q*DLT@C'[yfOA`ꪓdTa&sxC^݂̉Xx @@h|OT༵i|-{LphMf-[{wu_>Ђcx%/mn'vES L-TF{:D*3">Io~'@X2J<#1$9Ǭ|/(ӻn7Wݝl/*MP$4]0y .#v#hg-7C~+ؿxJbI˯:w(cPO@@+"oX H aB.ؽ#_ xR J[`(/` >CP,I.O{Ul5eȀoS;0 q?.$5p.Dϱ/`U˚\ƝgCʘ`+0 |n&؇W?'9? <1YPVlKFm_}7~$E*.KYP٤ =-R_ iVk=GBY}mu8a,!;>kWҴ(6f;)yX9w50@N%9{gq0*0Jl焤:,贸yۏ4@)&{F%٨F"RQdb)8 5qq+`#~cx6{VT qG7d#xӦB bJYN]:{U@+@鹸l6W[P_[^\d4Ƚ B7sjwyˋ[n7j*^쓗uǸlRs'r$I - Bzvt{9`jFD,wY{bg+Qꜣ Yt .hTlj#s)"j#Usz>鑼ZXO KbxWdb1̵Ғ;Qs9'9Rwjp"ʑ6]jOl)QĀo.y4؛y1l>_MNZh0ۣrEyn,-DYrQ9T}cT Xm\uPS(M~fuJ 6l+*̾. 0և2;ݲ"R6~1GTAt%ymx-Gi97.:y&| vP./-tYن0pn^!x㩕qQ)Xo|2(F{}{ޗʶ!V%d/,ɹ, ׯ p;Gz.4b۝g}t?7}2=N-"o7->cc;(X8b2sn*dhtQZJ,fjVR׀WrIx_p5uXFE%]:UQ%^MZgU58;h&QrTwآTzlBWZ)blX0d9༃c73%#>)ǎJHWpP{Ƚǖx>>Bza'Fܴ,\?rTȣ f9s+[Ah)-%R L"Z˚`LKW8""zݿrLG%<륿8ƨ^[˶@i3T^Y'W:;l dwRgNupnt}<`շ,>Nӈ9o4ATqB2!"+>|K+l.^z]Å5B$o_GI nC! ߲8sfSRVoeO+ȫv3QGH{pP ż6)1pvFTx(/Rmx)i,'ā5c:eQAthnkMˋ&5;! |U#րкpSewi"cqoC@F.߀c wkVFRwgDܮͻ2uN-Lyd+4R5,#K`(T>#jq\mJc\)}rZwMT?Gd5NhJS*ƨ70K1'XS oi5v[3Dk$Hlmɿ0j'b,5+^[, 8a-j왚