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
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
41c8bf37
Commit
41c8bf37
authored
Apr 29, 2020
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update changelog.
parent
97e1b964
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
CHANGES.rst
CHANGES.rst
+5
-3
No files found.
CHANGES.rst
View file @
41c8bf37
...
...
@@ -12,9 +12,8 @@ Features added
``
nogil
``
code
without
an
explicit
``
with
gil
``
section
.
*
The
``
assert
``
statement
is
allowed
in
``
nogil
``
sections
.
Here
,
the
GIL
is
only
acquired
for
raising
the
``
AssertionError
``,
which
means
that
the
evaluation
of
the
asserted
condition
only
allows
C
conditions
and
the
assertion
message
can
only
be
a
simple
string
.
only
acquired
if
the
``
AssertionError
``
is
really
raised
,
which
means
that
the
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
.
...
...
@@ -22,6 +21,9 @@ Features added
Bugs
fixed
----------
*
Exception
position
reporting
could
run
into
race
conditions
on
threaded
code
.
It
now
uses
function
-
local
variables
again
.
*
The
improved
GIL
handling
in
``
nogil
``
functions
introduced
in
3.0
a2
could
generate
invalid
C
code
.
(
Github
issue
#
3558
)
...
...
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