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
Gwenaël Samain
cython
Commits
63f44fe1
Commit
63f44fe1
authored
Jan 12, 2019
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update changelog.
parent
12148662
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
0 deletions
+25
-0
CHANGES.rst
CHANGES.rst
+25
-0
No files found.
CHANGES.rst
View file @
63f44fe1
...
...
@@ -8,6 +8,9 @@ Cython Changelog
Features
added
--------------
*
The
``
volatile
``
C
modifier
is
supported
in
Cython
code
.
Patch
by
Jeroen
Demeyer
.
(
Github
issue
#
1667
)
*
``?``
is
supported
as
NumPy
dtype
for
``
bool
``.
Patch
by
Max
Klein
.
(
Github
issue
#
2675
)
...
...
@@ -17,6 +20,9 @@ Features added
*
The
builtin
``
abs
()``
function
can
now
be
used
on
C
numbers
in
nogil
code
.
Patch
by
Elliott
Sales
de
Andrade
.
(
Github
issue
#
2748
)
*
PEP
-
479
(``
generator_stop
``)
is
now
enabled
by
default
with
language
level
3.
(
Github
issue
#
2580
)
Bugs
fixed
----------
...
...
@@ -25,6 +31,11 @@ Bugs fixed
the
first
character
if
multiple
characters
should
have
been
returned
.
They
now
use
the
original
Python
methods
again
.
*
Item
access
(
subscripting
)
with
integer
indices
/
keys
always
tried
the
Sequence
protocol
before
the
Mapping
protocol
,
which
diverged
from
Python
semantics
.
It
now
passes
through
the
Mapping
protocol
first
when
supported
.
(
Github
issue
#
1807
)
*
The
``
Py_hash_t
``
type
failed
to
accept
arbitrary
"index"
values
.
(
Github
issue
#
2752
)
...
...
@@ -36,9 +47,23 @@ Bugs fixed
as
integer
0
instead
of
the
expected
float
value
.
Patch
by
Kry
š
tof
Piln
áč
ek
.
(
Github
issue
#
2133
)
*
Setting
``
language_level
=
2
``
in
a
file
did
not
work
if
``
language_level
=
3
``
was
enabled
globally
before
.
Patch
by
Jeroen
Demeyer
.
(
Github
issue
#
2791
)
*
``
__init__
.
pyx
``
files
were
not
always
considered
as
package
indicators
.
(
Github
issue
#
2665
)
*
A
C
compiler
cast
warning
was
resolved
.
Patch
by
Michael
Buesch
.
(
Github
issue
#
2775
)
Other
changes
-------------
*
Cython
no
longer
generates
``
__qualname__
``
attributes
for
classes
in
Python
2.
x
since
they
are
problematic
there
and
not
correctly
maintained
for
subclasses
.
Patch
by
Jeroen
Demeyer
.
(
Github
issue
#
2772
)
*
Source
file
fingerprinting
now
uses
SHA
-
1
instead
of
MD5
since
the
latter
tends
to
be
slower
and
less
widely
supported
these
days
.
(
Github
issue
#
2790
)
...
...
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