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
6254fcc6
Commit
6254fcc6
authored
Jun 28, 2015
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changelog
parent
270d1cfb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
10 deletions
+16
-10
CHANGES.rst
CHANGES.rst
+16
-10
No files found.
CHANGES.rst
View file @
6254fcc6
...
...
@@ -64,24 +64,30 @@ Features added
Bugs fixed
----------
* Calling "yield from" from Python on a Cython generator that returned a
value
triggered a crash in CPython. This is now being worked around.
* Calling "yield from" from Python on a Cython generator that returned a
value
triggered a crash in CPython. This is now being worked around.
See https://bugs.python.org/issue23996
* Language level 3 did not enable true division (a.k.a. float division)
for
integer operands.
* Language level 3 did not enable true division (a.k.a. float division)
for
integer operands.
* Relative cimports could accidentally fall back to trying an absolute
cimport
on failure.
* Relative cimports could accidentally fall back to trying an absolute
cimport
on failure.
* The result of calling a C struct constructor no longer requires an
intermediate
assignment when coercing to a Python dict.
* The result of calling a C struct constructor no longer requires an
intermediate
assignment when coercing to a Python dict.
* C++ exception declarations with mapping functions could fail to compile
when
pre-declared in .pxd files.
* C++ exception declarations with mapping functions could fail to compile
when
pre-declared in .pxd files.
* ``cpdef void`` methods are now permitted.
* ``abs(cint)`` could fail to compile in MSVC. Patch by David Vierra.
* Buffer index calculations using index variables with small C integer
types could overflow for large buffer sizes. Original patch by
David Vierra.
Other changes
-------------
...
...
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