File python-Cython.changes of Package python-Cython-doc
1412
1
-------------------------------------------------------------------
2
Sat Nov 16 16:44:06 UTC 2019 - Arun Persaud <arun@gmx.de>
3
4
- update to version 0.29.14:
5
* Bugs fixed
6
+ The generated code failed to initialise the tp_print slot in
7
CPython 3.8. Patches by Pablo Galindo and Orivej Desh (Github
8
issues #3171, #3201).
9
+ ? for bool was missing from the supported NumPy dtypes. Patch by
10
Max Klein. (Github issue #2675)
11
+ await was not allowed inside of f-strings. Patch by Dmitro
12
Getz. (Github issue #2877)
13
+ Coverage analysis failed for projects where the code resides in
14
separate source sub-directories. Patch by Antonio
15
Valentino. (Github issue #1985)
16
+ An incorrect compiler warning was fixed in automatic C++ string
17
conversions. Patch by Gerion Entrup. (Github issue #3108)
18
+ Error reports in the Jupyter notebook showed unhelpful stack
19
traces. Patch by Matthew Edwards (Github issue #3196).
20
+ Python.h is now also included explicitly from public header
21
files. (Github issue #3133).
22
+ Distutils builds with --parallel did not work when using
23
Cython's deprecated build_ext command. Patch by Alphadelta14
24
(Github issue #3187).
25
* Other changes
26
+ The PyMemoryView_*() C-API is available in
27
cpython.memoryview. Patch by Nathan Manville. (Github issue
28
#2541)
29
30
-------------------------------------------------------------------
31
Fri Jul 26 17:36:50 CEST 2019 - Matej Cepl <mcepl@suse.com>
32
33
- Update to 0.29.13:
34
- A reference leak for None was fixed when converting
35
a memoryview to a Python object. (Github issue #3023)
36
- The declaration of PyGILState_STATE in cpython.pystate was
37
unusable. Patch by Kirill Smelkov. (Github issue #2997)
38
- The declarations in posix.mman were extended. Patches by
39
Kirill Smelkov. (Github issues #2893, #2894, #3012)
40
41
-------------------------------------------------------------------
42
Sun Jul 21 16:56:52 UTC 2019 - Arun Persaud <arun@gmx.de>
43
44
- update to version 0.29.12:
45
* Fix compile error in CPython 3.8b2 regarding the PyCode_New()
46
signature. (Github issue #3031)
47
* Fix a C compiler warning about a missing int downcast. (Github
48
issue #3028)
49
* Fix reported error positions of undefined builtins and
50
constants. Patch by Orivej Desh. (Github issue #3030)
51
* A 32 bit issue in the Pythran support was resolved. Patch by Serge
52
Guelton. (Github issue #3032)
53
54
-------------------------------------------------------------------
55
Sat Jul 6 21:26:09 UTC 2019 - Arun Persaud <arun@gmx.de>
56
57
- update to version 0.29.11:
58
* Bugs fixed
59
+ Fix compile error in CPython 3.8b2 regarding the PyCode_New()
60
signature. Patch by Nick Coghlan. (Github issue #3009)
61
+ Invalid C code generated for lambda functions in cdef
62
methods. Patch by Josh Tobin. (Github issue #2967)
63
+ Support slice handling in newer Pythran versions. Patch by Serge
64
Guelton. (Github issue #2989)
65
+ A reference leak in power-of-2 calculation was fixed. Patch by
66
Sebastian Berg. (Github issue #3022)
67
+ The search order for include files was changed. Previously it
68
was include_directories, Cython/Includes, sys.path. Now it is
69
include_directories, sys.path, Cython/Includes. This was done to
70
allow third-party *.pxd files to override the ones in
71
Cython. Original patch by Matti Picus. (Github issue #2905)
72
+ Setting language_level=2 in a file did not work if
73
language_level=3 was enabled globally before. Patch by Jeroen
74
Demeyer. (Github issue #2791)
75
76
-------------------------------------------------------------------
77
Wed Jun 12 09:42:55 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
78
79
- Say goodbye to -doc subpackage as the documentation is online
80
and does not build with latest sphinx releases (even in master
81
at the moment).
82
- The testing in -doc spec was disabled anyway and if needed we
83
will reintroduce it as a multibuild
84
85
-------------------------------------------------------------------
86
Mon Jun 3 13:37:55 UTC 2019 - Ondřej Súkup <mimi.vx@gmail.com>
87
88
- update to 0.29.10
89
* Fix compile errors in CPython 3.8b1 due to the new "tp_vectorcall" slots.
90
* Remove an incorrect cast when using true-division in C++ operations.
91
* C compile errors with CPython 3.8 were resolved.
92
* Python tuple constants that compare equal but have different item types
93
could incorrectly be merged into a single constant.
94
* Non-ASCII characters in unprefixed strings could crash the compiler
95
when used with language level 3str
96
* Starred expressions in %-formatting tuples could fail to compile for unicode strings
97
* Passing Python class references through cython.inline() was broken.
98
99
-------------------------------------------------------------------
100
Tue Apr 16 09:26:50 UTC 2019 - Ondřej Súkup <mimi.vx@gmail.com>
101
102
- update to 0.29.7
103
* Crash when the shared Cython config module gets unloaded and another
104
Cython module reports an exceptions. Cython now makes sure it keeps
105
an owned reference to the module
106
* Resolved a C89 compilation problem when enabling the fast-gil sharing feature.
107
* Coverage reporting did not include the signature line of cdef functions
108
* Casting a GIL-requiring function into a nogil function now issues a warning
109
* Generators and coroutines were missing their return type annotation
110
111
-------------------------------------------------------------------
112
Tue Apr 2 16:08:29 UTC 2019 - Todd R <toddrme2178@gmail.com>
113
114
- Add cython_use_imgmath.patch
115
The pngmath Sphinx extension has been removed. Use imgmath instead.
116
See: gh#cython/cython#2818
117
118
-------------------------------------------------------------------
119
Thu Feb 28 15:30:08 UTC 2019 - Ondřej Súkup <mimi.vx@gmail.com>
120
121
- update to 0.29.6
122
* Fix a crash when accessing the __kwdefaults__ special attribute of fused functions.
123
* Fix the parsing of buffer format strings that contain numeric sizes, which
124
could lead to incorrect input rejections.
125
* Avoid a C #pragma in old gcc versions that was only added in GCC 4.6.
126
* Auto-encoding of Unicode strings to UTF-8 C/C++ strings failed in Python 3,
127
even though the default encoding there is UTF-8.
128
* Crash when defining a Python subclass of an extension type and repeatedly
129
calling a cpdef method on it.
130
* Compiler crash when prange() loops appear inside of with-statements.
131
* Some C compiler warnings were resolved.
132
* Python conversion of C++ enums failed in 0.29.
133
134
-------------------------------------------------------------------
135
Tue Feb 5 22:17:38 UTC 2019 - Todd R <toddrme2178@gmail.com>
136
137
- Update to 0.29.4
138
* Division of numeric constants by a runtime value of 0 could fail to raise a
139
``ZeroDivisionError``. (Github issue #2820)
140
141
-------------------------------------------------------------------
142
Sun Jan 20 04:34:42 UTC 2019 - Arun Persaud <arun@gmx.de>
143
144
- specfile:
145
* update copyright year
146
147
- update to version 0.29.3:
148
* Some C code for memoryviews was generated in a non-deterministic
149
order. Patch by Martijn van Steenbergen. (Github issue #2779)
150
* C89 compatibility was accidentally lost since 0.28. Patches by
151
gastineau and true-pasky. (Github issues #2778, #2801)
152
* A C compiler cast warning was resolved. Patch by Michael
153
Buesch. (Github issue #2774)
154
* An compilation failure with complex numbers under MSVC++ was
155
resolved. (Github issue #2797)
156
* Coverage reporting could fail when modules were moved around after
157
the build. Patch by Wenjun Si. (Github issue #2776)
158
159
- changes from version 0.29.2 :
160
* The code generated for deduplicated constants leaked some
161
references. (Github issue #2750)
162
* The declaration of sigismember() in libc.signal was
163
corrected. (Github issue #2756)
164
* Crashes in compiler and test runner were fixed. (Github issue
165
#2736, #2755)
166
* A C compiler warning about an invalid safety check was
167
resolved. (Github issue #2731)
168
169
-------------------------------------------------------------------
170
Thu Dec 6 09:45:54 UTC 2018 - ncutler@suse.com
171
172
- revert to version 0.28.5 to restore support for subinterpreters
173
needed by Ceph - stopgap measure until issue can be addressed
174
upstream (bsc#1118611)
175
176
-------------------------------------------------------------------
177
Sat Dec 1 18:24:55 UTC 2018 - Arun Persaud <arun@gmx.de>
178
179
- update to version 0.29.1:
180
* Bugs fixed
181
+ Extensions compiled with MinGW-64 under Windows could
182
misinterpret integer objects larger than 15 bit and return
183
incorrect results. (Github issue #2670)
184
+ Cython no longer requires the source to be writable when copying
185
its data into a memory view slice. Patch by Andrey
186
Paramonov. (Github issue #2644)
187
+ Line tracing of try-statements generated invalid C code. (Github
188
issue #2274)
189
+ When using the warn.undeclared directive, Cython's own code
190
generated warnings that are now fixed. Patch by Nicolas
191
Pauss. (Github issue #2685)
192
+ Cython's memoryviews no longer require strides for setting the
193
shape field but only the PyBUF_ND flag to be set. Patch by John
194
Kirkham. (Github issue #2716)
195
+ Some C compiler warnings about unused memoryview code were
196
fixed. Patch by Ho Cheuk Ting. (Github issue #2588)
197
+ A C compiler warning about implicit signed/unsigned conversion
198
was fixed. (Github issue #2729)
199
+ Assignments to C++ references returned by operator[] could fail
200
to compile. (Github issue #2671)
201
+ The power operator and the support for NumPy math functions were
202
fixed in Pythran expressions. Patch by Serge Guelton. (Github
203
issues #2702, #2709)
204
+ Signatures with memory view arguments now show the expected type
205
when embedded in docstrings. Patch by Matthew Chan and Benjamin
206
Weigel. (Github issue #2634)
207
+ Some from ... cimport ... constructs were not correctly
208
considered when searching modified dependencies in cythonize()
209
to decide whether to recompile a module. Patch by Kryštof
210
Pilnáček. (Github issue #2638)
211
+ A struct field type in the cpython.array declarations was
212
corrected. Patch by John Kirkham. (Github issue #2712)
213
214
-------------------------------------------------------------------
215
Wed Oct 17 15:29:49 UTC 2018 - Arun Persaud <arun@gmx.de>
216
217
- update to version 0.29:
218
* Features added
219
+ PEP-489 multi-phase module initialisation has been enabled
220
again. Module reloads in other subinterpreters raise an
221
exception to prevent corruption of the static module state.
222
+ A set of mypy compatible PEP-484 declarations were added for
223
Cython's C data types to integrate with static analysers in
224
typed Python code. They are available in the Cython/Shadow.pyi
225
module and describe the types in the special cython module that
226
can be used for typing in Python code. Original patch by Julian
227
Gethmann. (Github issue #1965)
228
+ Memoryviews are supported in PEP-484/526 style type
229
declarations. (Github issue #2529)
230
+ @cython.nogil is supported as a C-function decorator in Python
231
code. (Github issue #2557)
232
+ Raising exceptions from nogil code will automatically acquire
233
the GIL, instead of requiring an explicit with gil block.
234
+ C++ functions can now be declared as potentially raising both
235
C++ and Python exceptions, so that Cython can handle both
236
correctly. (Github issue #2615)
237
+ cython.inline() supports a direct language_level keyword
238
argument that was previously only available via a directive.
239
+ A new language level name 3str was added that mostly corresponds
240
to language level 3, but keeps unprefixed string literals as
241
type 'str' in both Py2 and Py3, and the builtin 'str' type
242
unchanged. This will become the default in the next Cython
243
release and is meant to help user code a) transition more easily
244
to this new default and b) migrate to Python 3 source code
245
semantics without making support for Python 2.x difficult.
246
+ In CPython 3.6 and later, looking up globals in the module dict
247
is almost as fast as looking up C globals. (Github issue #2313)
248
+ For a Python subclass of an extension type, repeated method
249
calls to non-overridden cpdef methods can avoid the attribute
250
lookup in Py3.6+, which makes them 4x faster. (Github issue
251
#2313)
252
+ (In-)equality comparisons of objects to integer literals are
253
faster. (Github issue #2188)
254
+ Some internal and 1-argument method calls are faster.
255
+ Modules that cimport many external extension types from other
256
Cython modules execute less import requests during module
257
initialisation.
258
+ Constant tuples and slices are deduplicated and only created
259
once per module. (Github issue #2292)
260
+ The coverage plugin considers more C file extensions such as .cc
261
and .cxx. (Github issue #2266)
262
+ The cythonize command accepts compile time variable values (as
263
set by DEF) through the new -E option. Patch by Jerome
264
Kieffer. (Github issue #2315)
265
+ pyximport can import from namespace packages. Patch by Prakhar
266
Goel. (Github issue #2294)
267
+ Some missing numpy and CPython C-API declarations were
268
added. Patch by John Kirkham. (Github issues #2523, #2520,
269
#2537)
270
+ Declarations for the pylifecycle C-API functions were added in a
271
new .pxd file cpython.pylifecycle.
272
+ The Pythran support was updated to work with the latest Pythran
273
0.8.7. Original patch by Adrien Guinet. (Github issue #2600)
274
+ %a is included in the string formatting types that are optimised
275
into f-strings. In this case, it is also automatically mapped
276
to %r in Python 2.x.
277
+ New C macro CYTHON_HEX_VERSION to access Cython's version in the
278
same style as PY_HEX_VERSION.
279
+ Constants in libc.math are now declared as const to simplify
280
their handling.
281
+ An additional check_size clause was added to the ctypedef class
282
name specification to allow suppressing warnings when importing
283
modules with backwards-compatible PyTypeObject size
284
changes. Patch by Matti Picus. (Github issue #2627)
285
* Bugs fixed
286
+ The exception handling in generators and coroutines under
287
CPython 3.7 was adapted to the newly introduced exception
288
stack. Users of Cython 0.28 who want to support Python 3.7 are
289
encouraged to upgrade to 0.29 to avoid potentially incorrect
290
error reporting and tracebacks. (Github issue #1958)
291
+ Crash when importing a module under Stackless Python that was
292
built for CPython. Patch by Anselm Kruis. (Github issue #2534)
293
+ 2-value slicing of typed sequences failed if the start or stop
294
index was None. Patch by Christian Gibson. (Github issue #2508)
295
+ Multiplied string literals lost their factor when they are part
296
of another constant expression (e.g. 'x' * 10 + 'y' => 'xy').
297
+ String formatting with the '%' operator didn't call the special
298
__rmod__() method if the right side is a string subclass that
299
implements it. (Python issue 28598)
300
+ The directive language_level=3 did not apply to the first token
301
in the source file. (Github issue #2230)
302
+ Overriding cpdef methods did not work in Python subclasses with
303
slots. Note that this can have a performance impact on calls
304
from Cython code. (Github issue #1771)
305
+ Fix declarations of builtin or C types using strings in pure
306
python mode. (Github issue #2046)
307
+ Generator expressions and lambdas failed to compile in @cfunc
308
functions. (Github issue #459)
309
+ Global names with const types were not excluded from star-import
310
assignments which could lead to invalid C code. (Github issue
311
#2621)
312
+ Several internal function signatures were fixed that lead to
313
warnings in gcc-8. (Github issue #2363)
314
+ The numpy helper functions set_array_base() and get_array_base()
315
were adapted to the current numpy C-API recommendations. Patch
316
by Matti Picus. (Github issue #2528)
317
+ Some NumPy related code was updated to avoid deprecated API
318
usage. Original patch by jbrockmendel. (Github issue #2559)
319
+ Several C++ STL declarations were extended and corrected. Patch
320
by Valentin Valls. (Github issue #2207)
321
+ C lines of the module init function were unconditionally not
322
reported in exception stack traces. Patch by Jeroen
323
Demeyer. (Github issue #2492)
324
+ When PEP-489 support is enabled, reloading the module overwrote
325
any static module state. It now raises an exception instead,
326
given that reloading is not actually supported.
327
+ Object-returning, C++ exception throwing functions were not
328
checking that the return value was non-null. Original patch by
329
Matt Wozniski (Github Issue #2603)
330
+ The source file encoding detection could get confused if the
331
c_string_encoding directive appeared within the first two
332
lines. (Github issue #2632)
333
+ Cython generated modules no longer emit a warning during import
334
when the size of the NumPy array type is larger than what was
335
found at compile time. Instead, this is assumed to be a
336
backwards compatible change on NumPy side.
337
* Other changes
338
+ Cython now emits a warning when no language_level (2, 3 or
339
'3str') is set explicitly, neither as a cythonize() option nor
340
as a compiler directive. This is meant to prepare the transition
341
of the default language level from currently Py2 to Py3, since
342
that is what most new users will expect these days. The future
343
default will, however, not enforce unicode literals, because
344
this has proven a major obstacle in the support for both Python
345
2.x and 3.x. The next major release is intended to make this
346
change, so that it will parse all code that does not request a
347
specific language level as Python 3 code, but with str
348
literals. The language level 2 will continue to be supported for
349
an indefinite time.
350
+ The documentation was restructured, cleaned up and examples are
351
now tested. The NumPy tutorial was also rewritten to simplify
352
the running example. Contributed by Gabriel de
353
Marmiesse. (Github issue #2245)
354
+ Cython compiles less of its own modules at build time to reduce
355
the installed package size to about half of its previous
356
size. This makes the compiler slightly slower, by about 5-7%.
357
358
-------------------------------------------------------------------
359
Sat Aug 11 16:12:10 UTC 2018 - arun@gmx.de
360
361
- update to version 0.28.5:
362
* The discouraged usage of GCC's attribute optimize("Os") was
363
replaced by the similar attribute cold to reduce the code impact
364
of the module init functions. (Github issue #2494)
365
* A reference leak in Py2.x was fixed when comparing str to unicode
366
for equality.
367
368
-------------------------------------------------------------------
369
Thu Jul 12 03:33:30 UTC 2018 - arun@gmx.de
370
371
- update to version 0.28.4:
372
* Bugs fixed
373
+ Reallowing tp_clear() in a subtype of an @no_gc_clear extension
374
type generated an invalid C function call to the (non-existent)
375
base type implementation. (Github issue #2309)
376
+ Exception catching based on a non-literal (runtime) tuple could
377
fail to match the exception. (Github issue #2425)
378
+ Compile fix for CPython 3.7.0a2. (Github issue #2477)
379
380
-------------------------------------------------------------------
381
Sun May 27 16:30:35 UTC 2018 - arun@gmx.de
382
383
- update to version 0.28.3:
384
* Set iteration was broken in non-CPython since 0.28.
385
* UnicodeEncodeError in Py2 when %s formatting is optimised for
386
unicode strings. (Github issue #2276)
387
* Work around a crash bug in g++ 4.4.x by disabling the size
388
reduction setting of the module init function in this
389
version. (Github issue #2235)
390
391
-------------------------------------------------------------------
392
Wed Apr 18 02:15:50 UTC 2018 - toddrme2178@gmail.com
393
394
- Version update to 0.28.2
395
+ Features added
396
* ``abs()`` is faster for Python long objects.
397
* The C++11 methods ``front()`` and ``end()`` were added to the declaration of
398
``libcpp.string``. Patch by Alex Huszagh. (Github issue #2123)
399
* The C++11 methods ``reserve()`` and ``bucket_count()`` are declared for
400
``std::unordered_map``. Patch by Valentin Valls. (Github issue #2168)
401
+ Bugs fixed
402
* The copy of a read-only memoryview was considered read-only as well, whereas
403
a common reason to copy a read-only view is to make it writable. The result
404
of the copying is now a writable buffer by default.
405
(Github issue #2134)
406
* The ``switch`` statement generation failed to apply recursively to the body of
407
converted if-statements.
408
* ``NULL`` was sometimes rejected as exception return value when the returned
409
type is a fused pointer type.
410
Patch by Callie LeFave. (Github issue #2177)
411
* Fixed compatibility with PyPy 5.11.
412
Patch by Matti Picus. (Github issue #2165)
413
+ Other changes
414
* The NumPy tutorial was rewritten to use memoryviews instead of the older
415
buffer declaration syntax.
416
Contributed by Gabriel de Marmiesse. (Github issue #2162)
417
418
-------------------------------------------------------------------
419
Mon Mar 19 13:23:58 UTC 2018 - tchvatal@suse.com
420
421
- Version update to 0.28.1:
422
* PyFrozenSet_New() was accidentally used in PyPy where it is lacking
423
from the C-API.
424
* Assignment between some C++ templated types were incorrectly rejected
425
when the templates mix const with ctypedef. (Github issue #2148)
426
* Undeclared C++ no-args constructors in subclasses could make the
427
compilation fail if the base class constructor was declared without
428
nogil. (Github issue #2157)
429
* Bytes %-formatting inferred basestring (bytes or unicode) as result type
430
in some cases where bytes would have been safe to infer. (Github issue #2153)
431
* None was accidentally disallowed as typed return value of dict.pop().
432
433
-------------------------------------------------------------------
434
Sat Mar 17 00:30:56 UTC 2018 - arun@gmx.de
435
436
- update to version 0.28:
437
* Features added
438
+ Cdef classes can now multiply inherit from ordinary Python
439
classes. (The primary base must still be a c class, possibly
440
object, and the other bases must not be cdef classes.)
441
+ Type inference is now supported for Pythran compiled NumPy
442
expressions. Patch by Nils Braun. (Github issue #1954)
443
+ The const modifier can be applied to memoryview declarations to
444
allow read-only buffers as input. (Github issues #1605, #1869)
445
+ C code in the docstring of a cdef extern block is copied
446
verbatimly into the generated file. Patch by Jeroen
447
Demeyer. (Github issue #1915)
448
+ When compiling with gcc, the module init function is now tuned
449
for small code size instead of whatever compile flags were
450
provided externally. Cython now also disables some code
451
intensive optimisations in that function to further reduce the
452
code size. (Github issue #2102)
453
+ Decorating an async coroutine with @cython.iterable_coroutine
454
changes its type at compile time to make it iterable. While this
455
is not strictly in line with PEP-492, it improves the
456
interoperability with old-style coroutines that use yield from
457
instead of await.
458
+ The IPython magic has preliminary support for
459
JupyterLab. (Github issue #1775)
460
+ The new TSS C-API in CPython 3.7 is supported and has been
461
backported. Patch by Naotoshi Seo. (Github issue #1932)
462
+ Cython knows the new Py_tss_t type defined in PEP-539 and
463
automatically initialises variables declared with that type to
464
Py_tss_NEEDS_INIT, a value which cannot be used outside of
465
static assignments.
466
+ The set methods .remove() and .discard() are optimised. Patch by
467
Antoine Pitrou. (Github issue #2042)
468
+ dict.pop() is optimised. Original patch by Antoine
469
Pitrou. (Github issue #2047)
470
+ Iteration over sets and frozensets is optimised. (Github issue
471
#2048)
472
+ Safe integer loops (< range(2^30)) are automatically optimised
473
into C loops.
474
+ alist.extend([a,b,c]) is optimised into sequential list.append()
475
calls for short literal sequences.
476
+ Calls to builtin methods that are not specifically optimised
477
into C-API calls now use a cache that avoids repeated lookups of
478
the underlying C function. (Github issue #2054)
479
+ Single argument function calls can avoid the argument tuple
480
creation in some cases.
481
+ Some redundant extension type checks are avoided.
482
+ Formatting C enum values in f-strings is faster, as well as some
483
other special cases.
484
+ String formatting with the '%' operator is optimised into
485
f-strings in simple cases.
486
+ Subscripting (item access) is faster in some cases.
487
+ Some bytearray operations have been optimised similar to bytes.
488
+ Some PEP-484/526 container type declarations are now considered
489
for loop optimisations.
490
+ Indexing into memoryview slices with view[i][j] is now optimised
491
into view[i, j].
492
+ Python compatible cython.* types can now be mixed with type
493
declarations in Cython syntax.
494
+ Name lookups in the module and in classes are faster.
495
+ Python attribute lookups on extension types without instance
496
dict are faster.
497
+ Some missing signals were added to libc/signal.pxd. Patch by
498
Jeroen Demeyer. (Github issue #1914)
499
+ The warning about repeated extern declarations is now visible by
500
default. (Github issue #1874)
501
+ The exception handling of the function types used by CPython's
502
type slot functions was corrected to match the de-facto standard
503
behaviour, so that code that uses them directly benefits from
504
automatic and correct exception propagation. Patch by Jeroen
505
Demeyer. (Github issue #1980)
506
+ Defining the macro CYTHON_NO_PYINIT_EXPORT will prevent the
507
module init function from being exported as symbol, e.g. when
508
linking modules statically in an embedding setup. Patch by
509
AraHaan. (Github issue #1944)
510
* Bugs fixed
511
+ If a module name is explicitly provided for an Extension() that
512
is compiled via cythonize(), it was previously ignored and
513
replaced by the source file name. It can now be used to override
514
the target module name, e.g. for compiling prefixed accelerator
515
modules from Python files. (Github issue #2038)
516
+ The arguments of the num_threads parameter of parallel sections
517
were not sufficiently validated and could lead to invalid C
518
code. (Github issue #1957)
519
+ Catching exceptions with a non-trivial exception pattern could
520
call into CPython with a live exception set. This triggered
521
incorrect behaviour and crashes, especially in CPython 3.7.
522
+ The signature of the special __richcmp__() method was corrected
523
to recognise the type of the first argument as self. It was
524
previously treated as plain object, but CPython actually
525
guarantees that it always has the correct type. Note: this can
526
change the semantics of user code that previously relied on self
527
being untyped.
528
+ Some Python 3 exceptions were not recognised as builtins when
529
running Cython under Python 2.
530
+ Some async helper functions were not defined in the generated C
531
code when compiling simple async code. (Github issue #2075)
532
+ Line tracing did not include generators and coroutines. (Github
533
issue #1949)
534
+ C++ declarations for unordered_map were corrected. Patch by
535
Michael Schatzow. (Github issue #1484)
536
+ Iterator declarations in C++ deque and vector were
537
corrected. Patch by Alex Huszagh. (Github issue #1870)
538
+ The const modifiers in the C++ string declarations were
539
corrected, together with the coercion behaviour of string
540
literals into C++ strings. (Github issue #2132)
541
+ Some declaration types in libc.limits were corrected. Patch by
542
Jeroen Demeyer. (Github issue #2016)
543
+ @cython.final was not accepted on Python classes with an
544
@cython.cclass decorator. (Github issue #2040)
545
+ Cython no longer creates useless and incorrect PyInstanceMethod
546
wrappers for methods in Python 3. Patch by Jeroen
547
Demeyer. (Github issue #2105)
548
+ The builtin bytearray type could not be used as base type of
549
cdef classes. (Github issue #2106)
550
551
-------------------------------------------------------------------
552
Tue Feb 20 11:25:47 UTC 2018 - tchvatal@suse.com
553
554
- Export fno-strict-aliasing to CFLAGS
555
556
-------------------------------------------------------------------
557
Mon Jan 29 00:23:03 UTC 2018 - mimi.vx@gmail.com
558
559
- update to 0.27.3
560
- big list of changes since 0.26.1 please see CHANGES.txt
561
- Also fixes bsc#1062237
562
563
-------------------------------------------------------------------
564
Mon Oct 2 22:02:54 UTC 2017 - jengelh@inai.de
565
566
- Ensure neutrality of description.
567
568
-------------------------------------------------------------------
569
Mon Dec 19 17:49:22 UTC 2016 - jmatejek@suse.com
570
571
- update for multipython build
572
573
-------------------------------------------------------------------
574
Fri Oct 28 12:40:24 UTC 2016 - toddrme2178@gmail.com
575
576
- Update to version 0.25.1
577
+ Bugs fixed
578
* Fixes a bug with ``isinstance(o, Exception)`` (Github issue #1496).
579
* Fixes bug with ``cython.view.array`` missing utility code in some cases
580
(Github issue #1502).
581
+ Other changes
582
* The distutils extension ``Cython.Distutils.build_ext`` has been reverted,
583
temporarily, to be ``old_build_ext`` to give projects time to migrate.
584
The new build_ext is available as ``new_build_ext``.
585
586
-------------------------------------------------------------------
587
Wed Oct 26 14:55:49 UTC 2016 - toddrme2178@gmail.com
588
589
- Fix source URL.
590
591
-------------------------------------------------------------------
592
Wed Oct 26 01:36:12 UTC 2016 - toddrme2178@gmail.com
593
594
- update to version 0.25:
595
+ Features added
596
* def/cpdef methods of cdef classes benefit from Cython's internal function
597
implementation, which enables introspection and line profiling for them.
598
Implementation sponsored by Turbostream (www.turbostream-cfd.com).
599
* The distutils extension ``Cython.Distutils.build_ext`` has now been updated
600
to use cythonize which properly handles dependencies. The old extension can
601
still be found in ``Cython.Distutils.old_build_ext`` and is now deprecated.
602
* Calls to Python functions are faster, following the recent "FastCall"
603
optimisations that Victor Stinner implemented for CPython 3.6.
604
See https://bugs.python.org/issue27128 and related issues.
605
* The new METH_FASTCALL calling convention for PyCFunctions is supported
606
in CPython 3.6. See https://bugs.python.org/issue27810
607
* C++ classes can now have typedef members. STL containers updated with
608
value_type.
609
* Support for bazel using a the pyx_library rule in //Tools:rules.bzl.
610
* Initial support for using Cython modules in Pyston. Patch by Daetalus.
611
* Dynamic Python attributes are allowed on cdef classes if an attribute
612
``cdef dict __dict__`` is declared in the class. Patch by empyrical.
613
* Cython implemented C++ classes can make direct calls to base class methods.
614
Patch by empyrical.
615
* New directive ``cython.no_gc`` to fully disable GC for a cdef class.
616
Patch by Claudio Freire.
617
* Buffer variables are no longer excluded from ``locals()``.
618
Patch by da-woods.
619
* Building f-strings is faster, especially when formatting C integers.
620
* for-loop iteration over "std::string".
621
* ``libc/math.pxd`` provides ``e`` and ``pi`` as alias constants to simplify
622
usage as a drop-in replacement for Python's math module.
623
* Speed up cython.inline().
624
* Binary lshift operations with small constant Python integers are faster.
625
* Some integer operations on Python long objects are faster in Python 2.7.
626
* Support for the C++ ``typeid`` operator.
627
+ Significant Bugs fixed
628
* Division of complex numbers avoids overflow by using Smith's method.
629
* Some function signatures in ``libc.math`` and ``numpy.pxd`` were incorrect.
630
Pach by Michael Seifert.
631
+ Other changes
632
* The "%%cython" IPython/jupyter magic now defaults to the language level of
633
the current jupyter kernel. The language level can be set explicitly with
634
"%%cython -2" or "%%cython -3".
635
- update to version 0.24.1:
636
* IPython cell magic was lacking a good way to enable Python 3 code
637
semantics. It can now be used as "%%cython -3".
638
* Follow a recent change in PEP 492 and CPython 3.5.1 that now
639
requires the __aiter__() method of asynchronous iterators to be a
640
simple def method instead of an async def method.
641
* Coroutines and generators were lacking the __module__ special
642
attribute.
643
* C++ std::complex values failed to auto-convert from and to Python
644
complex objects.
645
* Namespaced C++ types could not be used as memory view types due to
646
lack of name mangling. Patch by Ivan Smirnov.
647
* Assignments between identical C++ types that were declared with
648
differently typedefed template types could fail.
649
* Rebuilds could fail to evaluate dependency timestamps in C++
650
mode. Patch by Ian Henriksen.
651
* Macros defined in the distutils compiler option do not require
652
values anymore. Patch by Ian Henriksen.
653
* Minor fixes for MSVC, Cygwin and PyPy.
654
- specfile:
655
* changed to https for source url
656
* updated source url to files.pythonhosted.org
657
- update to version 0.24:
658
* Features added
659
+ PEP 498: Literal String Formatting (f-strings). Original patch
660
by Jelle Zijlstra. https://www.python.org/dev/peps/pep-0498/
661
+ PEP 515: Underscores as visual separators in number
662
literals. https://www.python.org/dev/peps/pep-0515/
663
+ Parser was adapted to some minor syntax changes in Py3.6,
664
e.g. https://bugs.python.org/issue9232
665
+ The embedded C code comments that show the original source code
666
can be discarded with the new directive
667
emit_code_comments=False.
668
+ Cpdef enums are now first-class iterable, callable types in
669
Python.
670
+ Ctuples can now be declared in pure Python code.
671
+ Posix declarations for DLL loading and stdio extensions were
672
added. Patch by Lars Buitinck.
673
+ The Py2-only builtins unicode(), xrange(), reduce() and long are
674
now also available in compile time DEF expressions when
675
compiling with Py3.
676
+ Exception type tests have slightly lower overhead. This fixes
677
ticket 868.
678
+ @property syntax fully supported in cdef classes, old syntax
679
deprecated.
680
+ C++ classes can now be declared with default template
681
parameters.
682
* Bugs fixed
683
+ C++ exceptions raised by overloaded C++ operators were not
684
always handled. Patch by Ian Henriksen.
685
+ C string literals were previously always stored as non-const
686
global variables in the module. They are now stored as global
687
constants when possible, and otherwise as non-const C string
688
literals in the generated code that uses them. This improves
689
compatibility with strict C compiler options and prevents
690
non-const strings literals with the same content from being
691
incorrectly merged.
692
+ Compile time evaluated str expressions (DEF) now behave in a
693
more useful way by turning into Unicode strings when compiling
694
under Python 3. This allows using them as intermediate values in
695
expressions. Previously, they always evaluated to bytes objects.
696
+ isinf() declarations in libc/math.pxd and numpy/math.pxd now
697
reflect the actual tristate int return value instead of using
698
bint.
699
+ Literal assignments to ctuples avoid Python tuple round-trips in
700
some more corner cases.
701
+ Iteration over dict(...).items() failed to get optimised when
702
dict arguments included keyword arguments.
703
+ cProfile now correctly profiles cpdef functions and methods.
704
- update to version 0.23.5:
705
* Compile errors and warnings in integer type conversion code. This
706
fixes ticket 877. Patches by Christian Neukirchen, Nikolaus Rath,
707
Ian Henriksen.
708
* Reference leak when "*args" argument was reassigned in closures.
709
* Truth-testing Unicode strings could waste time and memory in
710
Py3.3+.
711
* Return values of async functions could be ignored and replaced by
712
None.
713
* Compiler crash in CPython 3.6.
714
* Fix prange() to behave identically to range(). The end condition
715
was miscalculated when the range was not exactly divisible by the
716
step.
717
* Optimised all(genexpr)/any(genexpr) calls could warn about unused
718
code. This fixes ticket 876.
719
- Remove unneeded python-Cython-c++11.patch
720
721
-------------------------------------------------------------------
722
Mon Feb 1 10:30:06 UTC 2016 - toddrme2178@gmail.com
723
724
- update to version 0.23.4:
725
* Memory leak when calling Python functions in PyPy.
726
* Compilation problem with MSVC in C99-ish mode.
727
* Warning about unused values in a helper macro.
728
- update to version 0.23.3:
729
* Invalid C code for some builtin methods. This fixes ticket 856
730
again.
731
* Incorrect C code in helper functions for PyLong conversion and
732
string decoding. This fixes ticket 863, ticket 864 and ticket
733
865. Original patch by Nikolaus Rath.
734
* Large folded or inserted integer constants could use too small C
735
integer types and thus trigger a value wrap-around.
736
* The coroutine and generator types of Cython now also register
737
directly with the Coroutine and Generator ABCs in the
738
backports_abc module if it can be imported. This fixes ticket 870.
739
- update to version 0.23.2:
740
* Compiler crash when analysing some optimised expressions.
741
* Coverage plugin was adapted to coverage.py 4.0 beta 2.
742
* C++ destructor calls could fail when '&' operator is overwritten.
743
* Incorrect C literal generation for large integers in compile-time
744
evaluated DEF expressions and constant folded expressions.
745
* Byte string constants could end up as Unicode strings when
746
originating from compile-time evaluated DEF expressions.
747
* Invalid C code when caching known builtin methods. This fixes
748
ticket 860.
749
* ino_t in posix.types was not declared as unsigned.
750
* Declarations in libcpp/memory.pxd were missing operator!(). Patch
751
by Leo Razoumov.
752
* Static cdef methods can now be declared in .pxd files.
753
- update to version 0.23.1:
754
* Invalid C code for generators. This fixes ticket 858.
755
* Invalid C code for some builtin methods. This fixes ticket 856.
756
* Invalid C code for unused local buffer variables. This fixes
757
ticket 154.
758
* Test failures on 32bit systems. This fixes ticket 857.
759
* Code that uses "from xyz import *" and global C struct/union/array
760
variables could fail to compile due to missing helper
761
functions. This fixes ticket 851.
762
* Misnamed PEP 492 coroutine property cr_yieldfrom renamed to
763
cr_await to match CPython.
764
* Missing deallocation code for C++ object attributes in certain
765
extension class hierarchies.
766
* Crash when async coroutine was not awaited.
767
* Compiler crash on yield in signature annotations and default
768
argument values. Both are forbidden now.
769
* Compiler crash on certain constructs in finally clauses.
770
* Cython failed to build when CPython's pgen is installed.
771
- update to version 0.23:
772
* Features added
773
+ PEP 492 (async/await) was implemented. See
774
https://www.python.org/dev/peps/pep-0492/
775
+ PEP 448 (Additional Unpacking Generalizations) was
776
implemented. See https://www.python.org/dev/peps/pep-0448/
777
+ Support for coverage.py 4.0+ can be enabled by adding the plugin
778
"Cython.Coverage" to the ".coveragerc" config file.
779
+ Annotated HTML source pages can integrate (XML) coverage
780
reports.
781
+ Tracing is supported in nogil functions/sections and module init
782
code.
783
+ When generators are used in a Cython module and the module
784
imports the modules "inspect" and/or "asyncio", Cython enables
785
interoperability by patching these modules during the import to
786
recognise Cython's internal generator and coroutine types. This
787
can be disabled by C compiling the module with "-D
788
CYTHON_PATCH_ASYNCIO=0" or "-D CYTHON_PATCH_INSPECT=0"
789
+ When generators or coroutines are used in a Cython module, their
790
types are registered with the Generator and Coroutine ABCs in
791
the collections or collections.abc stdlib module at import time
792
to enable interoperability with code that needs to detect and
793
process Python generators/coroutines. These ABCs were added in
794
CPython 3.5 and are available for older Python versions through
795
the backports_abc module on PyPI. See
796
https://bugs.python.org/issue24018
797
+ Adding/subtracting/dividing/modulus and equality comparisons
798
with constant Python floats and small integers are faster.
799
+ Binary and/or/xor/rshift operations with small constant Python
800
integers are faster.
801
+ When called on generator expressions, the builtins all(), any(),
802
dict(), list(), set(), sorted() and unicode.join() avoid the
803
generator iteration overhead by inlining a part of their
804
functionality into the for-loop.
805
+ Keyword argument dicts are no longer copied on function entry
806
when they are not being used or only passed through to other
807
function calls (e.g. in wrapper functions).
808
+ The PyTypeObject declaration in cpython.object was extended.
809
+ The builtin type type is now declared as PyTypeObject in source,
810
allowing for extern functions taking type parameters to have the
811
correct C signatures. Note that this might break code that uses
812
type just for passing around Python types in typed
813
variables. Removing the type declaration provides a backwards
814
compatible fix.
815
+ wraparound() and boundscheck() are available as no-ops in pure
816
Python mode.
817
+ Const iterators were added to the provided C++ STL declarations.
818
+ Smart pointers were added to the provided C++ STL
819
declarations. Patch by Daniel Filonik.
820
+ NULL is allowed as default argument when embedding
821
signatures. This fixes ticket 843.
822
+ When compiling with --embed, the internal module name is changed
823
to __main__ to allow arbitrary program names, including those
824
that would be invalid for modules. Note that this prevents reuse
825
of the generated C code as an importable module.
826
+ External C++ classes that overload the assignment operator can
827
be used. Patch by Ian Henriksen.
828
+ Support operator bool() for C++ classes so they can be used in
829
if statements.
830
* Bugs fixed
831
+ Calling "yield from" from Python on a Cython generator that
832
returned a value triggered a crash in CPython. This is now being
833
worked around. See https://bugs.python.org/issue23996
834
+ Language level 3 did not enable true division (a.k.a. float
835
division) for integer operands.
836
+ Functions with fused argument types that included a generic
837
'object' fallback could end up using that fallback also for
838
other explicitly listed object types.
839
+ Relative cimports could accidentally fall back to trying an
840
absolute cimport on failure.
841
+ The result of calling a C struct constructor no longer requires
842
an intermediate assignment when coercing to a Python dict.
843
+ C++ exception declarations with mapping functions could fail to
844
compile when pre-declared in .pxd files.
845
+ cpdef void methods are now permitted.
846
+ abs(cint) could fail to compile in MSVC and used sub-optimal
847
code in C++. Patch by David Vierra, original patch by Michael
848
Enßlin.
849
+ Buffer index calculations using index variables with small C
850
integer types could overflow for large buffer sizes. Original
851
patch by David Vierra.
852
+ C unions use a saner way to coerce from and to Python dicts.
853
+ When compiling a module foo.pyx, the directories in sys.path are
854
no longer searched when looking for foo.pxd. Patch by Jeroen
855
Demeyer.
856
+ Memory leaks in the embedding main function were fixed. Original
857
patch by Michael Enßlin.
858
+ Some complex Python expressions could fail to compile inside of
859
finally clauses.
860
+ Unprefixed 'str' literals were not supported as C varargs
861
arguments.
862
+ Fixed type errors in conversion enum types to/from Python. Note
863
that this imposes stricter correctness requirements on enum
864
declarations.
865
* Other changes
866
+ Changed mangling scheme in header files generated by cdef api
867
declarations.
868
+ Installation under CPython 3.3+ no longer requires a pass of the
869
2to3 tool. This also makes it possible to run Cython in Python
870
3.3+ from a source checkout without installing it first. Patch
871
by Petr Viktorin.
872
+ jedi-typer.py (in Tools/) was extended and renamed to
873
jedityper.py (to make it importable) and now works with and
874
requires Jedi 0.9. Patch by Tzer-jen Wei.
875
876
-------------------------------------------------------------------
877
Thu Jan 28 12:09:56 UTC 2016 - rguenther@suse.com
878
879
- Add python-Cython-c++11.patch to fix complex math testcase compile
880
with GCC 6 defaulting to C++14. (bnc#963974)
881
882
-------------------------------------------------------------------
883
Wed Aug 26 17:11:12 UTC 2015 - ted.nokonechny@uregina.ca
884
885
- "mangle" tests/run/cpdef_extern_func.pyx to allow package to build
886
for SLE_11_SP3 and SLE_11_SP4.
887
* cpdef const char* strchr(const char *haystack, int needle);
888
does not seem to match any from /usr/include/string.h
889
and fails for cpp tests via python runtests.py -vv
890
* cpdef_extern_func.pyx was not present in 0.21.1
891
892
-------------------------------------------------------------------
893
Wed Aug 19 15:23:19 UTC 2015 - bwiedemann@suse.com
894
895
- Require python-devel for Python.h (bnc#942385)
896
897
-------------------------------------------------------------------
898
Wed Jul 29 11:52:24 UTC 2015 - toddrme2178@gmail.com
899
900
- Remove unneeded numpy dependency to avoid dependency loop.
901
- create dummy alternative to avoid 13.1's post-build-check bug
902
- specfile:
903
* fixing update_alternatives
904
905
-------------------------------------------------------------------
906
Fri Jul 10 21:59:38 UTC 2015 - termim@gmail.com
907
908
- Update to 0.22.1:
909
Bugs fixed
910
* Crash when returning values on generator termination.
911
* In some cases, exceptions raised during internal isinstance()
912
checks were not propagated.
913
* Runtime reported file paths of source files (e.g for profiling
914
and tracing) are now relative to the build root directory instead
915
of the main source file.
916
* Tracing exception handling code could enter the trace function with an
917
active exception set.
918
* The internal generator function type was not shared across modules.
919
* Comparisons of (inferred) ctuples failed to compile.
920
* Closures inside of cdef functions returning ``void`` failed to compile.
921
* Using ``const`` C++ references in intermediate parts of longer
922
expressions could fail to compile.
923
* C++ exception declarations with mapping functions could fail to compile
924
when pre-declared in .pxd files.
925
* C++ compilation could fail with an ambiguity error in recent MacOS-X
926
Xcode versions.
927
* C compilation could fail in pypy3.
928
* Fixed a memory leak in the compiler when compiling multiple modules.
929
* When compiling multiple modules, external library dependencies could
930
leak into later compiler runs. Fix by Jeroen Demeyer. This fixes
931
ticket 845.
932
- removed patch fix-32bit.patch as applied upstream
933
934
-------------------------------------------------------------------
935
Wed Apr 22 14:05:18 UTC 2015 - mcihar@suse.cz
936
937
- Use Source URL from cython.org
938
939
-------------------------------------------------------------------
940
Wed Apr 22 11:52:03 UTC 2015 - mcihar@suse.cz
941
942
- Add python-numpy as BuildRequires to have more complete test coverage
943
944
-------------------------------------------------------------------
945
Wed Apr 22 11:01:47 UTC 2015 - mcihar@suse.cz
946
947
- Fix doctests in 32-bit environment (fix-32bit.patch)
948
949
-------------------------------------------------------------------
950
Wed Apr 22 09:10:30 UTC 2015 - mcihar@suse.cz
951
952
- Update to 0.22:
953
Features added
954
* C functions can coerce to Python functions, which allows passing them
955
around as callable objects.
956
* C arrays can be assigned by value and auto-coerce from Python iterables
957
and to Python lists (and tuples).
958
* Extern C functions can now be declared as cpdef to export them to
959
the module's Python namespace. Extern C functions in pxd files export
960
their values to their own module, iff it exists.
961
* Anonymous C tuple types can be declared as (ctype1, ctype2, ...).
962
* PEP 479: turn accidental StopIteration exceptions that exit generators
963
into a RuntimeError, activated with future import "generator_stop".
964
See http://legacy.python.org/dev/peps/pep-0479/
965
* Looping over ``reversed(range())`` is optimised in the same way as
966
``range()``. Patch by Favian Contreras.
967
Bugs fixed
968
* Mismatching 'except' declarations on signatures in .pxd and .pyx files failed
969
to produce a compile error.
970
* Failure to find any files for the path pattern(s) passed into ``cythonize()``
971
is now an error to more easily detect accidental typos.
972
* The ``logaddexp`` family of functions in ``numpy.math`` now has correct
973
declarations.
974
* In Py2.6/7 and Py3.2, simple Cython memory views could accidentally be
975
interpreted as non-contiguous by CPython, which could trigger a CPython
976
bug when copying data from them, thus leading to data corruption.
977
See CPython issues 12834 and 23349.
978
Other changes
979
* Preliminary support for defining the Cython language with a formal grammar.
980
To try parsing your files against this grammar, use the --formal_grammar directive.
981
Experimental.
982
* ``_`` is no longer considered a cacheable builtin as it could interfere with
983
gettext.
984
* Cythonize-computed metadata now cached in the generated C files.
985
986
-------------------------------------------------------------------
987
Thu Feb 5 11:35:45 UTC 2015 - hpj@urpla.net
988
989
- fix update-alternatives handling in a distribution backwards compatible way
990
991
-------------------------------------------------------------------
992
Fri Jan 9 15:20:31 UTC 2015 - dimstar@opensuse.org
993
994
- Re-enable test-suite.
995
- Add gcc-c++ BuildRequires: needed for the test-suite to be able
996
to pass.
997
998
-------------------------------------------------------------------
999
Thu Jan 8 12:22:10 UTC 2015 - dimstar@opensuse.org
1000
1001
- Fix usage of update-alternatives.
1002
1003
-------------------------------------------------------------------
1004
Thu Dec 18 10:48:28 UTC 2014 - p.drouand@gmail.com
1005
1006
- Improve update-alternatives.
1007
- Remove Cython-fix-version-detection.patch
1008
(got fixed upstream)
1009
- update to version 0.21.1:
1010
* Features added
1011
- New cythonize option -a to generate the annotated HTML source view.
1012
- Missing C-API declarations in cpython.unicode were added.
1013
- Passing language='c++' into cythonize() globally enables C++ mode
1014
for all modules that were not passed as Extension objects
1015
(i.e. only source files and file patterns).
1016
- Py_hash_t is a known type (used in CPython for hash values).
1017
- PySlice_*() C-API functions are available from the cpython.slice module.
1018
- Allow arrays of C++ classes.
1019
* Bugs fixed
1020
- Reference leak for non-simple Python expressions in boolean and/or expressions.
1021
- To fix a name collision and to reflect availability on host
1022
platforms, standard C declarations [ clock(), time(), struct tm
1023
and tm* functions ] were moved from posix/time.pxd to a new
1024
libc/time.pxd. Patch by Charles Blake.
1025
- Rerunning unmodified modules in IPython's cython support
1026
failed. Patch by Matthias Bussonier.
1027
- Casting C++ std::string to Python byte strings failed when
1028
auto-decoding was enabled.
1029
- Fatal exceptions in global module init code could lead to
1030
crashes if the already created module was used later on
1031
(e.g. through a stale reference in sys.modules or elsewhere).
1032
- cythonize.py script was not installed on MS-Windows.
1033
* Other changes
1034
- Compilation no longer fails hard when unknown compilation
1035
options are passed. Instead, it raises a warning and ignores
1036
them (as it did silently before 0.21). This will be changed back
1037
to an error in a future release.
1038
1039
-------------------------------------------------------------------
1040
Sun Nov 09 22:57:00 UTC 2014 - Led <ledest@gmail.com>
1041
1042
- fix bashisms in pre script
1043
1044
-------------------------------------------------------------------
1045
Fri Sep 12 10:52:18 UTC 2014 - toddrme2178@gmail.com
1046
1047
- Add Cython-fix-version-detection.patch
1048
This is a patch from upstream that restores version information
1049
whose removal is preventing several packages from correctly
1050
detecting Cython's presence. It is already merged upstream and
1051
so should be in the next release.
1052
Note that despite what upstream says,
1053
python-tables/python3-tables is NOT the only package affected by
1054
this, which is why the patch is going here instead of
1055
python-tables/python3-tables.
1056
python-bcolz/python3-bcolz is an example of another package
1057
affected.
1058
1059
-------------------------------------------------------------------
1060
Thu Sep 11 09:30:20 UTC 2014 - toddrme2178@gmail.com
1061
1062
- Update to 0.21 (2014-09-10)
1063
* Features added
1064
* C (cdef) functions allow inner Python functions.
1065
* Enums can now be declared as cpdef to export their values to
1066
the module's Python namespace. Cpdef enums in pxd files export
1067
their values to their own module, iff it exists.
1068
* Allow @staticmethod decorator to declare static cdef methods.
1069
This is especially useful for declaring "constructors" for
1070
cdef classes that can take non-Python arguments.
1071
* Taking a ``char*`` from a temporary Python string object is safer
1072
in more cases and can be done inside of non-trivial expressions,
1073
including arguments of a function call. A compile time error
1074
is raised only when such a pointer is assigned to a variable and
1075
would thus exceed the lifetime of the string itself.
1076
* Generators have new properties ``__name__`` and ``__qualname__``
1077
that provide the plain/qualified name of the generator function
1078
(following CPython 3.5). See http://bugs.python.org/issue21205
1079
* The ``inline`` function modifier is available as a decorator
1080
``@cython.inline`` in pure mode.
1081
* When cygdb is run in a virtualenv, it enables the same virtualenv
1082
inside of the debugger. Patch by Marc Abramowitz.
1083
* PEP 465: dedicated infix operator for matrix multiplication (A @ B).
1084
* HTML output of annotated code uses Pygments for code highlighting
1085
and generally received a major overhaul by Matthias Bussonier.
1086
* IPython magic support is now available directly from Cython with
1087
the command "%load_ext cython". Cython code can directly be
1088
executed in a cell when marked with "%%cython". Code analysis
1089
is available with "%%cython -a". Patch by Martín Gaitán.
1090
* Simple support for declaring Python object types in Python signature
1091
annotations. Currently requires setting the compiler directive
1092
``annotation_typing=True``.
1093
* New directive ``use_switch`` (defaults to True) to optionally disable
1094
the optimization of chained if statement to C switch statements.
1095
* Defines dynamic_cast et al. in ``libcpp.cast`` and C++ heap data
1096
structure operations in ``libcpp.algorithm``.
1097
* Shipped header declarations in ``posix.*`` were extended to cover
1098
more of the POSIX API. Patches by Lars Buitinck and Mark Peek.
1099
* Optimizations
1100
* Simple calls to C implemented Python functions/methods are faster.
1101
This also speeds up many operations on builtins that Cython cannot
1102
otherwise optimise.
1103
* The "and"/"or" operators try to avoid unnecessary coercions of their
1104
arguments. They now evaluate the truth value of each argument
1105
independently and only coerce the final result of the whole expression
1106
to the target type (e.g. the type on the left side of an assignment).
1107
This also avoids reference counting overhead for Python values during
1108
evaluation and generally improves the code flow in the generated C code.
1109
* The Python expression "2 ** N" is optimised into bit shifting.
1110
See http://bugs.python.org/issue21420
1111
* Cascaded assignments (a = b = ...) try to minimise the number of
1112
type coercions.
1113
* Calls to ``slice()`` are translated to a straight C-API call.
1114
* Bugs fixed
1115
* Crash when assigning memory views from ternary conditional expressions.
1116
* Nested C++ templates could lead to unseparated ">>" characters being
1117
generated into the C++ declarations, which older C++ compilers could
1118
not parse.
1119
* Sending SIGINT (Ctrl-C) during parallel cythonize() builds could
1120
hang the child processes.
1121
* No longer ignore local setup.cfg files for distutils in pyximport.
1122
Patch by Martin Teichmann.
1123
* Taking a ``char*`` from an indexed Python string generated unsafe
1124
reference counting code.
1125
* Set literals now create all of their items before trying to add them
1126
to the set, following the behaviour in CPython. This makes a
1127
difference in the rare case that the item creation has side effects
1128
and some items are not hashable (or if hashing them has side effects,
1129
too).
1130
* Cython no longer generates the cross product of C functions for code
1131
that uses memory views of fused types in function signatures (e.g.
1132
``cdef func(floating[:] a, floating[:] b)``). This is considered the
1133
expected behaviour by most users and was previously inconsistent with
1134
other structured types like C arrays. Code that really wants all type
1135
combinations can create the same fused memoryview type under different
1136
names and use those in the signature to make it clear which types are
1137
independent.
1138
* Names that were unknown at compile time were looked up as builtins at
1139
runtime but not as global module names. Trying both lookups helps with
1140
globals() manipulation.
1141
* Fixed stl container conversion for typedef element types.
1142
* ``obj.pop(x)`` truncated large C integer values of x to ``Py_ssize_t``.
1143
* ``__init__.pyc`` is recognised as marking a package directory
1144
(in addition to .py, .pyx and .pxd).
1145
* Syntax highlighting in ``cython-mode.el`` for Emacs no longer
1146
incorrectly highlights keywords found as part of longer names.
1147
* Correctly handle ``from cython.submodule cimport name``.
1148
* Fix infinite recursion when using super with cpdef methods.
1149
* No-args ``dir()`` was not guaranteed to return a sorted list.
1150
* Other changes
1151
* The header line in the generated C files no longer contains the
1152
timestamp but only the Cython version that wrote it. This was
1153
changed to make builds more reproducible.
1154
* Removed support for CPython 2.4, 2.5 and 3.1.
1155
* The licensing implications on the generated code were clarified
1156
to avoid legal constraints for users.
1157
1158
-------------------------------------------------------------------
1159
Thu Jul 31 16:26:07 UTC 2014 - dimstar@opensuse.org
1160
1161
- Rename rpmlintrc to %{name}-rpmlintrc.
1162
Follow the packaging guidelines.
1163
1164
-------------------------------------------------------------------
1165
Thu Jul 24 05:32:47 UTC 2014 - mcihar@suse.cz
1166
1167
- Update to version 0.20.2:
1168
* Some optimisations for set/frozenset instantiation.
1169
* Support for C++ unordered_set and unordered_map.
1170
* Access to attributes of optimised builtin methods (e.g.
1171
``[].append.__name__``) could fail to compile.
1172
* Memory leak when extension subtypes add a memory view as attribute
1173
to those of the parent type without having Python object attributes
1174
or a user provided dealloc method.
1175
* Compiler crash on readonly properties in "binding" mode.
1176
* Auto-encoding with ``c_string_encoding=ascii`` failed in Py3.3.
1177
* Crash when subtyping freelist enabled Cython extension types with
1178
Python classes that use ``__slots__``.
1179
* Freelist usage is restricted to CPython to avoid problems with other
1180
Python implementations.
1181
* Memory leak in memory views when copying overlapping, contiguous slices.
1182
* Format checking when requesting non-contiguous buffers from
1183
``cython.array`` objects was disabled in Py3.
1184
* C++ destructor calls in extension types could fail to compile in clang.
1185
* Buffer format validation failed for sequences of strings in structs.
1186
* Docstrings on extension type attributes in .pxd files were rejected.
1187
- add python-xml to build requirements for testsuite
1188
1189
-------------------------------------------------------------------
1190
Thu May 8 11:40:51 UTC 2014 - toddrme2178@gmail.com
1191
1192
- Update to version 0.20.1
1193
* List/Tuple literals multiplied by more than one factor were only multiplied
1194
by the last factor instead of all.
1195
* Lookups of special methods (specifically for context managers) could fail
1196
in Python <= 2.6/3.1.
1197
* Local variables were erroneously appended to the signature introspection
1198
of Cython implemented functions with keyword-only arguments under Python 3.
1199
* In-place assignments to variables with inferred Python builtin/extension
1200
types could fail with type errors if the result value type was incompatible
1201
with the type of the previous value.
1202
* The C code generation order of cdef classes, closures, helper code,
1203
etc. was not deterministic, thus leading to high code churn.
1204
* Type inference could fail to deduce C enum types.
1205
* Type inference could deduce unsafe or inefficient types from integer
1206
assignments within a mix of inferred Python variables and integer
1207
variables.
1208
1209
-------------------------------------------------------------------
1210
Mon Feb 3 18:51:50 UTC 2014 - jengelh@inai.de
1211
1212
- Cython grew a dependency on saxutils (and since then, libplist
1213
failed to build). Add python-xml as a Requires to avoid:
1214
[...]
1215
File "/usr/lib64/python2.7/site-packages/Cython/Compiler/Annotate.py",
1216
line 6, in <module> from xml.sax.saxutils import escape as
1217
html_escape.
1218
ImportError: No module named xml.sax.saxutils
1219
1220
-------------------------------------------------------------------
1221
Fri Jan 31 10:19:40 UTC 2014 - speilicke@suse.com
1222
1223
- Update to version 0.20:
1224
* Support for CPython 3.4.
1225
* Support for calling C++ template functions.
1226
* yield is supported in finally clauses.
1227
* The C code generated for finally blocks is duplicated for each exit
1228
case to allow for better optimisations by the C compiler.
1229
* Cython tries to undo the Python optimisationism of assigning a bound
1230
method to a local variable when it can generate better code for the
1231
direct call.
1232
* Constant Python float values are cached.
1233
* String equality comparisons can use faster type specific code in
1234
more cases than before.
1235
* String/Unicode formatting using the '%' operator uses a faster
1236
C-API call.
1237
* bytearray has become a known type and supports coercion from and
1238
to C strings. Indexing, slicing and decoding is optimised. Note that
1239
this may have an impact on existing code due to type inference.
1240
* Using cdef basestring stringvar and function arguments typed as
1241
basestring is now meaningful and allows assigning exactly
1242
str and unicode objects, but no subtypes of these types.
1243
* Support for the __debug__ builtin.
1244
* Assertions in Cython compiled modules are disabled if the running
1245
Python interpreter was started with the "-O" option.
1246
* Some types that Cython provides internally, such as functions and
1247
generators, are now shared across modules if more than one Cython
1248
implemented module is imported.
1249
* The type inference algorithm works more fine granular by taking the
1250
results of the control flow analysis into account.
1251
* A new script in bin/cythonize provides a command line frontend
1252
to the cythonize() compilation function (including distutils build).
1253
* The new extension type decorator @cython.no_gc_clear prevents
1254
objects from being cleared during cyclic garbage collection, thus
1255
making sure that object attributes are kept alive until deallocation.
1256
* During cyclic garbage collection, attributes of extension types that
1257
cannot create reference cycles due to their type (e.g. strings) are
1258
no longer considered for traversal or clearing. This can reduce the
1259
processing overhead when searching for or cleaning up reference cycles.
1260
* Package compilation (i.e. __init__.py files) now works, starting
1261
with Python 3.3.
1262
* The cython-mode.el script for Emacs was updated. Patch by Ivan Andrus.
1263
* An option common_utility_include_dir was added to cythonize() to save
1264
oft-used utility code once in a separate directory rather than as
1265
part of each generated file.
1266
* unraisable_tracebacks directive added to control printing of
1267
tracebacks of unraisable exceptions.
1268
1269
-------------------------------------------------------------------
1270
Mon Oct 21 12:13:57 UTC 2013 - dmueller@suse.com
1271
1272
- update to 0.19.2:
1273
* Some standard declarations were fixed or updated, including the previously
1274
incorrect declaration of PyBuffer_FillInfo() and some missing bits in
1275
libc.math.
1276
1277
* Heap allocated subtypes of type used the wrong base type struct at the
1278
C level.
1279
1280
* Calling the unbound method dict.keys/value/items() in dict subtypes could
1281
call the bound object method instead of the unbound supertype method.
1282
1283
* "yield" wasn't supported in "return" value expressions.
1284
1285
* Using the "bint" type in memory views lead to unexpected results.
1286
It is now an error.
1287
1288
* Assignments to global/closure variables could catch them in an illegal state
1289
while deallocating the old value.
1290
1291
-------------------------------------------------------------------
1292
Fri Oct 11 17:06:20 UTC 2013 - p.drouand@gmail.com
1293
1294
- Implement update-alternatives
1295
1296
-------------------------------------------------------------------
1297
Mon May 13 08:17:40 UTC 2013 - dmueller@suse.com
1298
1299
- update to 0.19.1:
1300
* Completely empty C-API structs for extension type slots (protocols like
1301
number/mapping/sequence) are no longer generated into the C code.
1302
* Docstrings that directly follow a public/readonly attribute declaration
1303
in a cdef class will be used as docstring of the auto-generated property.
1304
This fixes ticket 206.
1305
* The automatic signature documentation tries to preserve more semantics
1306
of default arguments and argument types. Specifically, bint arguments
1307
now appear as type bool.
1308
* A warning is emitted when negative literal indices are found inside of
1309
a code section that disables wraparound handling. This helps with
1310
fixing invalid code that might fail in the face of future compiler
1311
optimisations.
1312
* Constant folding for boolean expressions (and/or) was improved.
1313
* Added a build_dir option to cythonize() which allows one to place
1314
the generated .c files outside the source tree.
1315
1316
-------------------------------------------------------------------
1317
Mon Apr 29 11:58:41 UTC 2013 - dmueller@suse.com
1318
1319
- Update to version 0.19:
1320
+ Please see http://wiki.cython.org/ReleaseNotes-0.19
1321
1322
-------------------------------------------------------------------
1323
Wed Mar 27 12:17:42 UTC 2013 - speilicke@suse.com
1324
1325
- Update to version 0.18:
1326
+ Please see http://wiki.cython.org/ReleaseNotes-0.18
1327
1328
-------------------------------------------------------------------
1329
Thu Nov 22 15:32:14 UTC 2012 - saschpe@suse.de
1330
1331
- Update to version 0.17.2:
1332
+ Please see http://wiki.cython.org/ReleaseNotes-0.17.2
1333
- Drop excessive macro usage
1334
- No need for "-fno-strict-aliasing" anymore
1335
- One rpmlintrc is enough
1336
1337
-------------------------------------------------------------------
1338
Fri May 25 07:47:16 UTC 2012 - toddrme2178@gmail.com
1339
1340
- Fix .py/.pyc issues
1341
1342
-------------------------------------------------------------------
1343
Fri May 18 10:52:46 UTC 2012 - toddrme2178@gmail.com
1344
1345
- Add python 3 package
1346
- Clean up spec file formatting
1347
- Remove setbadness from rplintrc files
1348
1349
-------------------------------------------------------------------
1350
Mon Apr 23 11:09:29 UTC 2012 - vdziewiecki@suse.com
1351
1352
-Update to 0.16:
1353
http://wiki.cython.org/ReleaseNotes-0.16
1354
1355
-------------------------------------------------------------------
1356
Wed Feb 29 19:07:57 UTC 2012 - pascal.bleser@opensuse.org
1357
1358
- add rpmlintrc to mask false positives
1359
1360
-------------------------------------------------------------------
1361
Wed Sep 21 12:34:19 UTC 2011 - saschpe@suse.de
1362
1363
- Update to version 0.15.1:
1364
* Please see http://wiki.cython.org/ReleaseNotes-0.15.1
1365
1366
-------------------------------------------------------------------
1367
Tue Sep 6 13:25:54 UTC 2011 - saschpe@suse.de
1368
1369
- Add Provides/Obsoletes for python-cython
1370
1371
-------------------------------------------------------------------
1372
Fri Sep 2 11:03:40 UTC 2011 - saschpe@suse.de
1373
1374
- Fixed a typo
1375
- Removed testsuite again, fixes SLE build
1376
1377
-------------------------------------------------------------------
1378
Fri Sep 2 09:50:25 UTC 2011 - saschpe@suse.de
1379
1380
- Update to version 0.15:
1381
* For loop docs fix and pointer iteration.
1382
* Pure decorators now implemented.
1383
* fix bug #707: optimised dict iteration over non-trivial expressions fail...
1384
* optimise object.pop() for sets
1385
* Py2.4 fix: PySet_Pop() appeared in Py2.5
1386
* Py3.3 test fix
1387
* Support module level control flow and Entry-level error on uninitialized
1388
- Spec file cleanup:
1389
- Fixed wrong EOL encodings and non-excutable scripts
1390
- Set license to Apache-2.0
1391
- Run testsuite
1392
1393
-------------------------------------------------------------------
1394
Wed Apr 20 00:29:18 UTC 2011 - prusnak@opensuse.org
1395
1396
- updated to 0.14.1
1397
- changes too numerous to list, see the following for more details:
1398
* http://wiki.cython.org/ReleaseNotes-0.13
1399
* http://wiki.cython.org/ReleaseNotes-0.14
1400
* http://wiki.cython.org/ReleaseNotes-0.14.1
1401
1402
-------------------------------------------------------------------
1403
Sun Jun 6 21:21:32 UTC 2010 - dimstar@opensuse.org
1404
1405
- Use renewed python-macros, also for compatibility with other
1406
build targets.
1407
1408
-------------------------------------------------------------------
1409
Sun Jun 6 12:14:18 UTC 2010 - dimstar@opensuse.org
1410
1411
- Initial package of Cython 0.12.1
1412