Revisions of python-Cython

Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 22)
Split 13.2 from Factory
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 233041 from Todd R's avatar Todd R (TheBlackCat) (revision 20)
Update to version 0.20.1 (forwarded request 233040 from TheBlackCat)
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 220746 from Denisart Benjamin's avatar Denisart Benjamin (posophe) (revision 19)
- add python-xml as require (forwarded request 220743 from jengelh)
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 220455 from Sascha Peilicke's avatar Sascha Peilicke (saschpe) (revision 18)
- Update to version 0.20:
  * Support for CPython 3.4.
  * Support for calling C++ template functions.
  * yield is supported in finally clauses.
  * The C code generated for finally blocks is duplicated for each exit
    case to allow for better optimisations by the C compiler.
  * Cython tries to undo the Python optimisationism of assigning a bound
    method to a local variable when it can generate better code for the
    direct call.
  * Constant Python float values are cached.
  * String equality comparisons can use faster type specific code in
    more cases than before.
  * String/Unicode formatting using the '%' operator uses a faster
    C-API call.
  * bytearray has become a known type and supports coercion from and
    to C strings.  Indexing, slicing and decoding is optimised. Note that
    this may have an impact on existing code due to type inference.
  * Using cdef basestring stringvar and function arguments typed as
    basestring is now meaningful and allows assigning exactly
    str and unicode objects, but no subtypes of these types.
  * Support for the __debug__ builtin.
  * Assertions in Cython compiled modules are disabled if the running
    Python interpreter was started with the "-O" option.
  * Some types that Cython provides internally, such as functions and
    generators, are now shared across modules if more than one Cython
    implemented module is imported.
  * The type inference algorithm works more fine granular by taking the
    results of the control flow analysis into account.
  * A new script in bin/cythonize provides a command line frontend
    to the cythonize() compilation function (including distutils build).
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_factory) accepted request 204142 from Sascha Peilicke's avatar Sascha Peilicke (saschpe) (revision 17)
- update to 0.19.2:
    * Some standard declarations were fixed or updated, including the previously
    incorrect declaration of ``PyBuffer_FillInfo()`` and some missing bits in
    ``libc.math``.
    * Heap allocated subtypes of ``type`` used the wrong base type struct at the
    C level.
    * Calling the unbound method dict.keys/value/items() in dict subtypes could
    call the bound object method instead of the unbound supertype method.
    * "yield" wasn't supported in "return" value expressions.
    * Using the "bint" type in memory views lead to unexpected results.
    It is now an error.
    * Assignments to global/closure variables could catch them in an illegal state
    while deallocating the old value. (forwarded request 204137 from dirkmueller)
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_factory) accepted request 203002 from Denisart Benjamin's avatar Denisart Benjamin (posophe) (revision 16)
update-alternative implementation (forwarded request 203001 from posophe)
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 15)
Split 13.1 from Factory
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 179674 from Sascha Peilicke's avatar Sascha Peilicke (saschpe) (revision 14)
housekeeping sr, necessary due to split between d:l:p and d:l:p3 and (manual) _link removal in Factory.
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 175239 from Sascha Peilicke's avatar Sascha Peilicke (saschpe) (revision 13)
- update to 0.19.1:
  * Completely empty C-API structs for extension type slots (protocols like
  number/mapping/sequence) are no longer generated into the C code.
  * Docstrings that directly follow a public/readonly attribute declaration
  in a cdef class will be used as docstring of the auto-generated property.
  This fixes ticket 206.
  * The automatic signature documentation tries to preserve more semantics
  of default arguments and argument types.  Specifically, ``bint`` arguments
  now appear as type ``bool``.
  * A warning is emitted when negative literal indices are found inside of
  a code section that disables ``wraparound`` handling.  This helps with
  fixing invalid code that might fail in the face of future compiler
  optimisations.
  * Constant folding for boolean expressions (and/or) was improved.
  * Added a build_dir option to cythonize() which allows one to place
  the generated .c files outside the source tree.

- Update to version 0.19:
  + Please see http://wiki.cython.org/ReleaseNotes-0.19 (forwarded request 175219 from dirkmueller)
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 162600 from Todd R's avatar Todd R (TheBlackCat) (revision 12)
fixed python3 build for <12.2 (forwarded request 162331 from apersaud)
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 11)
Split 12.3 from Factory
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 142493 from Sascha Peilicke's avatar Sascha Peilicke (saschpe) (revision 10)
- Update to version 0.17.2:
  + Please see http://wiki.cython.org/ReleaseNotes-0.18.2
- Drop excessive macro usage
- No need for "-fno-strict-aliasing" anymore
- One rpmlintrc is enough

- Update to version 0.17.2:
  + Please see http://wiki.cython.org/ReleaseNotes-0.18.2
- Drop excessive macro usage
- No need for "-fno-strict-aliasing" anymore
- One rpmlintrc is enough
- Python3 binary suffix should be "-%{py3_ver}"
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 9)
branched from openSUSE:Factory
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 124997 from Todd R's avatar Todd R (TheBlackCat) (revision 8)
Fix building on openSUSE 11.4 (forwarded request 124994 from TheBlackCat) (forwarded request 124996 from TheBlackCat)
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 122248 from Todd R's avatar Todd R (TheBlackCat) (revision 7)
Fix .py/.pyc issues
Stephan Kulow's avatar Stephan Kulow (coolo) committed (revision 6)
replace license with spdx.org variant
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 5)
Sascha Peilicke's avatar Sascha Peilicke (saschpe) accepted request 84174 from Sascha Peilicke's avatar Sascha Peilicke (saschpe) (revision 4)
- Update to version 0.15.1:
  * Please see http://wiki.cython.org/ReleaseNotes-0.15.1
Displaying revisions 61 - 80 of 83
openSUSE Build Service is sponsored by