Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
b278dfca
Commit
b278dfca
authored
May 05, 2020
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update changelog.
parent
7c90cb73
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
2 deletions
+25
-2
CHANGES.rst
CHANGES.rst
+25
-2
No files found.
CHANGES.rst
View file @
b278dfca
...
...
@@ -2,7 +2,7 @@
Cython
Changelog
================
3.0.0
alpha
4
(
2020
-
0
?
-??)
3.0.0
alpha
4
(
2020
-
0
5
-??)
==========================
Features
added
...
...
@@ -16,7 +16,10 @@ Features added
evaluation
of
the
asserted
condition
only
allows
C
expressions
.
*
Cython
generates
C
compiler
branch
hints
for
unlikely
user
defined
if
-
clauses
in
more
cases
,
when
they
end
up
raising
exceptions
.
in
more
cases
,
when
they
end
up
raising
exceptions
unconditionally
.
This
now
includes
exceptions
being
raised
in
``
nogil
``/``
with
gil
``
sections
.
*
Some
internal
memoryview
functions
were
tuned
to
reduce
object
overhead
.
Bugs
fixed
----------
...
...
@@ -26,10 +29,30 @@ Bugs fixed
*
Error
handling
early
in
the
module
init
code
could
lead
to
a
crash
.
*
Error
handling
in
``
cython
.
array
``
creation
was
improved
to
avoid
calling
C
-
API
functions
with
an
error
held
.
*
Complex
buffer
item
types
of
structs
of
arrays
could
fail
to
validate
.
Patch
by
Leo
and
smutch
.
(
Github
issue
#
1407
)
*
When
importing
the
old
Cython
``
build_ext
``
integration
with
distutils
,
the
additional
command
line
arguments
leaked
into
the
regular
command
.
Patch
by
Kamekameha
.
(
Github
issue
#
2209
)
*
The
improved
GIL
handling
in
``
nogil
``
functions
introduced
in
3.0
a2
could
generate
invalid
C
code
.
(
Github
issue
#
3558
)
*
``
PyEval_InitThreads
()``
is
no
longer
used
in
Py3
.7
+
where
it
is
a
no
-
op
.
*
Parallel
builds
of
Cython
itself
(``
setup
.
py
build_ext
-
j
N
``)
failed
on
Windows
.
Other
changes
-------------
*
The
C
property
feature
has
been
rewritten
and
now
requires
C
property
methods
to
be
declared
``
inline
``.
3.0.0
alpha
3
(
2020
-
04
-
27
)
==========================
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment