perl-Devel-Confess-0.009004-lp151.2.1 >  A [OK/=„ g+B0mX,c#q |v`ez\ uHc$_tLe֢KZNx@codq>T u9 kaf&!yj& a%Nx5w'0SƒW׈fES/n|ownӜZTb 8K}!bpFYj9Y<$af.{uaN18'B)2-8nbkӰW:Rw$c%tG{tFjuP},tLb<p>?d ( XPT\`s|  4  L  d           T   4 H ( 8 9 : FG H I XY,\T ] ^,bcdeflu4 vdw x yPz`ptzCperl-Devel-Confess0.009004lp151.2.1Include stack traces on all warnings and errorsThis module is meant as a debugging aid. It can be used to make a script complain loudly with stack backtraces when 'warn()'ing or 'die()'ing. Unlike other similar modules (e.g. Carp::Always), stack traces will also be included when exception objects are thrown. The stack traces are generated using Carp, and will work for all types of errors. Carp's 'carp' and 'croak' functions will also be made to include stack traces. $ perl -d:Confess -e 'sub f { die "arghh" }; sub g { f }; g' arghh at -e line 1. main::f() called at -e line 1 main::g() called at -e line 1 $ perl -d:Confess -w -e 'sub f { $a = shift; @a = @$a };' \ -e 'sub g { f(undef) }; g' Use of uninitialized value $a in array dereference at -e line 1. main::f(undef) called at -e line 2 main::g() called at -e line 2 Internally, this is implemented with $SIG{__WARN__} and $SIG{__DIE__} hooks. Stack traces are also included if raw non-object references are thrown. This module is compatible with all perl versions back to 5.6.2, without additional prerequisites. It contains workarounds for a number of bugs in the perl interpreter, some of which effect comparatively simpler modules, like Carp::Always.[OAlamb21openSUSE Leap 15.1openSUSEArtistic-1.0 or GPL-1.0+https://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/Devel-Confess/linuxnoarchKN*AA$$$$AA큤$$[O=[O=XHXHWAX,[O=[OAXHXH[O=[O=73579ce7dc9a03bd54712f3128091afdf7062a9f751fe7af6ea17dd8e9ec0adf3e6d6676ac380b9adfd590af007629d8454b588378e93a18e8dd95574f39d3624d580cce007d1cfccfa158f5b58df713c5aac80778e459000005f3614fbc52b1aeb385fe02feb404cf9a3b55340fb1718e995372922a3ee68187794021de0b3fa7cc0ff4eb06806515ac618c7da703bcd3fe75a4e1f9d694aa9a2fb33b05f6ac768edc748cbfdd633600319cff3205e1ca2a763713f8b58d33f47aa3120f315b28a25f1000740441cef512a1029c3de6ca8f6d5903451566ae96ad95cc8a9fc260af7fccb4a145818b2d8201d14af4ece03fea31763151c38b5053d97ba5ff2arootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-Devel-Confess-0.009004-lp151.2.1.src.rpmperl(Devel::Confess)perl(Devel::Confess::Builtin)perl(Devel::Confess::Source)perl(Devel::Confess::_Util)perl-Devel-Confess    perl(:MODULE_COMPAT_5.26.1)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1X+X0>W^@WF@U@U/@T@T&@coolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.com- updated to 0.009004 see /usr/share/doc/packages/perl-Devel-Confess/Changes 0.009004 - 2017-02-14 - prevent handlers from recursing, such as if our handlers are wrapped by other code. IO::All for example will do this.- updated to 0.009003 see /usr/share/doc/packages/perl-Devel-Confess/Changes 0.009003 - 2016-11-18 - more complete prereq list - fix inf handling - work around UNIVERSAL::isa and UNIVERSAL::can- updated to 0.009002 see /usr/share/doc/packages/perl-Devel-Confess/Changes 0.009002 - 2016-09-04 - fix test failures on perl 5.10.0 - fix regex warnings in perl 5.6 - work around threads issue in Carp in Safe compartments - don't skip dump test on Carp versions that use Carp::Heavy - test diagnostic and formatting improvements - avoid triggering overloads when checking for exception existence- updated to 0.009001 see /usr/share/doc/packages/perl-Devel-Confess/Changes 0.009001 - 2016-08-19 - fix handling of infinite options (dump, source, evalsource) - fix evalsource test by running with the debugger 0.009000 - 2016-08-18 - documentation fixes and improvements - more accurate handling of existing %SIG handlers - updated option parsing to allow setting specific values, such as color=force - stop relying on . being in @INC in tests - source option now accepts a number of lines of context to show - added evalsource option, which shows the source only of string evals - fix adding redundant trace information when errors are rethrown - improved warning messages when source option can't find source to display- updated to 0.008000 see /usr/share/doc/packages/perl-Devel-Confess/Changes 0.008000 - 2015-06-26 - if dump option is used, bare references and objects without stringify overloads will be dumpered when being output to the screen - stack trace properly attached to bare references are rethrown and will be output to the screen - avoid Test::More in threads test to limit code run as much as possible - other test cleanups - fix DEBUGGING detection in newer perls - protect tests against DEVEL_CONFESS_OPTIONS set in environment- updated to 0.007012 see /usr/share/doc/packages/perl-Devel-Confess/Changes 0.007012 - 2015-03-30 - avoid re-throwing errors during END on debugging perls- updated to 0.007011 - avoid triggering overloads when CLONEing 0.007010 - 2015-01-29 - fix incorrect version check that prevented using better names option - fix removing hooks when unimport called - fix stringifying refs in stack trace inside a Safe compartment on old perl - avoid updating stored refaddrs when they haven't changed - less noise when checking for broken threads - prevent leaking namespaces even in broken threads - fix version check for broken threads 0.007009 - 2015-01-23 - prevent segfaults on perl 5.10.0 and 5.8.9 with threads - fix leaking exception objects if another is thrown or a thread created 0.007008 - 2015-01-20 - don't attempt threading tests if threading is broken 0.007007 - 2015-01-19 - fatal warnings in destructors can cause segfaults, so disable them - protect against losing information during global destruction and then triggering our own errors - improve stack trace formatting when generated during global destruction 0.007006 - 2015-01-08 - don't delete packages that exceptions are currently blessed as - protect tests against other loaded modules effecting hooks - add test for warning passing fix from 0.007005 0.007005 - 2014-12-16 - fix how we pass options on to other warn/die handlers (RT#100951) - minor pod cleanups - improve diagnostics for bad options in DEVEL_CONFESS_OPTIONS 0.007004 - 2014-09-22 - make sure unwanted debugging flags are disabled as early as possible,- initial package 0.007003 * created by cpanspec 1.78.08lamb21 1528385345 0.0090040.0090040.009004-lp151.2.1DevelConfessConfess.pmBuiltin.pmSource.pm_Util.pmx86_64-linux-thread-multiperl-Devel-ConfessChangesREADMEDevel::Confess.3pm.gzDevel::Confess::Builtin.3pm.gz/usr/lib/perl5/vendor_perl/5.26.1//usr/lib/perl5/vendor_perl/5.26.1/Devel//usr/lib/perl5/vendor_perl/5.26.1/Devel/Confess//usr/share/doc/packages//usr/share/doc/packages/perl-Devel-Confess//usr/share/man/man3/-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.1/standard/98ef011a42163d6442d6c5d339088800-perl-Devel-Confesscpioxz5noarch-suse-linuxdirectoryPerl5 module source textASCII texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)PPPP>%a`M|6,utf-888a166b47367d114b9bbc3b80eee14cfb22b8c58dddd3e8cf236a50234617430? 7zXZ !t/C] crt:bLL z{6v>qS3-}(P_ v6 Xl_؃[<fƮ\fwVSN6_~n &X 1s )з 1c<𲌈qؑؑaÝcqK8Ju[ic_!.W9!Lqn;u!^>364gCabrQɌ*fϔ!V4MrI 2jyɀ ȩM3eQ\_*#Sob6$y`t o7ZmPz{*f$jaɪ{2[+kVfOvΑ䝲 ,u$%/[dR@7w'PqlGa)Ƿ /JHYY^/},.%/B@Ph|͚T3;6:,vy|pf %<*[h~.P2>6}f=I/5,C\BĊӕ1C$ 3"Nw09L6OبI^NE\ɨ]2:\8'#MCG8,=㒜i1Bk+%)]y:UuABR.VLb8Tg}9lKB#²UP=[|pR7\3m5PX[>KZ`B3d kPHSC=( hQVZrԕ6#~[Ef6IS!烈A#p_49@)2m熣Xt~?$ ~cuh]x&b޾;6Fa^w[Au_q\!^ )k%4ִ;ɣEn*Ry;2F )[ruӽpTY :'|C;*{)픪}xHt ^ p@9]ׇrU]F؛9qъ;o7E aTjߗ!ʧ"\`kB+TX,Zc$%=g=` (r*Ń}їߔ(ts7OЌW.U+ \T笈lmҲGlYEUwg> ,|͐eHSU"[@9b)ab4$KI. \mE"ޕY/EQQ:V8+A҇x0RD=텺JY}ҩ_> "ͱJ ђ9)0$;B},>s/D̺zǨ c_m2E ED{[- !X5W6۾9vȟX1S'`L09ҳUB!s p":sa |uyLza [|5个H²@lX9 z^4.-vA{_@,. (i|}!͖t J(7[pd}?5-RPT&4.O4CSB84I0?Xem ㉖<ׁFdMSƭ[aϘ1lP2)pYiy)u ucV鯺A|K 9NkZ[6/t殤P,| @6f0t1AztN%LzEą(sM4 Ngʂ)P T'Wndu#-@ JqsV+s;Z:d#Ot믪`s ŞNj{-b\RIF!Tl=L+\wo~3<|∦  X DXurTsSBQ2ŇC[ָ5r;pagrb3Ty\~/NT;rBz$|1F:+Ɔ0 ۲6!SE Q'܊&#'"鴱"4j+NଂE3؜/tw>ՋϚKVb6 _JDmn#&|,+yrÚ;piH\F֜5Ram| eeIŷfF뽢%ۂBg u OSHVbLk<-{2uf8c^"YK6n/iN?Caň>YVˣO_-sP2BS(zm~uI'WQSŔY%*Lynҟ-BeiI AzL l䙳-chF#D7k%"JT]\gVL C<'P:҈g-I _K/m/͜PŽ<*X{Hff@/*^^c"j9)e24RXC4CN淅)@Hѿ6eCzffEܬUcJ~$KDFbDJ,_+r@ vpjq+G܉ -u ky,Jf*g)ި a`'.h i-0)egiќ lK +Qyތ9NΔgEZY3پkLP#ɟO\\']1[yg\2g=$fsr ?,饙kKN3؁r"v1t )OMx} o4Aҿ>p5WS}:iO}} A[RI$V"Ŷy"G|2Q}iUbmo(Hj 2KbZѕۧvpԊX{2h>rt LEzmǺu00qff_[K$EҬ'4cwyq@*EMߎƐ;! 1iK`Y;`iT?]uZkXߑ}G|7Sk`c%t o8,9}t g9+8\GDMZmA6zN}/]D!bcKN:|\X D3ǣ ISGu~E7HE#eisa 1VL )ȶ., tD t+Seu,^W㔼tjF+版)S U,8k$]T@ ک :brS@ ƋIpfj %1Qk5\h?J]أ )|)H?d$|MizEӬqƄYm-p~3?T]3{TQn oO.6<@3+s!Yb7:]'ˠREsIU v ܷ%Ձ^iܭ-qu7jSg9 B{r l8=/Vf_|Dlu >f8 9,bu^QMw kF 2EUX_bqHy>EvY@)zvW},i ))n9}x"e=`rC~kma O0v :.$&d5;p,턋4T"eAa|/ UAm5V餌T$*5H3vo;(ڷ6K+:FѤĮ"OahZ&tJzwwK 0R W[H9sFdb MMYK2l|Wnu<͓`\XMVDD4&<_=a`F!VbxG?tcw :,:@[ iXRI*\ ~}ꠀFn(1ΠhIFЭa|TE<Q 'szxB UVؘ==&'!ϸ'?>p BY۳Q97QfT,W"U+%RD 9U|j=ҕ/D~w3{ }vVwU"I6# +gTL!|93 M$Im?V$k/ ~0Sױ)S\Sr /pXOVt9Fµ ZL1 õ"we86aa>X 5Ci{0TMS-խwP-pWB6 !>hrt?/-#q 4*dD4sxp !03JlMP݆$sQњ~RꭅoHh%x_R2Mハ}ȳ2]%˭@/&V"7- [pnw%@(r念k j_n1n+7!$|FeK1רld$Xɿí IQ Qòt Lr7Xs~}R2xz#LSBlW<<IWLzGFIA MIW |e>J-^vY0 hˑ/!qh:D? rK?vdkych+*PdDv^F|~+hPętENk\ jrLO!$9R%/0 V; Q[ڌ[$/(!DDԣ.1Lޘ ɘ"!&@pQx띶)ŇRaB5{U)XP yɁXOaObH`Z_̤"ϰQ!Msccn]ؗJ Nu1Yud2Mv")OkP{kL>f3,[@ -cW)(Z_ICXj6 `90 +ѭBr $0W9/Ϥ^kʰrTKp Q`>#2N~89>6% X?W xKoobaVe2ӅI89I5,ȟk׵9ZY0-\} 2u1KTp2i$M'2'q%A$ ,< o\1'Z4Ga'G֡#7nU{E|'n{e洺#z;:We3`RA z8_,?ĒzmsZZW[b%'Jl~Se;euk}UPr9Fɧx1%G'7w6_3?@vɨ٨Oip.g@~9, b' \|-W((K셝Y0'QQk}APAp50_'Ѓk, W.V±A "|eGui)bBZFY'S`q<Ŭ߲ wRm_ƟKzm;8Әi R> 4f{a(0Ӛj䝫J#6 uQG.1jŇڹ mlTj%4V]ˁي/9i)*gSYU&O$QT dD)FyiG tp1ɥb=AOCG6 h"')1Ot,5M>;,@hD2:G JrTZ񿻻<@dhB\_ǪJS2R4';nIr3zІH*RIXMg-ye0_!}K N]ސć\:$2U&jŶ4瓩SdJөi ng>NfM\IϨ**H k`GWNYȞ+vrO\ YJ`*cÖ.11 MA^":R7bRKNjm=GOޏKd_ٚ B額31kP|N9ᬺ<\OvO܂k| NLAyA(6dijJ X vrK_l 3ʰdInNMcHԁg`lvT\`,F lؙ"<qrG2gWL{͇Ls(bZ4hиrN-(N_$rg t4N#R{Dy >$k!PNR\ۤx ׮('?5ȑAݔPkB0.W1B&ʛBp:b x.r]~ۥb}sC@k#Qˆ3ܠ'UZ_Z,)tYWѲhTDJjY]kj<J:aˇz%L&u崱, vS @RD^ȾV2{d\a_k7q\٥fȸLbё |kp"X$X0<!MG,.QDt9a!42:4- (}c.T^R6 V_vK-P285Wy.i x_{HxHsN;Drp{UF @7ٝ[82l)vƒO?hŨ~kmњ$^h,k葧ɖ<'9H<)qAc04鈻 էVZ"w7V9?'eo8*MKH)8'NQ[ " wyTǺq@fU5n˕pka!',rl˗4օRLYt B͢DKR[2IZE|%d [|a ?+4@v^Zݗz__Wfw)&}$I4w*/>u fM-cNLRj,m iw MNCa+ٕ{'v.<)`:ksQhdK鏒Nf7q#x* Cr< tM5 kqgXHb4wJ9D.瀅޿%S aJYBQ ۂϵYv%[3 QdXcour~ ^vȄl~ XgA̪* z9@hg~ńd4Fp@9AȇC R"1q,a!TDk":Z`g ^D9Tez +\dmr' [Qw"fVka2vE^IlqĨW|qlGh:FDO[ >Q5vX[P}+Hni7Rm86lR;Cpխ)`Jd`E;Ȫ¬ݙyJA^..cg;7pdHkCѦhZǧ;CuaKc#[Vg }.ƽaD`Pg^ngd6kٺ$TJ>K%Ia V9Pߐ T첤@ 4,d}Phо!I/T+$CoK+m2hBoɳPf0 vd{v>#zaD ]@Џȏq'Bi{b;XQۻ|W^F9]Vl t[0{.ŞiAM'ĭ6Ҫ`(lW{eMcﲲՌ( weHDax nK>pKJ[NW If^TvYxDEkǞu\$}'ndZRQÌ?ݹgV95 3|e4D)xK48l!Vo:hER) [˗no\J].0ߊwyM٥9ӢxC|}wB@Dىho,uacy^iAvg,9aOjsTD p&:ȶN!R.-#1&ѓ2+v]Il(h SQlm=٦c.QfT) 4!8x@=Jl82:T7Cn|>f> /odSwf`p{X! %юnw?o(;BLI\!NfPy`V*xdbyf8eGʹ:$MwϖI)U2tq@!Q}bK+ع!"vx}PlGJؓ6p;t./"76 GJO^_v,/m>& ƒƗ59s-|tEy띾\__p ֊V{u<åínY e~C&/ kM8qhI9ŧgVjQwuPR0v/(>i>^"`b* ð[bRl`3|ɷXl\kE-'QBت*7&U~rQq1`>_Yu\8Łɿȣ2X:Skl&RaMXxfa£e`rTsPVpVfI$[=N~cCF-+>'.l(q%P&HaR 5.éqKo뢷=Uڱ%5*ԻUnP1EڥD2{(Mm{~\X"4p& lMԠ]QQGdych`SW^oAmLd\uQNr@@"U,sM b!1 X˫pygSkqMVXwwǜ )EX% )|8kU֊& 8q_o!ߥt'* G ء/H3#?pU`D0s#43_D(s([ 9l%J ]X/ R׎1`\׶vJk3. Qc;I>(&A=oZ0a)I ؇4fO&ۄ$)շvi $ӣs뭛'2!{!7,l#DgUf,2Iy©1 łaQV]' qFb^Zu'p6^mS~.`pqXS^nhcEJD9e.[[x[G.2p+Iߜ,HMb^dߙwV]F69MhL-a<Z7}kN26| °Z/n yiqrC_mp(VG{A|Q/L} ϼ(w([U;lPo@'$"uoeC0+ UiXlI?1z Uȯ'w/G|Sb3mLj5<3ЫO543֍H@5 75`P(S@vj \=+ݤLWOQ񭈛o١~߽׈r+A'dpX* "a~P5t|tHMmYӴYL= fP) z002rUMnb#^M39S%Ҧ1b;9i|DÛw4URU̐qqq+?L^^,oI]^"e ;Z.`86%p6>g_'aNj&Z2{7Rqn33<̖o+X@H.tV:X*{%s0a`=]2Ctu;JY) QA[|$mA yz>YV䍆O=u@9q9Dj.X>`m]0e`9٢cv IO^o<*LI˳?z38 |X)ܠVqh<yᬑJmxR> (/9E/P!v{$cԀ8$DU$2U1K7v>];yFF5qPD>?ڑ@vygcZ$IL:"w>=$o5Rָ1]&X7!_wc类esH1(8N@OQ}ɑT<$Nf)+|@Y57jvq@[.Bvؿ71k5e7w 1[3JimmzR_ m_iUds98#QdjP]CԎ`-Xh}&:/Pbz ej{I+r;#o6fNZʛȶZqfL d>fkBhiWV?sOdpAj:"}n ^uҧHP. c|3]Ꙕslut7ZvxL6 1Nv-o-|b+ 3F¾jLy%,xT2$mqʆA5T |(27@U7Gmk&{( M%4 ʇD5('-rҶƾ3K㶔nmfr6Ϯ4ԐL:#egp <.]Djiz/ afRQ>3CPˡ?zRrEAxӔ#- L< dqR,JBs~ֳF9d$fK$SM7\[ +@j{{N났1xU]|>Q.;>nHc>pశжI ȍRDUФ=^Xb)^J~tX \|D$]oi jCh` 9̜%\(|<(wUܳRrz(Capc(*$E8oM|A]|4T9l[^|ײu~ W$MBcÚUng.|ׁt: X[RG0hdKn e!?EqM߶BSeV EG> lmt Ŗ\yX 3ס^O7*k,@^zj$K# \@YvRA-9yd2W9ܒ,g|syjj~hZ@CfђL6Ei0gX [w.Ε9"35%r*"ށGr|ǻ%޷$OZFN փΣ;x8xzYlI`Hܧ?Ÿl⪏6\ZTL)шeNUhb ̪F:I^4!h{2+[uxp3K21H*{.SiSay1(gB^BjK8`JN) XBo[Y-M: ^(;{vn? ;wv=]T '6ǼWJ'KxڹĚq;ԼU%u>ڡ 5CC,Z[&Kly =&b7=v:{\z2jYaA0bP&y?bVUuYm<3@⮼~H$}Y4(HcܔlQ yzު6L F,?a' u0c,&luY!̀a,5`jGg`v vj$ a< ilC _I+&v,Ry%W5Cc1nnA w_y%(O#:Ò*쫡I$oFNOx b6@d=gGk 6N/ʶ]FL6{az.R7[x>S X u#TAV4 G{Qn)IBٕr ,͝׍€~H %>D\~|ȴtbm|*0S''USJc_ xU$GMm`-*.)dA[6]ykG]8gWAooAcޏ ԑu6d!5#wNznP_-kBH=ݙ^"ؗL>/*i%`T[7 6:س!=!WN:l9K\!ؖhK1ֆj/cxW,cNċ_q[QEӫK{b.f%iSOF 14b=ʅ-@P6Q D"\Bc1 [m9M4~ :k_y8%roO>;zj8jI(*o (?h,WM!]Pp\mNF4X.~9f!Wۍlƞ: !_Sy4hk)OsMn-}zNEDiaj%~22:YwY+juCLٸ[A}b, ƠP9-9Ѓ2΀m2Gĕ/HȦپuì$^-oS( &fcp