python2-pep8-1.7.0-lp150.2.3.1<>,.]XF/=„4 ^ b1Q+"'Ġ†!5Iw˞\09ps{ |, g$b_"t/͸.VW+Iz=;րwtJCQA`zPJOQ)NZۄఱ`zF2z? ƴ׸lF2ȡZRWp1 7UQsp҃;۱Fj^6\tw1q!pӓ̏ώ 0(2FPATe>G$?$xd ! < ")q( J l   (l<   (8 9 : >'@/B7FCGXHIXYZ [$\8]|^ Tb!c!d"Le"Qf"Tl"Vu"hv"w#x#Ly#z##$$($,$2$tCpython2-pep81.7.0lp150.2.3.1Python style guide checkerPep8 is a tool to check your Python code against some of the style conventions in PEP 8.]XFlamb195openSUSE Leap 15.0openSUSEMIThttp://bugs.opensuse.orgDevelopment/Languages/Pythonhttps://github.com/pycqa/pep8linuxnoarch update-alternatives --install /usr/bin/pep8 pep8 /usr/bin/pep8-2.7 27 if [ ! -e "/usr/bin/pep8-2.7" ]; then update-alternatives --quiet --remove "pep8" "/usr/bin/pep8-2.7" fiooJ%B)I ZA큤A큤]XA]XA]XA]XA]XA]XA]XA]XA]XA]XA]XA]|@]XA]XA]XEVHU099d7133fe5a1d2ccbf29715a3cc7fba0b767b8c06b2ce45b7e3f39de2f03f87d27daf4e6a0514c660c1e0b8e7f1edd9ed512b0224bcb27a94128a7e3fbcab6c0e2367b6e008d8bb17b4c9916996f7ed0b214c499f04788d7be864b5334801f5001ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b7ba92e49252fdf8bb033a14615dc4bc9a0202f74bfdc5426e90ba3e7e7194ebc01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b8a5c157058cb822c96c864030f065cdb36fe33f673cddab3e8b6d418b09fbcb0ce5c758ed7985b4ae3b4d6e5991c2187cd59820ccc1047370a3769444d8628d88a10c94558186826ee6eab5b889c3f039efdb612ccec1f6ac29cefab9e4fe69efbe0f906054367f038d05147cd01182a3ac7388fbef34e5fcf51761bfa77c6294c1e630f713c3ba7a35058a7a0af56ffe1d1664d598f372f13e9f3b02194a88ff0215c487cb840e7c47a03ed5a20b66090ef1c00b254a633eb0f89beaec2b126/etc/alternatives/pep8@rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpython-pep8-1.7.0-lp150.2.3.1.src.rpmpython-pep8python2-pep8 @@     /bin/sh/bin/sh/bin/sh/usr/bin/python2python(abi)python2-setuptoolsrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PartialHardlinkSets)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)update-alternativesupdate-alternatives2.73.0.4-14.6.0-14.0.4-14.0-15.2-14.14.1]|@X @WV<@V<@T-@TC@S\Sl@SKMatej Cepl jmatejek@suse.comtoddrme2178@gmail.comtoddrme2178@gmail.comtoddrme2178@gmail.commcihar@suse.czdap.darkness@gmail.comdmueller@suse.comtoddrme2178@gmail.comdmueller@suse.com- Add 801_tokenize_changes.patch to fix test failures with more recent versions of Python (gh#PyCQA/pycodestyle#786 and gh#PyCQA/pycodestyle#801)- update for singlespec - delete shebang from pep8.py- Fix update-alternatives implementation.- Implement update-alternatives- Update to 1.7.0 + Announcements: * Repository moved to PyCQA Organization on GitHub: https://github.com/pycqa/pep8 + Changes: * Reverted the fix in #368, "options passed on command line are only ones accepted" feature. This has many unintended consequences in pep8 and flake8 and needs to be reworked when I have more time. * Added support for Python 3.5. (Issue #420 & #459) * Added support for multi-line config_file option parsing. (Issue #429) * Improved parameter parsing. (Issues #420 & #456) + Bugs: * Fixed BytesWarning on Python 3. (Issue #459)- Update to 1.6.2: * Added check for breaking around a binary operator. (Issue #197, Pull #305) * Assign variables before referenced. (Issue #287) * Report E731 for lambda assignment. (Issue #277) * Report E704 for one-liner def instead of E701. Do not report this error in the default configuration. (Issue #277) * Replace codes E111, E112 and E113 with codes E114, E115 and E116 for bad indentation of comments. (Issue #274) * Report E266 instead of E265 when the block comment starts with multiple #. (Issue #270) * Report E402 for import statements not at the top of the file. (Issue #264) * Do not enforce whitespaces around ** operator. (Issue #292) * Strip whitespace from around paths during normalization. (Issue #339 / #343) * Update --format documentation. (Issue #198 / Pull Request #310) * Add .tox/ to default excludes. (Issue #335) * Do not report E121 or E126 in the default configuration. (Issues #256 / #316) * Allow spaces around the equals sign in an annotated function. (Issue #357) * Allow trailing backslash if in an inline comment. (Issue #374) * If --config is used, only that configuration is processed. Otherwise, merge the user and local configurations are merged. (Issue #368 / #369)- Added "Requires: python-setuptools" to prevent "ImportError: No module named pkg_resources" if executed.- update to 1.5.7: * Skip the traceback on "Broken pipe" signal. (Issue #275) * Do not exit when an option in ``setup.cfg`` or ``tox.ini`` is not recognized. * Check the last line even if it does not end with a newline. (Issue #286) * Always open files in universal newlines mode in Python 2. (Issue #288)- update to 1.5.6: * Check the last line even if it has no end-of-line. - update to 1.5.5: * Fix regression with E22 checks and inline comments.- update to 1.5.4: * Fix negative offset with E303 before a multi-line docstring. * Fix wrong offset computation when error is on the last char of a physical line. (Issue #268) * Distribute a universal wheel file. * Report correct line number for E303 with comments. (Issue #60) * Do not allow newline after parameter equal. (Issue #252) * Fix line number reported for multi-line strings. (Issue #220) * Fix false positive E121/E126 with multi-line strings. (Issue #265) * Fix E501 not detected in comments with Python 2.5. * Fix caret position with ``--show-source`` when line contains tabs. * Fix a crash with E125 on multi-line strings. (Issue #263) * Report E129 instead of E125 for visually indented line with same indent as next logical line. (Issue #126) * Report E265 for space before block comment. (Issue #190) * Allow long lines in multiline strings and comments if they cannot be wrapped. (Issue #224). * Optionally disable physical line checks inside multiline strings, using ``# noqa``. (Issue #242) * Change text for E121 to report "continuation line under-indented for hanging indent" instead of indentation not being a multiple of 4. * Report E131 instead of E121 / E126 if the hanging indent is not consistent within the same continuation block. It helps when error E121 or E126 is in the ``ignore`` list. * Report E126 instead of E121 when the continuation line is hanging with extra indentation, even if indentation is not a multiple of 4. * Allow the checkers to report errors on empty files. (Issue #240) * Fix ignoring too many checks when ``--select`` is used with codes declared in a flake8 extension. (Issue #216) * Fix regression with multiple brackets. (Issue #214) * Fix ``StyleGuide`` to parse the local configuration if the keyword argument ``paths`` is specified. (Issue #246) * Fix a false positive E124 for hanging indent. (Issue #254) * Fix a false positive E126 with embedded colon. (Issue #144) * Fix a false positive E126 when indenting with tabs. (Issue #204) * Fix behaviour when ``exclude`` is in the configuration file and the current directory is not the project directory. (Issue #247) * The logical checks can return ``None`` instead of an empty iterator. (Issue #250) * Do not report multiple E101 if only the first indentation starts with a tab. (Issue #237) * Fix a rare false positive W602. (Issue #34) - remove no-tox-test.diff/bin/sh/bin/shpython-pep8lamb19 1574787142 1.7.0-lp150.2.3.11.7.0-lp150.2.3.11.7.0-lp150.2.3.1pep8pep8pep8-2.7pep8-1.7.0-py2.7.egg-infoPKG-INFOSOURCES.txtdependency_links.txtentry_points.txtnamespace_packages.txtnot-zip-safetop_level.txtpep8.pypep8.pycpep8.pyopython2-pep8CHANGES.txtREADME.rst/etc/alternatives//usr/bin//usr/lib/python2.7/site-packages//usr/lib/python2.7/site-packages/pep8-1.7.0-py2.7.egg-info//usr/share/doc/packages//usr/share/doc/packages/python2-pep8/-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:Maintenance:11587/openSUSE_Leap_15.0_Update/185735e4975dbb50b17960c80154cef5-python-pep8.openSUSE_Leap_15.0_Updatedrpmxz5noarch-suse-linuxemptyPython script, ASCII text executabledirectoryASCII textpython 2.7 byte-compiledRRRR2nq %JGif [ -e "/usr/bin/pep8-2.7" ]; then update-alternatives --install /usr/bin/pep8 pep8 /usr/bin/pep8-2.7 27 fi/bin/shutf-844a0eb48e8e93b3186015feffba4e97391a3c41a8bfd0a60994f912ba6044005?7zXZ !t/Q]"k%) HJ.\ƄJV&StsAE?C`vnTL'\{m4T4m T P$nxO=/DEN#X#Tl3FKCqVOy~uF<-}Iǁ$Xl u6u~uIR`,9GqPGɆRhΫۗD! Q⍫c.c~_458cUq@1J %A6D_|;@pe/jW/NR$?ϳhm1hK9iσM j_<ԛWg""boJ'xDtPa -ǧD=9X\kjSY|8 Aw]v'$RA ɂ+cRXYj6VO 'dq7fV{~onؠφ$ESJ؄NiHW3 Ipi@FFGCNF[af@Iy!Bpa|]: 'dkF6ΏbPwOP.(5K?zd㕩(Dӵ,5wp7z(@P+,h(28uf۬yم0%m,xzәiӬ|C3R;; /qk#)VRV+|B94r>C/r DrS/8WWYge=)3j/ĭD c6(awQd?_p,6K#(͐)ĂfjF,zܑ9g8;7ZꞦ9p~'.:P96Gc+w 6\ڧs1 O\4tPgt2Ęo`Z߁D8w 1 ~Ê+4Q_=éd°Aڽ6<Cr)ɭ%WAthh\eZlӭS2t4Kb̼6rF2o*V%̷x/u.Y=`jy"bE'؃dvM}GGzYƒh\KCԝ[n( Sf{'#6!qHHF7U͐ MmHݚ\zی/P_>6~Um[CfȁhR`*O<$`x0Qpw _NW,FaC^2'Pn$4r_]TRCWّOKܷq[*#1p]ib*V#pp N\̤L(6SYj#ȼ&!D5~QTS$A'EcIHV>.:= ? ::v  1F YZ