python-storm-postgresql-0.20-lp150.1.3 >  A ZW6/=„`e/+i嶻ani[[bk+0}J=OѕG%QlŸOSE3vOCnl塄UzY9>T:}T/ aU[lxs%Lh;1ç zԳۜM@XKsjz Q-ӝ -q[5H\ݑAT!Y|{F<5%%!GW)> ̉/ bW繃n۬].db3014b06e0c714878605d2c132de1caea35d636322dadb61704360f8fb50ad0640bb539cf84d69f1f6048b15efa83567dcb91ffEZW6/=„ Q3)ʅ>HC"tQM\j!1`a$gǢV  D]L>f1Y\=m<3\~^Z%޿4.;̵gΩPf^:)ɝE$g MWOMtVZa4 yNo,ȅ?n$d]eiأUYGXn~"ƂH=l bK3vW0qx3IiG"w>p>$?d ) N 9?HP T X `  $,|$(J8T9h:F{GHIXY\]^b)cd5e:f=l?uTv\wxyzCpython-storm-postgresql0.20lp150.1.3PostgreSQL backend for the Storm ORMThe python-storm-postgresql package contains the PostgreSQL database backend for Storm ORM.Rcloud123uopenSUSE Leap 15.0openSUSELGPL-2.0+https://bugs.opensuse.orgDevelopment/Languages/Pythonhttp://storm.canonical.com/linuxx86_64=08P/ZW3c1d1c94bd3f520e97d2a2e8b01f109f99ad43ac1a5e8f286b62725486b1f1b94b9e9b8b6fff53e917b86841ff387fcd6aa8bc14bc9b98e17b2f1642955defderootrootrootrootpython-storm-0.20-lp150.1.3.src.rpmpython-storm-backendpython-storm-postgresqlpython-storm-postgresql(x86-64)@    python(abi)python-psycopg2python-stormrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)2.70.203.0.4-14.6.0-14.0-15.2-14.14.1RRi 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:Factorycloud123 13846896000.200.20-lp150.1.30.20-lp150.1.3postgres.pypostgres.pyc/usr/lib64/python2.7/site-packages/storm/databases/-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:Leap:15.0/standard/060708f6732e116c75df0081845839ad-python-stormcpioxz5x86_64-suse-linuxPython script, ASCII text executablepython 2.7 byte-compiledRRyN-XV}#utf-8e72bdafa6617b013df56a0cf40a3b867bed9dc70612f1f0677d9ff59af6cc5cb? 7zXZ !t/w#] crv(vX032.ٶSӟOHiEEH] -\,4Sc6@/> E-;z{QCBVI>+mAڵZ{0ג xĈ֎:{y)7}8 c,iYVd^ N)=/oq[Zl(xd6E>op!p? A[ۄ%5ȩ ƅvB:g;wEڑSs7}sk@‹#C7 "Iq,!@GkjvC6 #\[N5fQH18@ffePYcB6$Si|  'dnټcWsx͠ɨvɋxY?hD.yTCvrsj%&TȽI{=8H#`lңN6qPѴC_~ VjH- d]"/) `2~aSAO4; fpc~֮=R R3md5~ppӣ;t}4|Q‡e\'Y$ JsIuLlwY_Sp*#Ţt@ez+C,fl]]`V#u%>KIc=lH4 ( 4+aJ^p1.AP,;GԴ7~5B EQ*%Ra ˸ o2wa} ˫^$ʝ|d;Q v𮷽|xHtp V[06|[u"z_v?="yֽlSDڷߜNr=*&U8mlG.Fy:lg\{{/N6RzS*,&Lգ/N'8Z킉f mh=/O#'X6߅H#)#y5r-?;a6AqFz#^0VqbJ[@ʎd _ٺ28_̘Y X&ʫB@"{hN+ǃ}ؾFw'_}g1! RҮ*0AN]~]/҄S((j}۽g*h!Lm_y R.wX0gG! R&j+ KMcRYl!缊CЕX5 i0!s}Ũ^,k\wadZo'[^ąlx6opSwKC@9ٵwĤP549~́_' >{;Pf >0exr)Nv 60 @ D jK`*YUn`hn׺d4 B5tyBo辩‹SiY"`+{cOs 6.CD a4˥_TճCDl'xįc s[SGȨA@ER Ob(mܩL|dUr(17=ݠČ+|H=H4as^&Y{09#{t=?uOfHe 钥@w)|v뢃#ٜأyOk>LNBiPV8qA\grB^Z#c9:,Kn4,H!!kKӋOH4_&e#+f_a38 |, R[r%%Hp?MQ% iA2^;8wpקM?>8Hl/Ƿ"k蓉3-B6 \TҖU)y]^ԩ؝SrHZ\rv[1;LM0(vkҿׅN̳la\NM_S18SlOUgMU!/.HO,[i=}1hZ5{SAQcRP8[% W' |Va3 0E K0"{v.\i؝HJ b@i>=$Ç3>+T:u{56b6,# /.^X2 K@˳RIKyH{[wsGY~NJU!');N0P\8YS!|Hp7IkY:FKuV8 )~֚6 =b Fs9/BWoJ.V<3T̩@`9]mCpbcAێ@Qeg2T_t UGn2W-MEQ A+XQgz@&CTgu^Xf䜩G;Q6PƎɵnnK؁a];zywjtߴ Mя fV,8Z8 v,W[޺):A A ch[֥̔ *Et#C[EsS;D1lТZpU0D5h?: a<5t0 & HWTe+F^.Zk6B6%ײw_R$4gONUQe8AgS)ĿZbhӤu/a´J}vGn^2wEh{{W T-}P{7@1$mZj3?hq@P2Ûu;V&yIT0[ %`acRфЖVHtĒ/g(J=zvI Q DBX%%sc \̻Rؘ{ oc,MOD wʙ ^*,yMQY:zYd0=ZE~ssw3pt d٥=z<ݠi> xz)K3[c&bZ:g|Qvx*r8}zmr.ê g dT@Vm 'va)RhYcT27?wv%_*: 5_ys~Ur$&-{LU,?7ĆMGaDZuF;}rx,cmO~yz'9<=5h%(mNۤztls*FO,N a/ tU んlеaL/v6q8Umr+)wVp2*KQga#KzBwT:V@@SL1ả핸= SQn{85{d$7vtLD#7^ď/E}g9j P_ *vY D쐗U$XK9U@E&8\smGW4~/@'zǵ.m,agRG;y[@tԿQ.@/y21,(+*QudHS`7*^p!2YPuȒFϝoUc1!E=$Lw@GFlȹ[ajK}u/J( X-Tg *33QC 5ܹ7α p>3<7a"ʑByxŞRQuE-HP?Ò:ʄ'|Ժa,Yb.[.`fE}lH훒jv t6FfFpODnkҀnT`&8-jDթfxWm~Bl|@hhfqqy ZklhdѸQWlj6qvQ`΀Jm\yPbj6"=I0U[MW-J_>Fa)Z!bVd, ۼ0Ib ՠsޫ>[v@wR ]j\,cuFbsb]S L7MY#y'~"4/LqɆmLwWdtpy\`<'] A<뷜;aېaBҗ,pޥ4Wtt3y_wJBnC_KaC޶B#={*R,Sxw/b*o0<0„g7痠?z>dGGCY6+cu -Md:ܟ:/VeAMw'ƸW㍖8W[cs,ˀ+(Ao ]YljszDOaaey}:Vl241> g~m[pMa~:"%>@iYP9[r\_EeˤQr ,/j+H8~J^#Eڕ~YRBwz`mEL&w(k";RVXEUjQdFIJm'jWO$yFat8&l nMP^vMoGPXcuFRV:ũ:OxGda@T9SS4nbOЫxR"koɍcSE IpK8aa_hbt%̥3@u"3G;?:vz-4vjeH`.m|mi}EzB=Hj_j8bEtbz?