python3-Cython-0.29.14-102.1<>,$`Pp9|K 1ʦU k;B>|3ēzIu&e D AK/MVe$Pj&jcF-"K!]gA 5P[p"ȸݗy2T< Ҥ@@_Ef.OO܀oǩlC0N]eT[sTOC0>bo] KTX7ZXXOJd$kTAbXܶq!}ə8 ̨k.ґ>B ? d  dLP\`y $D 4D D DD TD D hDxDD DDT|4(h8p*9*:*>*@2F:GPDH`DIpDXY\D]D^1+bcd$e)f,l.u@DvPwDxDyz P ` d j Cpython3-Cython0.29.14102.1The Cython compiler for writing C extensions for the Python languageThe Cython language allows for writing C extensions for the Python language. Cython is a source code translator based on Pyrex, but supports more cutting edge functionality and optimizations. The Cython language is very close to the Python language (and most Python code is also valid Cython code), but Cython additionally supports calling C functions and declaring C types on variables and class attributes. This allows the compiler to generate very efficient C code from Cython code.`Ps390zp37USUSE Linux Enterprise 15SUSE LLC Apache-2.0https://www.suse.com/Unspecifiedhttp://www.cython.orglinuxs390x update-alternatives --install /usr/bin/cython cython /usr/bin/cython-3.6 36 \ --slave /usr/bin/cythonize cythonize /usr/bin/cythonize-3.6 \ --slave /usr/bin/cygdb cygdb /usr/bin/cygdb-3.6 if [ ! -e "/usr/bin/cython-3.6" ]; then update-alternatives --quiet --remove "cython" "/usr/bin/cython-3.6" fi{zs a 11R]7 V mm E.yy'n'n@H@H]]2]pY& x8To[M p0 fjK:t&~1L "6!MHAH&Q>8 s !4   }} MM%9%9bb l lNN } } $W6-t$wu | |**]D]D**>b>bh3h3]]kpkp  P P XXYYLL""**GKGK+j+jCC*f*f##>>UU.m.mg5g54b %%FF  G=  7 7/;/;ah(b   !!b5:=BDCEEBACFEFAFBBEADDDDGGAFADCBEEE@A >O&{5& o#'  $ ,3G dYc xA& 'dO mt ) y %^ " X}} b z$ 0  >  cc ""Tv}I |P?P/JJ==  99 T 2 $$yy>>H + T w w1y1y9sse@  ';R ef!).VYpTL0Am2;}5fqq$o$oTT:I:I ,,O ==F\ ,s X'A큤A큤큤A큤A큤A큤A큤큤큤큤A큤A큤큤A큤A큤A큤A큤A큤A큤A큤AA큤A큤A큤A큤A큤A큤A큤큤A큤A큤A큤큤A큤A큤큤A큤A큤A큤A큤A큤A큤A큤A큤A큤`Pw`Pw`Pw`Pw`Pu`Pw`Pu`Pw`Pu`Pv`Pw`PwYԝ]][XL"\ 'xy'). + String formatting with the '%' operator didn't call the special __rmod__() method if the right side is a string subclass that implements it. (Python issue 28598) + The directive language_level=3 did not apply to the first token in the source file. (Github issue #2230) + Overriding cpdef methods did not work in Python subclasses with slots. Note that this can have a performance impact on calls from Cython code. (Github issue #1771) + Fix declarations of builtin or C types using strings in pure python mode. (Github issue #2046) + Generator expressions and lambdas failed to compile in @cfunc functions. (Github issue #459) + Global names with const types were not excluded from star-import assignments which could lead to invalid C code. (Github issue [#2621]) + Several internal function signatures were fixed that lead to warnings in gcc-8. (Github issue #2363) + The numpy helper functions set_array_base() and get_array_base() were adapted to the current numpy C-API recommendations. Patch by Matti Picus. (Github issue #2528) + Some NumPy related code was updated to avoid deprecated API usage. Original patch by jbrockmendel. (Github issue #2559) + Several C++ STL declarations were extended and corrected. Patch by Valentin Valls. (Github issue #2207) + C lines of the module init function were unconditionally not reported in exception stack traces. Patch by Jeroen Demeyer. (Github issue #2492) + When PEP-489 support is enabled, reloading the module overwrote any static module state. It now raises an exception instead, given that reloading is not actually supported. + Object-returning, C++ exception throwing functions were not checking that the return value was non-null. Original patch by Matt Wozniski (Github Issue #2603) + The source file encoding detection could get confused if the c_string_encoding directive appeared within the first two lines. (Github issue #2632) + Cython generated modules no longer emit a warning during import when the size of the NumPy array type is larger than what was found at compile time. Instead, this is assumed to be a backwards compatible change on NumPy side. * Other changes + Cython now emits a warning when no language_level (2, 3 or '3str') is set explicitly, neither as a cythonize() option nor as a compiler directive. This is meant to prepare the transition of the default language level from currently Py2 to Py3, since that is what most new users will expect these days. The future default will, however, not enforce unicode literals, because this has proven a major obstacle in the support for both Python 2.x and 3.x. The next major release is intended to make this change, so that it will parse all code that does not request a specific language level as Python 3 code, but with str literals. The language level 2 will continue to be supported for an indefinite time. + The documentation was restructured, cleaned up and examples are now tested. The NumPy tutorial was also rewritten to simplify the running example. Contributed by Gabriel de Marmiesse. (Github issue #2245) + Cython compiles less of its own modules at build time to reduce the installed package size to about half of its previous size. This makes the compiler slightly slower, by about 5-7%.- update to version 0.28.5: * The discouraged usage of GCC's attribute optimize("Os") was replaced by the similar attribute cold to reduce the code impact of the module init functions. (Github issue #2494) * A reference leak in Py2.x was fixed when comparing str to unicode for equality.- update to version 0.28.4: * Bugs fixed + Reallowing tp_clear() in a subtype of an @no_gc_clear extension type generated an invalid C function call to the (non-existent) base type implementation. (Github issue #2309) + Exception catching based on a non-literal (runtime) tuple could fail to match the exception. (Github issue #2425) + Compile fix for CPython 3.7.0a2. (Github issue #2477)- update to version 0.28.3: * Set iteration was broken in non-CPython since 0.28. * UnicodeEncodeError in Py2 when %s formatting is optimised for unicode strings. (Github issue #2276) * Work around a crash bug in g++ 4.4.x by disabling the size reduction setting of the module init function in this version. (Github issue #2235)- Version update to 0.28.2 + Features added * ``abs()`` is faster for Python long objects. * The C++11 methods ``front()`` and ``end()`` were added to the declaration of ``libcpp.string``. Patch by Alex Huszagh. (Github issue #2123) * The C++11 methods ``reserve()`` and ``bucket_count()`` are declared for ``std::unordered_map``. Patch by Valentin Valls. (Github issue #2168) + Bugs fixed * The copy of a read-only memoryview was considered read-only as well, whereas a common reason to copy a read-only view is to make it writable. The result of the copying is now a writable buffer by default. (Github issue #2134) * The ``switch`` statement generation failed to apply recursively to the body of converted if-statements. * ``NULL`` was sometimes rejected as exception return value when the returned type is a fused pointer type. Patch by Callie LeFave. (Github issue #2177) * Fixed compatibility with PyPy 5.11. Patch by Matti Picus. (Github issue #2165) + Other changes * The NumPy tutorial was rewritten to use memoryviews instead of the older buffer declaration syntax. Contributed by Gabriel de Marmiesse. (Github issue #2162)- Version update to 0.28.1: * PyFrozenSet_New() was accidentally used in PyPy where it is lacking from the C-API. * Assignment between some C++ templated types were incorrectly rejected when the templates mix const with ctypedef. (Github issue #2148) * Undeclared C++ no-args constructors in subclasses could make the compilation fail if the base class constructor was declared without nogil. (Github issue #2157) * Bytes %-formatting inferred basestring (bytes or unicode) as result type in some cases where bytes would have been safe to infer. (Github issue #2153) * None was accidentally disallowed as typed return value of dict.pop().- update to version 0.28: * Features added + Cdef classes can now multiply inherit from ordinary Python classes. (The primary base must still be a c class, possibly object, and the other bases must not be cdef classes.) + Type inference is now supported for Pythran compiled NumPy expressions. Patch by Nils Braun. (Github issue #1954) + The const modifier can be applied to memoryview declarations to allow read-only buffers as input. (Github issues #1605, #1869) + C code in the docstring of a cdef extern block is copied verbatimly into the generated file. Patch by Jeroen Demeyer. (Github issue #1915) + When compiling with gcc, the module init function is now tuned for small code size instead of whatever compile flags were provided externally. Cython now also disables some code intensive optimisations in that function to further reduce the code size. (Github issue #2102) + Decorating an async coroutine with @cython.iterable_coroutine changes its type at compile time to make it iterable. While this is not strictly in line with PEP-492, it improves the interoperability with old-style coroutines that use yield from instead of await. + The IPython magic has preliminary support for JupyterLab. (Github issue #1775) + The new TSS C-API in CPython 3.7 is supported and has been backported. Patch by Naotoshi Seo. (Github issue #1932) + Cython knows the new Py_tss_t type defined in PEP-539 and automatically initialises variables declared with that type to Py_tss_NEEDS_INIT, a value which cannot be used outside of static assignments. + The set methods .remove() and .discard() are optimised. Patch by Antoine Pitrou. (Github issue #2042) + dict.pop() is optimised. Original patch by Antoine Pitrou. (Github issue #2047) + Iteration over sets and frozensets is optimised. (Github issue [#2048]) + Safe integer loops (< range(2^30)) are automatically optimised into C loops. + alist.extend([a,b,c]) is optimised into sequential list.append() calls for short literal sequences. + Calls to builtin methods that are not specifically optimised into C-API calls now use a cache that avoids repeated lookups of the underlying C function. (Github issue #2054) + Single argument function calls can avoid the argument tuple creation in some cases. + Some redundant extension type checks are avoided. + Formatting C enum values in f-strings is faster, as well as some other special cases. + String formatting with the '%' operator is optimised into f-strings in simple cases. + Subscripting (item access) is faster in some cases. + Some bytearray operations have been optimised similar to bytes. + Some PEP-484/526 container type declarations are now considered for loop optimisations. + Indexing into memoryview slices with view[i][j] is now optimised into view[i, j]. + Python compatible cython.* types can now be mixed with type declarations in Cython syntax. + Name lookups in the module and in classes are faster. + Python attribute lookups on extension types without instance dict are faster. + Some missing signals were added to libc/signal.pxd. Patch by Jeroen Demeyer. (Github issue #1914) + The warning about repeated extern declarations is now visible by default. (Github issue #1874) + The exception handling of the function types used by CPython's type slot functions was corrected to match the de-facto standard behaviour, so that code that uses them directly benefits from automatic and correct exception propagation. Patch by Jeroen Demeyer. (Github issue #1980) + Defining the macro CYTHON_NO_PYINIT_EXPORT will prevent the module init function from being exported as symbol, e.g. when linking modules statically in an embedding setup. Patch by AraHaan. (Github issue #1944) * Bugs fixed + If a module name is explicitly provided for an Extension() that is compiled via cythonize(), it was previously ignored and replaced by the source file name. It can now be used to override the target module name, e.g. for compiling prefixed accelerator modules from Python files. (Github issue #2038) + The arguments of the num_threads parameter of parallel sections were not sufficiently validated and could lead to invalid C code. (Github issue #1957) + Catching exceptions with a non-trivial exception pattern could call into CPython with a live exception set. This triggered incorrect behaviour and crashes, especially in CPython 3.7. + The signature of the special __richcmp__() method was corrected to recognise the type of the first argument as self. It was previously treated as plain object, but CPython actually guarantees that it always has the correct type. Note: this can change the semantics of user code that previously relied on self being untyped. + Some Python 3 exceptions were not recognised as builtins when running Cython under Python 2. + Some async helper functions were not defined in the generated C code when compiling simple async code. (Github issue #2075) + Line tracing did not include generators and coroutines. (Github issue #1949) + C++ declarations for unordered_map were corrected. Patch by Michael Schatzow. (Github issue #1484) + Iterator declarations in C++ deque and vector were corrected. Patch by Alex Huszagh. (Github issue #1870) + The const modifiers in the C++ string declarations were corrected, together with the coercion behaviour of string literals into C++ strings. (Github issue #2132) + Some declaration types in libc.limits were corrected. Patch by Jeroen Demeyer. (Github issue #2016) + @cython.final was not accepted on Python classes with an @cython.cclass decorator. (Github issue #2040) + Cython no longer creates useless and incorrect PyInstanceMethod wrappers for methods in Python 3. Patch by Jeroen Demeyer. (Github issue #2105) + The builtin bytearray type could not be used as base type of cdef classes. (Github issue #2106)- Export fno-strict-aliasing to CFLAGS- update to 0.27.3 - big list of changes since 0.26.1 please see CHANGES.txt - Also fixes bsc#1062237- Ensure neutrality of description.- update for multipython build- Update to version 0.25.1 + Bugs fixed * Fixes a bug with ``isinstance(o, Exception)`` (Github issue #1496). * Fixes bug with ``cython.view.array`` missing utility code in some cases (Github issue #1502). + Other changes * The distutils extension ``Cython.Distutils.build_ext`` has been reverted, temporarily, to be ``old_build_ext`` to give projects time to migrate. The new build_ext is available as ``new_build_ext``.- Fix source URL.- update to version 0.25: + Features added * def/cpdef methods of cdef classes benefit from Cython's internal function implementation, which enables introspection and line profiling for them. Implementation sponsored by Turbostream (www.turbostream-cfd.com). * The distutils extension ``Cython.Distutils.build_ext`` has now been updated to use cythonize which properly handles dependencies. The old extension can still be found in ``Cython.Distutils.old_build_ext`` and is now deprecated. * Calls to Python functions are faster, following the recent "FastCall" optimisations that Victor Stinner implemented for CPython 3.6. See https://bugs.python.org/issue27128 and related issues. * The new METH_FASTCALL calling convention for PyCFunctions is supported in CPython 3.6. See https://bugs.python.org/issue27810 * C++ classes can now have typedef members. STL containers updated with value_type. * Support for bazel using a the pyx_library rule in //Tools:rules.bzl. * Initial support for using Cython modules in Pyston. Patch by Daetalus. * Dynamic Python attributes are allowed on cdef classes if an attribute ``cdef dict __dict__`` is declared in the class. Patch by empyrical. * Cython implemented C++ classes can make direct calls to base class methods. Patch by empyrical. * New directive ``cython.no_gc`` to fully disable GC for a cdef class. Patch by Claudio Freire. * Buffer variables are no longer excluded from ``locals()``. Patch by da-woods. * Building f-strings is faster, especially when formatting C integers. * for-loop iteration over "std::string". * ``libc/math.pxd`` provides ``e`` and ``pi`` as alias constants to simplify usage as a drop-in replacement for Python's math module. * Speed up cython.inline(). * Binary lshift operations with small constant Python integers are faster. * Some integer operations on Python long objects are faster in Python 2.7. * Support for the C++ ``typeid`` operator. + Significant Bugs fixed * Division of complex numbers avoids overflow by using Smith's method. * Some function signatures in ``libc.math`` and ``numpy.pxd`` were incorrect. Pach by Michael Seifert. + Other changes * The "%%cython" IPython/jupyter magic now defaults to the language level of the current jupyter kernel. The language level can be set explicitly with "%%cython -2" or "%%cython -3". - update to version 0.24.1: * IPython cell magic was lacking a good way to enable Python 3 code semantics. It can now be used as "%%cython -3". * Follow a recent change in PEP 492 and CPython 3.5.1 that now requires the __aiter__() method of asynchronous iterators to be a simple def method instead of an async def method. * Coroutines and generators were lacking the __module__ special attribute. * C++ std::complex values failed to auto-convert from and to Python complex objects. * Namespaced C++ types could not be used as memory view types due to lack of name mangling. Patch by Ivan Smirnov. * Assignments between identical C++ types that were declared with differently typedefed template types could fail. * Rebuilds could fail to evaluate dependency timestamps in C++ mode. Patch by Ian Henriksen. * Macros defined in the distutils compiler option do not require values anymore. Patch by Ian Henriksen. * Minor fixes for MSVC, Cygwin and PyPy. - specfile: * changed to https for source url * updated source url to files.pythonhosted.org - update to version 0.24: * Features added + PEP 498: Literal String Formatting (f-strings). Original patch by Jelle Zijlstra. https://www.python.org/dev/peps/pep-0498/ + PEP 515: Underscores as visual separators in number literals. https://www.python.org/dev/peps/pep-0515/ + Parser was adapted to some minor syntax changes in Py3.6, e.g. https://bugs.python.org/issue9232 + The embedded C code comments that show the original source code can be discarded with the new directive emit_code_comments=False. + Cpdef enums are now first-class iterable, callable types in Python. + Ctuples can now be declared in pure Python code. + Posix declarations for DLL loading and stdio extensions were added. Patch by Lars Buitinck. + The Py2-only builtins unicode(), xrange(), reduce() and long are now also available in compile time DEF expressions when compiling with Py3. + Exception type tests have slightly lower overhead. This fixes ticket 868. + @property syntax fully supported in cdef classes, old syntax deprecated. + C++ classes can now be declared with default template parameters. * Bugs fixed + C++ exceptions raised by overloaded C++ operators were not always handled. Patch by Ian Henriksen. + C string literals were previously always stored as non-const global variables in the module. They are now stored as global constants when possible, and otherwise as non-const C string literals in the generated code that uses them. This improves compatibility with strict C compiler options and prevents non-const strings literals with the same content from being incorrectly merged. + Compile time evaluated str expressions (DEF) now behave in a more useful way by turning into Unicode strings when compiling under Python 3. This allows using them as intermediate values in expressions. Previously, they always evaluated to bytes objects. + isinf() declarations in libc/math.pxd and numpy/math.pxd now reflect the actual tristate int return value instead of using bint. + Literal assignments to ctuples avoid Python tuple round-trips in some more corner cases. + Iteration over dict(...).items() failed to get optimised when dict arguments included keyword arguments. + cProfile now correctly profiles cpdef functions and methods. - update to version 0.23.5: * Compile errors and warnings in integer type conversion code. This fixes ticket 877. Patches by Christian Neukirchen, Nikolaus Rath, Ian Henriksen. * Reference leak when "*args" argument was reassigned in closures. * Truth-testing Unicode strings could waste time and memory in Py3.3+. * Return values of async functions could be ignored and replaced by None. * Compiler crash in CPython 3.6. * Fix prange() to behave identically to range(). The end condition was miscalculated when the range was not exactly divisible by the step. * Optimised all(genexpr)/any(genexpr) calls could warn about unused code. This fixes ticket 876. - Remove unneeded python-Cython-c++11.patch- update to version 0.23.4: * Memory leak when calling Python functions in PyPy. * Compilation problem with MSVC in C99-ish mode. * Warning about unused values in a helper macro. - update to version 0.23.3: * Invalid C code for some builtin methods. This fixes ticket 856 again. * Incorrect C code in helper functions for PyLong conversion and string decoding. This fixes ticket 863, ticket 864 and ticket 865. Original patch by Nikolaus Rath. * Large folded or inserted integer constants could use too small C integer types and thus trigger a value wrap-around. * The coroutine and generator types of Cython now also register directly with the Coroutine and Generator ABCs in the backports_abc module if it can be imported. This fixes ticket 870. - update to version 0.23.2: * Compiler crash when analysing some optimised expressions. * Coverage plugin was adapted to coverage.py 4.0 beta 2. * C++ destructor calls could fail when '&' operator is overwritten. * Incorrect C literal generation for large integers in compile-time evaluated DEF expressions and constant folded expressions. * Byte string constants could end up as Unicode strings when originating from compile-time evaluated DEF expressions. * Invalid C code when caching known builtin methods. This fixes ticket 860. * ino_t in posix.types was not declared as unsigned. * Declarations in libcpp/memory.pxd were missing operator!(). Patch by Leo Razoumov. * Static cdef methods can now be declared in .pxd files. - update to version 0.23.1: * Invalid C code for generators. This fixes ticket 858. * Invalid C code for some builtin methods. This fixes ticket 856. * Invalid C code for unused local buffer variables. This fixes ticket 154. * Test failures on 32bit systems. This fixes ticket 857. * Code that uses "from xyz import *" and global C struct/union/array variables could fail to compile due to missing helper functions. This fixes ticket 851. * Misnamed PEP 492 coroutine property cr_yieldfrom renamed to cr_await to match CPython. * Missing deallocation code for C++ object attributes in certain extension class hierarchies. * Crash when async coroutine was not awaited. * Compiler crash on yield in signature annotations and default argument values. Both are forbidden now. * Compiler crash on certain constructs in finally clauses. * Cython failed to build when CPython's pgen is installed. - update to version 0.23: * Features added + PEP 492 (async/await) was implemented. See https://www.python.org/dev/peps/pep-0492/ + PEP 448 (Additional Unpacking Generalizations) was implemented. See https://www.python.org/dev/peps/pep-0448/ + Support for coverage.py 4.0+ can be enabled by adding the plugin "Cython.Coverage" to the ".coveragerc" config file. + Annotated HTML source pages can integrate (XML) coverage reports. + Tracing is supported in nogil functions/sections and module init code. + When generators are used in a Cython module and the module imports the modules "inspect" and/or "asyncio", Cython enables interoperability by patching these modules during the import to recognise Cython's internal generator and coroutine types. This can be disabled by C compiling the module with "-D CYTHON_PATCH_ASYNCIO=0" or "-D CYTHON_PATCH_INSPECT=0" + When generators or coroutines are used in a Cython module, their types are registered with the Generator and Coroutine ABCs in the collections or collections.abc stdlib module at import time to enable interoperability with code that needs to detect and process Python generators/coroutines. These ABCs were added in CPython 3.5 and are available for older Python versions through the backports_abc module on PyPI. See https://bugs.python.org/issue24018 + Adding/subtracting/dividing/modulus and equality comparisons with constant Python floats and small integers are faster. + Binary and/or/xor/rshift operations with small constant Python integers are faster. + When called on generator expressions, the builtins all(), any(), dict(), list(), set(), sorted() and unicode.join() avoid the generator iteration overhead by inlining a part of their functionality into the for-loop. + Keyword argument dicts are no longer copied on function entry when they are not being used or only passed through to other function calls (e.g. in wrapper functions). + The PyTypeObject declaration in cpython.object was extended. + The builtin type type is now declared as PyTypeObject in source, allowing for extern functions taking type parameters to have the correct C signatures. Note that this might break code that uses type just for passing around Python types in typed variables. Removing the type declaration provides a backwards compatible fix. + wraparound() and boundscheck() are available as no-ops in pure Python mode. + Const iterators were added to the provided C++ STL declarations. + Smart pointers were added to the provided C++ STL declarations. Patch by Daniel Filonik. + NULL is allowed as default argument when embedding signatures. This fixes ticket 843. + When compiling with --embed, the internal module name is changed to __main__ to allow arbitrary program names, including those that would be invalid for modules. Note that this prevents reuse of the generated C code as an importable module. + External C++ classes that overload the assignment operator can be used. Patch by Ian Henriksen. + Support operator bool() for C++ classes so they can be used in if statements. * Bugs fixed + Calling "yield from" from Python on a Cython generator that returned a value triggered a crash in CPython. This is now being worked around. See https://bugs.python.org/issue23996 + Language level 3 did not enable true division (a.k.a. float division) for integer operands. + Functions with fused argument types that included a generic 'object' fallback could end up using that fallback also for other explicitly listed object types. + Relative cimports could accidentally fall back to trying an absolute cimport on failure. + The result of calling a C struct constructor no longer requires an intermediate assignment when coercing to a Python dict. + C++ exception declarations with mapping functions could fail to compile when pre-declared in .pxd files. + cpdef void methods are now permitted. + abs(cint) could fail to compile in MSVC and used sub-optimal code in C++. Patch by David Vierra, original patch by Michael Enßlin. + Buffer index calculations using index variables with small C integer types could overflow for large buffer sizes. Original patch by David Vierra. + C unions use a saner way to coerce from and to Python dicts. + When compiling a module foo.pyx, the directories in sys.path are no longer searched when looking for foo.pxd. Patch by Jeroen Demeyer. + Memory leaks in the embedding main function were fixed. Original patch by Michael Enßlin. + Some complex Python expressions could fail to compile inside of finally clauses. + Unprefixed 'str' literals were not supported as C varargs arguments. + Fixed type errors in conversion enum types to/from Python. Note that this imposes stricter correctness requirements on enum declarations. * Other changes + Changed mangling scheme in header files generated by cdef api declarations. + Installation under CPython 3.3+ no longer requires a pass of the 2to3 tool. This also makes it possible to run Cython in Python 3.3+ from a source checkout without installing it first. Patch by Petr Viktorin. + jedi-typer.py (in Tools/) was extended and renamed to jedityper.py (to make it importable) and now works with and requires Jedi 0.9. Patch by Tzer-jen Wei.- Add python-Cython-c++11.patch to fix complex math testcase compile with GCC 6 defaulting to C++14. (bnc#963974)- "mangle" tests/run/cpdef_extern_func.pyx to allow package to build for SLE_11_SP3 and SLE_11_SP4. * cpdef const char* strchr(const char *haystack, int needle); does not seem to match any from /usr/include/string.h and fails for cpp tests via python runtests.py -vv * cpdef_extern_func.pyx was not present in 0.21.1- Require python-devel for Python.h (bnc#942385)- Remove unneeded numpy dependency to avoid dependency loop. - create dummy alternative to avoid 13.1's post-build-check bug - specfile: * fixing update_alternatives- Update to 0.22.1: Bugs fixed * Crash when returning values on generator termination. * In some cases, exceptions raised during internal isinstance() checks were not propagated. * Runtime reported file paths of source files (e.g for profiling and tracing) are now relative to the build root directory instead of the main source file. * Tracing exception handling code could enter the trace function with an active exception set. * The internal generator function type was not shared across modules. * Comparisons of (inferred) ctuples failed to compile. * Closures inside of cdef functions returning ``void`` failed to compile. * Using ``const`` C++ references in intermediate parts of longer expressions could fail to compile. * C++ exception declarations with mapping functions could fail to compile when pre-declared in .pxd files. * C++ compilation could fail with an ambiguity error in recent MacOS-X Xcode versions. * C compilation could fail in pypy3. * Fixed a memory leak in the compiler when compiling multiple modules. * When compiling multiple modules, external library dependencies could leak into later compiler runs. Fix by Jeroen Demeyer. This fixes ticket 845. - removed patch fix-32bit.patch as applied upstream- Use Source URL from cython.org- Add python-numpy as BuildRequires to have more complete test coverage- Fix doctests in 32-bit environment (fix-32bit.patch)- Update to 0.22: Features added * C functions can coerce to Python functions, which allows passing them around as callable objects. * C arrays can be assigned by value and auto-coerce from Python iterables and to Python lists (and tuples). * Extern C functions can now be declared as cpdef to export them to the module's Python namespace. Extern C functions in pxd files export their values to their own module, iff it exists. * Anonymous C tuple types can be declared as (ctype1, ctype2, ...). * PEP 479: turn accidental StopIteration exceptions that exit generators into a RuntimeError, activated with future import "generator_stop". See http://legacy.python.org/dev/peps/pep-0479/ * Looping over ``reversed(range())`` is optimised in the same way as ``range()``. Patch by Favian Contreras. Bugs fixed * Mismatching 'except' declarations on signatures in .pxd and .pyx files failed to produce a compile error. * Failure to find any files for the path pattern(s) passed into ``cythonize()`` is now an error to more easily detect accidental typos. * The ``logaddexp`` family of functions in ``numpy.math`` now has correct declarations. * In Py2.6/7 and Py3.2, simple Cython memory views could accidentally be interpreted as non-contiguous by CPython, which could trigger a CPython bug when copying data from them, thus leading to data corruption. See CPython issues 12834 and 23349. Other changes * Preliminary support for defining the Cython language with a formal grammar. To try parsing your files against this grammar, use the --formal_grammar directive. Experimental. * ``_`` is no longer considered a cacheable builtin as it could interfere with gettext. * Cythonize-computed metadata now cached in the generated C files.- fix update-alternatives handling in a distribution backwards compatible way- Re-enable test-suite. - Add gcc-c++ BuildRequires: needed for the test-suite to be able to pass.- Fix usage of update-alternatives.- Improve update-alternatives. - Remove Cython-fix-version-detection.patch (got fixed upstream) - update to version 0.21.1: * Features added - New cythonize option -a to generate the annotated HTML source view. - Missing C-API declarations in cpython.unicode were added. - Passing language='c++' into cythonize() globally enables C++ mode for all modules that were not passed as Extension objects (i.e. only source files and file patterns). - Py_hash_t is a known type (used in CPython for hash values). - PySlice_*() C-API functions are available from the cpython.slice module. - Allow arrays of C++ classes. * Bugs fixed - Reference leak for non-simple Python expressions in boolean and/or expressions. - To fix a name collision and to reflect availability on host platforms, standard C declarations [ clock(), time(), struct tm and tm* functions ] were moved from posix/time.pxd to a new libc/time.pxd. Patch by Charles Blake. - Rerunning unmodified modules in IPython's cython support failed. Patch by Matthias Bussonier. - Casting C++ std::string to Python byte strings failed when auto-decoding was enabled. - Fatal exceptions in global module init code could lead to crashes if the already created module was used later on (e.g. through a stale reference in sys.modules or elsewhere). - cythonize.py script was not installed on MS-Windows. * Other changes - Compilation no longer fails hard when unknown compilation options are passed. Instead, it raises a warning and ignores them (as it did silently before 0.21). This will be changed back to an error in a future release.- fix bashisms in pre script/bin/sh/bin/shs390zp37 1623937153  !""$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijlmnopqrstuvwxyy{|}}      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghjklmnopqrstuvwxyz{|}~      !"#$$&'()*+,-./0123456789:;<=>?@ABCD0.29.14-102.10.29.14-102.1      !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!""!################$$%%&&&&&&%%'((()**cygdbcythoncythonizecygdbcygdb-3.6cythoncython-3.6cythonizecythonize-3.6CythonCython-0.29.14-py3.6.egg-infoBuildBuildExecutable.pyCythonize.pyDependencies.pyDistutils.pyInline.pyIpythonMagic.pyTestsTestCyCache.pyTestInline.pyTestIpythonMagic.pyTestStripLiterals.py__init__.py__pycache__TestCyCache.cpython-36.opt-1.pycTestCyCache.cpython-36.pycTestInline.cpython-36.opt-1.pycTestInline.cpython-36.pycTestIpythonMagic.cpython-36.opt-1.pycTestIpythonMagic.cpython-36.pycTestStripLiterals.cpython-36.opt-1.pycTestStripLiterals.cpython-36.pyc__init__.cpython-36.opt-1.pyc__init__.cpython-36.pyc__init__.py__pycache__BuildExecutable.cpython-36.opt-1.pycBuildExecutable.cpython-36.pycCythonize.cpython-36.opt-1.pycCythonize.cpython-36.pycDependencies.cpython-36.opt-1.pycDependencies.cpython-36.pycDistutils.cpython-36.opt-1.pycDistutils.cpython-36.pycInline.cpython-36.opt-1.pycInline.cpython-36.pycIpythonMagic.cpython-36.opt-1.pycIpythonMagic.cpython-36.pyc__init__.cpython-36.opt-1.pyc__init__.cpython-36.pycCodeWriter.pyCompilerAnalysedTreeTransforms.pyAnnotate.pyAutoDocTransforms.pyBuffer.pyBuiltin.pyCmdLine.pyCode.pxdCode.pyCodeGeneration.pyCythonScope.pyDebugFlags.pyErrors.pyExprNodes.pyFlowControl.cpython-36m-s390x-linux-gnu.soFlowControl.pxdFlowControl.pyFusedNode.cpython-36m-s390x-linux-gnu.soFusedNode.pyFuture.pyInterpreter.pyLexicon.pyMain.pyMemoryView.pyModuleNode.pyNaming.pyNodes.pyOptimize.pyOptions.pyParseTreeTransforms.pxdParseTreeTransforms.pyParsing.pxdParsing.pyPipeline.pyPyrexTypes.pyPythran.pyScanning.cpython-36m-s390x-linux-gnu.soScanning.pxdScanning.pyStringEncoding.pySymtab.pyTestsTestBuffer.pyTestCmdLine.pyTestFlowControl.pyTestGrammar.pyTestMemView.pyTestParseTreeTransforms.pyTestSignatureMatching.pyTestTreeFragment.pyTestTreePath.pyTestTypes.pyTestUtilityLoad.pyTestVisitor.py__init__.py__pycache__TestBuffer.cpython-36.opt-1.pycTestBuffer.cpython-36.pycTestCmdLine.cpython-36.opt-1.pycTestCmdLine.cpython-36.pycTestFlowControl.cpython-36.opt-1.pycTestFlowControl.cpython-36.pycTestGrammar.cpython-36.opt-1.pycTestGrammar.cpython-36.pycTestMemView.cpython-36.opt-1.pycTestMemView.cpython-36.pycTestParseTreeTransforms.cpython-36.opt-1.pycTestParseTreeTransforms.cpython-36.pycTestSignatureMatching.cpython-36.opt-1.pycTestSignatureMatching.cpython-36.pycTestTreeFragment.cpython-36.opt-1.pycTestTreeFragment.cpython-36.pycTestTreePath.cpython-36.opt-1.pycTestTreePath.cpython-36.pycTestTypes.cpython-36.opt-1.pycTestTypes.cpython-36.pycTestUtilityLoad.cpython-36.opt-1.pycTestUtilityLoad.cpython-36.pycTestVisitor.cpython-36.opt-1.pycTestVisitor.cpython-36.pyc__init__.cpython-36.opt-1.pyc__init__.cpython-36.pycTreeFragment.pyTreePath.pyTypeInference.pyTypeSlots.pyUtilNodes.pyUtilityCode.pyVersion.pyVisitor.cpython-36m-s390x-linux-gnu.soVisitor.pxdVisitor.py__init__.py__pycache__AnalysedTreeTransforms.cpython-36.opt-1.pycAnalysedTreeTransforms.cpython-36.pycAnnotate.cpython-36.opt-1.pycAnnotate.cpython-36.pycAutoDocTransforms.cpython-36.opt-1.pycAutoDocTransforms.cpython-36.pycBuffer.cpython-36.opt-1.pycBuffer.cpython-36.pycBuiltin.cpython-36.opt-1.pycBuiltin.cpython-36.pycCmdLine.cpython-36.opt-1.pycCmdLine.cpython-36.pycCode.cpython-36.opt-1.pycCode.cpython-36.pycCodeGeneration.cpython-36.opt-1.pycCodeGeneration.cpython-36.pycCythonScope.cpython-36.opt-1.pycCythonScope.cpython-36.pycDebugFlags.cpython-36.opt-1.pycDebugFlags.cpython-36.pycErrors.cpython-36.opt-1.pycErrors.cpython-36.pycExprNodes.cpython-36.opt-1.pycExprNodes.cpython-36.pycFlowControl.cpython-36.opt-1.pycFlowControl.cpython-36.pycFusedNode.cpython-36.opt-1.pycFusedNode.cpython-36.pycFuture.cpython-36.opt-1.pycFuture.cpython-36.pycInterpreter.cpython-36.opt-1.pycInterpreter.cpython-36.pycLexicon.cpython-36.opt-1.pycLexicon.cpython-36.pycMain.cpython-36.opt-1.pycMain.cpython-36.pycMemoryView.cpython-36.opt-1.pycMemoryView.cpython-36.pycModuleNode.cpython-36.opt-1.pycModuleNode.cpython-36.pycNaming.cpython-36.opt-1.pycNaming.cpython-36.pycNodes.cpython-36.opt-1.pycNodes.cpython-36.pycOptimize.cpython-36.opt-1.pycOptimize.cpython-36.pycOptions.cpython-36.opt-1.pycOptions.cpython-36.pycParseTreeTransforms.cpython-36.opt-1.pycParseTreeTransforms.cpython-36.pycParsing.cpython-36.opt-1.pycParsing.cpython-36.pycPipeline.cpython-36.opt-1.pycPipeline.cpython-36.pycPyrexTypes.cpython-36.opt-1.pycPyrexTypes.cpython-36.pycPythran.cpython-36.opt-1.pycPythran.cpython-36.pycScanning.cpython-36.opt-1.pycScanning.cpython-36.pycStringEncoding.cpython-36.opt-1.pycStringEncoding.cpython-36.pycSymtab.cpython-36.opt-1.pycSymtab.cpython-36.pycTreeFragment.cpython-36.opt-1.pycTreeFragment.cpython-36.pycTreePath.cpython-36.opt-1.pycTreePath.cpython-36.pycTypeInference.cpython-36.opt-1.pycTypeInference.cpython-36.pycTypeSlots.cpython-36.opt-1.pycTypeSlots.cpython-36.pycUtilNodes.cpython-36.opt-1.pycUtilNodes.cpython-36.pycUtilityCode.cpython-36.opt-1.pycUtilityCode.cpython-36.pycVersion.cpython-36.opt-1.pycVersion.cpython-36.pycVisitor.cpython-36.opt-1.pycVisitor.cpython-36.pyc__init__.cpython-36.opt-1.pyc__init__.cpython-36.pycCoverage.pyDebuggerCygdb.pyDebugWriter.pyTestsTestLibCython.py__init__.py__pycache__TestLibCython.cpython-36.opt-1.pycTestLibCython.cpython-36.pyc__init__.cpython-36.opt-1.pyc__init__.cpython-36.pyctest_libcython_in_gdb.cpython-36.opt-1.pyctest_libcython_in_gdb.cpython-36.pyctest_libpython_in_gdb.cpython-36.opt-1.pyctest_libpython_in_gdb.cpython-36.pyccfuncs.ccodefiletest_libcython_in_gdb.pytest_libpython_in_gdb.py__init__.py__pycache__Cygdb.cpython-36.opt-1.pycCygdb.cpython-36.pycDebugWriter.cpython-36.opt-1.pycDebugWriter.cpython-36.pyc__init__.cpython-36.opt-1.pyc__init__.cpython-36.pyclibcython.cpython-36.opt-1.pyclibcython.cpython-36.pyclibpython.cpython-36.opt-1.pyclibpython.cpython-36.pyclibcython.pylibpython.pyDebugging.pyDistutils__init__.py__pycache____init__.cpython-36.opt-1.pyc__init__.cpython-36.pycbuild_ext.cpython-36.opt-1.pycbuild_ext.cpython-36.pycextension.cpython-36.opt-1.pycextension.cpython-36.pycold_build_ext.cpython-36.opt-1.pycold_build_ext.cpython-36.pycbuild_ext.pyextension.pyold_build_ext.pyIncludesDeprecatedpython.pxdpython_bool.pxdpython_buffer.pxdpython_bytes.pxdpython_cobject.pxdpython_complex.pxdpython_dict.pxdpython_exc.pxdpython_float.pxdpython_function.pxdpython_getargs.pxdpython_instance.pxdpython_int.pxdpython_iterator.pxdpython_list.pxdpython_long.pxdpython_mapping.pxdpython_mem.pxdpython_method.pxdpython_module.pxdpython_number.pxdpython_object.pxdpython_oldbuffer.pxdpython_pycapsule.pxdpython_ref.pxdpython_sequence.pxdpython_set.pxdpython_string.pxdpython_tuple.pxdpython_type.pxdpython_unicode.pxdpython_version.pxdpython_weakref.pxdstdio.pxdstdlib.pxdstl.pxdcpython__init__.pxdarray.pxdbool.pxdbuffer.pxdbytearray.pxdbytes.pxdceval.pxdcobject.pxdcomplex.pxddatetime.pxddict.pxdexc.pxdfloat.pxdfunction.pxdgetargs.pxdinstance.pxdint.pxditerator.pxdlist.pxdlong.pxdlongintrepr.pxdmapping.pxdmem.pxdmemoryview.pxdmethod.pxdmodule.pxdnumber.pxdobject.pxdoldbuffer.pxdpycapsule.pxdpylifecycle.pxdpystate.pxdpythread.pxdref.pxdsequence.pxdset.pxdslice.pxdstring.pxdtuple.pxdtype.pxdunicode.pxdversion.pxdweakref.pxdlibc__init__.pxderrno.pxdfloat.pxdlimits.pxdlocale.pxdmath.pxdsetjmp.pxdsignal.pxdstddef.pxdstdint.pxdstdio.pxdstdlib.pxdstring.pxdtime.pxdlibcpp__init__.pxdalgorithm.pxdcast.pxdcomplex.pxddeque.pxdforward_list.pxdfunctional.pxditerator.pxdlimits.pxdlist.pxdmap.pxdmemory.pxdpair.pxdqueue.pxdset.pxdstack.pxdstring.pxdtypeindex.pxdtypeinfo.pxdunordered_map.pxdunordered_set.pxdutility.pxdvector.pxdnumpy__init__.pxdmath.pxdopenmp.pxdposix__init__.pxddlfcn.pxdfcntl.pxdioctl.pxdmman.pxdresource.pxdselect.pxdsignal.pxdstat.pxdstdio.pxdstdlib.pxdstrings.pxdtime.pxdtypes.pxdunistd.pxdwait.pxdPlexActions.cpython-36m-s390x-linux-gnu.soActions.pxdActions.pyDFA.pyErrors.pyLexicons.pyMachines.pyRegexps.pyScanners.cpython-36m-s390x-linux-gnu.soScanners.pxdScanners.pyTiming.pyTraditional.pyTransitions.py__init__.py__pycache__Actions.cpython-36.opt-1.pycActions.cpython-36.pycDFA.cpython-36.opt-1.pycDFA.cpython-36.pycErrors.cpython-36.opt-1.pycErrors.cpython-36.pycLexicons.cpython-36.opt-1.pycLexicons.cpython-36.pycMachines.cpython-36.opt-1.pycMachines.cpython-36.pycRegexps.cpython-36.opt-1.pycRegexps.cpython-36.pycScanners.cpython-36.opt-1.pycScanners.cpython-36.pycTiming.cpython-36.opt-1.pycTiming.cpython-36.pycTraditional.cpython-36.opt-1.pycTraditional.cpython-36.pycTransitions.cpython-36.opt-1.pycTransitions.cpython-36.pyc__init__.cpython-36.opt-1.pyc__init__.cpython-36.pycRuntime__init__.py__pycache____init__.cpython-36.opt-1.pyc__init__.cpython-36.pycrefnanny.cpython-36m-s390x-linux-gnu.sorefnanny.pyxShadow.pyStringIOTree.pyTempita__init__.py__pycache____init__.cpython-36.opt-1.pyc__init__.cpython-36.pyc_looper.cpython-36.opt-1.pyc_looper.cpython-36.pyc_tempita.cpython-36.opt-1.pyc_tempita.cpython-36.pyccompat3.cpython-36.opt-1.pyccompat3.cpython-36.pyc_looper.py_tempita.cpython-36m-s390x-linux-gnu.so_tempita.pycompat3.pyTestUtils.pyTestsTestCodeWriter.pyTestCythonUtils.pyTestJediTyper.pyTestStringIOTree.py__init__.py__pycache__TestCodeWriter.cpython-36.opt-1.pycTestCodeWriter.cpython-36.pycTestCythonUtils.cpython-36.opt-1.pycTestCythonUtils.cpython-36.pycTestJediTyper.cpython-36.opt-1.pycTestJediTyper.cpython-36.pycTestStringIOTree.cpython-36.opt-1.pycTestStringIOTree.cpython-36.pyc__init__.cpython-36.opt-1.pyc__init__.cpython-36.pycxmlrunner.cpython-36.opt-1.pycxmlrunner.cpython-36.pycxmlrunner.pyUtilityAsyncGen.cBuffer.cBuiltins.cCConvert.pyxCMath.cCapsule.cCommonStructures.cComplex.cCoroutine.cCpdefEnums.pyxCppConvert.pyxCppSupport.cppCythonFunction.cEmbed.cExceptions.cExtensionTypes.cFunctionArguments.cImportExport.cMemoryView.pyxMemoryView_C.cModuleSetupCode.cObjectHandling.cOptimize.cOverflow.cPrinting.cProfile.cStringTools.cTestCyUtilityLoader.pyxTestCythonScope.pyxTestUtilityLoader.cTypeConversion.c__init__.py__pycache____init__.cpython-36.opt-1.pyc__init__.cpython-36.pycarrayarray.hUtils.py__init__.py__pycache__CodeWriter.cpython-36.opt-1.pycCodeWriter.cpython-36.pycCoverage.cpython-36.opt-1.pycCoverage.cpython-36.pycDebugging.cpython-36.opt-1.pycDebugging.cpython-36.pycShadow.cpython-36.opt-1.pycShadow.cpython-36.pycStringIOTree.cpython-36.opt-1.pycStringIOTree.cpython-36.pycTestUtils.cpython-36.opt-1.pycTestUtils.cpython-36.pycUtils.cpython-36.opt-1.pycUtils.cpython-36.pyc__init__.cpython-36.opt-1.pyc__init__.cpython-36.pyccython.cpython-36.opt-1.pyccython.cpython-36.pyccython.pypyximport__init__.py__pycache____init__.cpython-36.opt-1.pyc__init__.cpython-36.pycpyxbuild.cpython-36.opt-1.pycpyxbuild.cpython-36.pycpyximport.cpython-36.opt-1.pycpyximport.cpython-36.pycpyxbuild.pypyximport.pypython3-CythonREADME.rstToDo.txtUSAGE.txtpython3-CythonCOPYING.txtLICENSE.txt/etc/alternatives//usr/bin//usr/lib64/python3.6/site-packages//usr/lib64/python3.6/site-packages/Cython//usr/lib64/python3.6/site-packages/Cython/Build//usr/lib64/python3.6/site-packages/Cython/Build/Tests//usr/lib64/python3.6/site-packages/Cython/Build/Tests/__pycache__//usr/lib64/python3.6/site-packages/Cython/Build/__pycache__//usr/lib64/python3.6/site-packages/Cython/Compiler//usr/lib64/python3.6/site-packages/Cython/Compiler/Tests//usr/lib64/python3.6/site-packages/Cython/Compiler/Tests/__pycache__//usr/lib64/python3.6/site-packages/Cython/Compiler/__pycache__//usr/lib64/python3.6/site-packages/Cython/Debugger//usr/lib64/python3.6/site-packages/Cython/Debugger/Tests//usr/lib64/python3.6/site-packages/Cython/Debugger/Tests/__pycache__//usr/lib64/python3.6/site-packages/Cython/Debugger/__pycache__//usr/lib64/python3.6/site-packages/Cython/Distutils//usr/lib64/python3.6/site-packages/Cython/Distutils/__pycache__//usr/lib64/python3.6/site-packages/Cython/Includes//usr/lib64/python3.6/site-packages/Cython/Includes/Deprecated//usr/lib64/python3.6/site-packages/Cython/Includes/cpython//usr/lib64/python3.6/site-packages/Cython/Includes/libc//usr/lib64/python3.6/site-packages/Cython/Includes/libcpp//usr/lib64/python3.6/site-packages/Cython/Includes/numpy//usr/lib64/python3.6/site-packages/Cython/Includes/posix//usr/lib64/python3.6/site-packages/Cython/Plex//usr/lib64/python3.6/site-packages/Cython/Plex/__pycache__//usr/lib64/python3.6/site-packages/Cython/Runtime//usr/lib64/python3.6/site-packages/Cython/Runtime/__pycache__//usr/lib64/python3.6/site-packages/Cython/Tempita//usr/lib64/python3.6/site-packages/Cython/Tempita/__pycache__//usr/lib64/python3.6/site-packages/Cython/Tests//usr/lib64/python3.6/site-packages/Cython/Tests/__pycache__//usr/lib64/python3.6/site-packages/Cython/Utility//usr/lib64/python3.6/site-packages/Cython/Utility/__pycache__//usr/lib64/python3.6/site-packages/Cython/__pycache__//usr/lib64/python3.6/site-packages/__pycache__//usr/lib64/python3.6/site-packages/pyximport//usr/lib64/python3.6/site-packages/pyximport/__pycache__//usr/share/doc/packages//usr/share/doc/packages/python3-Cython//usr/share/licenses//usr/share/licenses/python3-Cython/-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.suse.de/SUSE:Maintenance:20117/SUSE_SLE-15-SP2_Update/aea2fb7e84fa3f7218e6b58c55112d62-python-Cython.SUSE_SLE-15-SP2_Updatedrpmxz5s390x-suse-linux         emptyPython script, ASCII text executabledirectoryASCII textPython script, UTF-8 Unicode text executablepython 3.6 byte-compiledELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, BuildID[sha1]=1fcc81cd35a55780226fdd734276cedae836c550, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, BuildID[sha1]=3dacf535f9adcf1047652ffb6edf77e9b377769a, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, BuildID[sha1]=158b5bc7abb79a9921555da53cc6af90adc49516, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, BuildID[sha1]=7fbea68119dcb56745eac3369802b9ff30fafd6f, strippedRuby script, ASCII textAlgol 68 source, ASCII textUTF-8 Unicode textC source, ASCII textELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, BuildID[sha1]=1d737524e1eb6794c1456b07a1c431e0544a44c4, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, BuildID[sha1]=724e3408b858944febe4492f0211bdf188b2d487, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, BuildID[sha1]=bdc779adfe0771ab160084a537492ed524f084a1, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, BuildID[sha1]=232dab67b4be80dec2436fe5a6ee21bf0bae7fec, strippedC++ source, ASCII text  !"#$%&'()*+,-./0123456<=>DEFGHIJKLMNOPQRSTUV\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !'()*+,-./0123456789:;<=>?@ABCDEFLMNOPQRSTUVWXY_`abcdefghijklmnopqrstuvwxyz{|}~RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR`Tqe_ŊKutf-8965ae1558f9a213fd9d57db79db4085a7e2d5e93baf85b6de3f60e52b010432b?7zXZ !t/'W]"k%) `=lokb=[hW3ޱ mQxFwTK?C3|z@Jw8EpK-UkD吤11RˠEpld=j-gm2 YJ$)QĎW?-_<_p;D3" V!|ǸKe??4ٴ!>?q0|LA;Cct'׸Q)ڢq KnR[YQWnPܦ8O|E.ӵuaz@d{$G]rP^Vu o;ZLSJv؜zΦsf]E5*⯊III|jJk~w%$lܫ=jO=])acwMuu첩CP5ﰅ$~xwoGĦo=Kw̠aBŻq O (v8=>fٔQ`/m_,No\$ԻQc>v.IhQ_}[%`#iC`%+NnlWOuL1²#Af 'aO߳TkkМu KT2EXN2vtEhټ~}f:X v\۰pw1ڣqn!xʂN=M({4piw 9[IHJe>[W<s$ :\ MncmUfQvӥ`m˵RI5ӿD򰂠*.WڅS \i4)#wQ i\--7t G#&XVQ8Fa?g_90.jQ>iIjg92s::^!骆@?(} &I`4H?pA(:2|y֬'kI;_q3`O^WT\ _qaaɱ$pWDip(C%¯@48uz+8Xt<cēyOY?Zh+s$+mwDnB`Qx&.|V"L %tV=ɰ%gж cVK 4%E@!JB]ˉ q<[H}P@sQfR%fv52YSŃ*Q~-IqF_m fO6ªsD@<^/ a6JiutJpZqDuF8H*GqYيl} .]UIBuB$7cݪL >$2%HO&g=5=h8w; ˸NnFq hHY=,xEhýjfBa1#?RϽ1D^e߀WGŠɔgym Xh dYPxZⳝ #w50M@xG*S 6Ws _"57UA =Hsf qqRϝh Wz|?VL @g<{)1^OlRpdaW_-@Npoo mdFDc&U] kTe87S'sS"5oP#foFԃ3\UQ7 ExSGQ;NlF#7Vo.3Pk#u4~y)Ur*;"8amm2) EX!wO^;*JwYߔ PEC]\bI0+E,}e[9:Ull#lq:ijWҰ3#x*lL =[-2.R i fϱy P+}Z^ ;QrDWq{7M_YݤsSɛ)mR^pqC5+^Xf@'pRZV2dL]ŠG"ԋ$}s utGTgg%x!?7*?6ʣa C dJ&7n#&Pr#;-WGhRB, G@>8P}~'8Dd1F񌃣D*7.e.)wXfH;/z=#:42&RݮQP4Aa>3j{zI~tG%'dJ`W#GܵaCz~*sr)Υb[uT>icW29El=Յ{k|Kk6OB&.\Tq񆪉\@C?!tҮ*gE| #g ®e/q3Z%&';ş|tM'çw\S7q*Kxz6%L%#DתcF*rs/m2§kEǮBK'1 ^,@QV o,BCnTx Y8:ēs#{l@a szCX؛hfTD ý_e0N1D:[ݙ.U8aW["/,{"by(Z!i*zݷzfpbÇi,ȹeCy=a=KЈ\@]ꁌ4mS=Lp@7P.:1x.w*)WTlp "ǟ Kit3͉=b͘b4=5⇻Ag 7ڄgZ:"h!y /6Wa4 }Wfa픫QӊͫqJRXDެ0O) qsh[ë`2̿|Agjh(ZBd\ĽrߓK%we*z@+ԟ5lBSKT` 9@e+\U7[exTہ0(1ui-^]%—JCpg R=W([l/^/K/`3_Lnd4!=8r0o-E`+w &z;l!IAQ9nnGqo$ {,|Rxyb5jLMwV-ۀcѓ'C7\cڭt+nha<c&:.k5]8a3߼D ɹ"HsJR^L2,<=S81üh$B)On YZ