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
Xavier Thompson
cython
Commits
34db37c3
Commit
34db37c3
authored
Apr 28, 2020
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update changelog.
parent
dc41690a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
CHANGES.rst
CHANGES.rst
+4
-3
No files found.
CHANGES.rst
View file @
34db37c3
...
...
@@ -11,9 +11,10 @@ Features added
*
The
``
print
``
statement
(
not
the
``
print
()``
function
)
is
allowed
in
``
nogil
``
code
without
an
explicit
``
with
gil
``
section
.
*
The
``
assert
``
statement
is
allowed
in
``
nogil
``
sections
.
This
excludes
the
evaluation
of
the
asserted
condition
(
only
C
conditions
are
allowed
),
nor
any
formatting
of
the
assertion
message
(
which
can
only
be
a
simple
string
).
*
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
.
*
Cython
generates
C
compiler
branch
hints
for
unlikely
user
defined
if
-
clauses
in
more
cases
,
when
they
end
up
raising
exceptions
.
...
...
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