Revisions of python-Cython

buildservice-autocommit accepted request 680181 from Ondřej Súkup's avatar Ondřej Súkup (mimi_vx) (revision 121)
baserev update by copy to link target
Ondřej Súkup's avatar Ondřej Súkup (mimi_vx) committed (revision 120)
- update to 0.29.6
 * Fix a crash when accessing the __kwdefaults__ special attribute of fused functions.
 * Fix the parsing of buffer format strings that contain numeric sizes, which
    could lead to incorrect input rejections.
 * Avoid a C #pragma in old gcc versions that was only added in GCC 4.6.
 * Auto-encoding of Unicode strings to UTF-8 C/C++ strings failed in Python 3,
    even though the default encoding there is UTF-8.
 * Crash when defining a Python subclass of an extension type and repeatedly
    calling a cpdef method on it.
 * Compiler crash when prange() loops appear inside of with-statements.
 * Some C compiler warnings were resolved.
 * Python conversion of C++ enums failed in 0.29.

- update to 0.29.6
 * Fix a crash when accessing the __kwdefaults__ special attribute of fused functions.
 * Fix the parsing of buffer format strings that contain numeric sizes, which
    could lead to incorrect input rejections.
 * Avoid a C #pragma in old gcc versions that was only added in GCC 4.6.
 * Auto-encoding of Unicode strings to UTF-8 C/C++ strings failed in Python 3,
    even though the default encoding there is UTF-8.
 * Crash when defining a Python subclass of an extension type and repeatedly
    calling a cpdef method on it.
 * Compiler crash when prange() loops appear inside of with-statements.
 * Some C compiler warnings were resolved.
 * Python conversion of C++ enums failed in 0.29.
buildservice-autocommit accepted request 671992 from Todd R's avatar Todd R (TheBlackCat) (revision 119)
baserev update by copy to link target
Todd R's avatar Todd R (TheBlackCat) accepted request 671991 from Todd R's avatar Todd R (TheBlackCat) (revision 118)
- Update to 0.29.4
  * Division of numeric constants by a runtime value of 0 could fail to raise a
    ``ZeroDivisionError``.  (Github issue #2820)
- Update to 0.29.4
  * Division of numeric constants by a runtime value of 0 could fail to raise a
    ``ZeroDivisionError``.  (Github issue #2820)
buildservice-autocommit accepted request 667297 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 117)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 667210 from Arun Persaud's avatar Arun Persaud (apersaud) (revision 116)
update to latest version
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 666797 from Todd R's avatar Todd R (TheBlackCat) (revision 115)
- Update to 0.29.2
The latest version of Ceph now supports cython >= 0.29
buildservice-autocommit accepted request 655560 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 114)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 653376 from Arun Persaud's avatar Arun Persaud (apersaud) (revision 112)
update to latest version
buildservice-autocommit accepted request 642685 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 111)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 642682 from Arun Persaud's avatar Arun Persaud (apersaud) (revision 110)
update to latest version
buildservice-autocommit accepted request 628791 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 109)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 628783 from Arun Persaud's avatar Arun Persaud (apersaud) (revision 108)
update to latest version
buildservice-autocommit accepted request 622245 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 107)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 622191 from Arun Persaud's avatar Arun Persaud (apersaud) (revision 106)
update to latest version
buildservice-autocommit accepted request 612616 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 105)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 612611 from Arun Persaud's avatar Arun Persaud (apersaud) (revision 104)
update to latest version
buildservice-autocommit accepted request 598790 from Todd R's avatar Todd R (TheBlackCat) (revision 103)
baserev update by copy to link target
Todd R's avatar Todd R (TheBlackCat) accepted request 598789 from Todd R's avatar Todd R (TheBlackCat) (revision 102)
- 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.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)
Displaying revisions 81 - 100 of 201
openSUSE Build Service is sponsored by