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
d0833008
Commit
d0833008
authored
Mar 30, 2019
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update changelog.
parent
4e19317e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
CHANGES.rst
CHANGES.rst
+10
-5
No files found.
CHANGES.rst
View file @
d0833008
...
@@ -31,6 +31,11 @@ Features added
...
@@ -31,6 +31,11 @@ Features added
*
Multiplication
of
Python
numbers
with
small
constant
integers
is
faster
.
*
Multiplication
of
Python
numbers
with
small
constant
integers
is
faster
.
(
Github
issue
#
2808
)
(
Github
issue
#
2808
)
*
Extension
types
that
do
not
need
their
own
``
tp_new
``
implementation
(
because
they
have
no
object
attributes
etc
.)
directly
inherit
the
implementation
of
their
parent
type
if
possible
.
(
Github
issue
#
1555
)
*
The
attributes
``
gen
.
gi_frame
``
and
``
coro
.
cr_frame
``
of
Cython
compiled
*
The
attributes
``
gen
.
gi_frame
``
and
``
coro
.
cr_frame
``
of
Cython
compiled
generators
and
coroutines
now
return
an
actual
frame
object
for
introspection
.
generators
and
coroutines
now
return
an
actual
frame
object
for
introspection
.
(
Github
issue
#
2306
)
(
Github
issue
#
2306
)
...
@@ -60,11 +65,6 @@ Bugs fixed
...
@@ -60,11 +65,6 @@ Bugs fixed
semantics
.
It
now
passes
through
the
Mapping
protocol
first
when
supported
.
semantics
.
It
now
passes
through
the
Mapping
protocol
first
when
supported
.
(
Github
issue
#
1807
)
(
Github
issue
#
1807
)
*
Extension
types
that
do
not
need
their
own
``
tp_new
``
implementation
(
because
they
have
no
object
attributes
etc
.)
directly
inherit
the
implementation
of
their
parent
type
if
that
is
available
in
the
same
module
.
(
Github
issue
#
1555
)
*
The
``
Py_hash_t
``
type
failed
to
accept
arbitrary
"index"
values
.
*
The
``
Py_hash_t
``
type
failed
to
accept
arbitrary
"index"
values
.
(
Github
issue
#
2752
)
(
Github
issue
#
2752
)
...
@@ -108,6 +108,11 @@ Other changes
...
@@ -108,6 +108,11 @@ Other changes
tends
to
be
slower
and
less
widely
supported
these
days
.
tends
to
be
slower
and
less
widely
supported
these
days
.
(
Github
issue
#
2790
)
(
Github
issue
#
2790
)
*
The
long
deprecated
include
files
``
python_
*``,
``
stdio
``,
``
stdlib
``
and
``
stl
``
in
``
Cython
/
Includes
/
Deprecated
/``
were
removed
.
Use
the
``
libc
.*``
and
``
cpython
.*``
pxd
modules
instead
.
Patch
by
Jeroen
Demeyer
.
(
Github
issue
#
2904
)
*
Support
for
Python
2.6
was
removed
.
*
Support
for
Python
2.6
was
removed
.
...
...
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