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
Boxiang Sun
cython
Commits
4c865f39
Commit
4c865f39
authored
Oct 18, 2014
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changelog
parent
fef07ad1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
7 deletions
+20
-7
CHANGES.rst
CHANGES.rst
+20
-7
No files found.
CHANGES.rst
View file @
4c865f39
...
@@ -2,8 +2,8 @@
...
@@ -2,8 +2,8 @@
Cython Changelog
Cython Changelog
================
================
0.21.1 (2014-10-18)
Latest changes
==============
=====
==============
Features added
Features added
--------------
--------------
...
@@ -11,12 +11,28 @@ Features added
...
@@ -11,12 +11,28 @@ Features added
* C functions can coerce to Python functions, which allows passing them
* C functions can coerce to Python functions, which allows passing them
around as callable objects.
around as callable objects.
* New ``cythonize`` option ``-a`` to generate the annotated HTML source view.
* Extern C functions can now be declared as cpdef to export them to
* Extern C functions can now be declared as cpdef to export them to
the module's Python namespace. Extern C functions in pxd files export
the module's Python namespace. Extern C functions in pxd files export
their values to their own module, iff it exists.
their values to their own module, iff it exists.
Bugs fixed
----------
* Mismatching 'except' declarations on signatures in .pxd and .pyx files failed
to produce a compile error.
Other changes
-------------
0.21.1 (2014-10-18)
===================
Features added
--------------
* New ``cythonize`` option ``-a`` to generate the annotated HTML source view.
* Missing C-API declarations in ``cpython.unicode`` were added.
* Missing C-API declarations in ``cpython.unicode`` were added.
* Passing ``language='c++'`` into cythonize() globally enables C++ mode for
* Passing ``language='c++'`` into cythonize() globally enables C++ mode for
...
@@ -33,9 +49,6 @@ Features added
...
@@ -33,9 +49,6 @@ Features added
Bugs fixed
Bugs fixed
----------
----------
* Mismatching 'except' declarations on signatures in .pxd and .pyx files failed
to produce a compile error.
* Reference leak for non-simple Python expressions in boolean and/or expressions.
* Reference leak for non-simple Python expressions in boolean and/or expressions.
* To fix a name collision and to reflect availability on host platforms,
* To fix a name collision and to reflect availability on host platforms,
...
...
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