[Python-apps-commits] r7433 - in packages/cython/trunk/debian/changelogs (2 files)

yoh at users.alioth.debian.org yoh at users.alioth.debian.org
Wed Aug 10 20:31:09 UTC 2011


    Date: Wednesday, August 10, 2011 @ 20:31:06
  Author: yoh
Revision: 7433

Fetched changelog for 0.15 release

Added:
  packages/cython/trunk/debian/changelogs/ReleaseNotes-0.15
Modified:
  packages/cython/trunk/debian/changelogs/ReleaseHistory

Modified: packages/cython/trunk/debian/changelogs/ReleaseHistory
===================================================================
--- packages/cython/trunk/debian/changelogs/ReleaseHistory	2011-08-09 20:11:48 UTC (rev 7432)
+++ packages/cython/trunk/debian/changelogs/ReleaseHistory	2011-08-10 20:31:06 UTC (rev 7433)
@@ -1,9 +1,15 @@
-Fetched from http://wiki.cython.org/ReleaseHistory on Wed Sep 29 11:06:57 EDT 2010
+Fetched from http://wiki.cython.org/ReleaseHistory on Wed Aug 10 16:25:01 EDT 2011
 
 There seems to be no list of releases available on the web. These are collected from the mailing list. It is not complete, but is probably already useful so that people can see if it worth upgrading to the latest version. The current release is always linked to from the main site, old releases can be found at http://cython.org/release/.
 
- * ( [[ReleaseNotes-0.13]] )
+ * [[ReleaseNotes-0.15]]
 
+ * [[ReleaseNotes-0.14.1]]
+
+ * [[ReleaseNotes-0.14]]
+
+ * [[ReleaseNotes-0.13]]
+
  * [[ReleaseNotes-0.12.1]]
 
  * [[ReleaseNotes-0.12]]

Added: packages/cython/trunk/debian/changelogs/ReleaseNotes-0.15
===================================================================
--- packages/cython/trunk/debian/changelogs/ReleaseNotes-0.15	                        (rev 0)
+++ packages/cython/trunk/debian/changelogs/ReleaseNotes-0.15	2011-08-10 20:31:06 UTC (rev 7433)
@@ -0,0 +1,80 @@
+Fetched from http://wiki.cython.org/ReleaseNotes-0.15 on Wed Aug 10 16:25:01 EDT 2011
+
+= Cython 0.15 =
+ * Release date: August 5, 2011
+ * Download: http://cython.org/release/Cython-0.15.tar.gz
+
+== Major Features ==
+
+ * Generators (yield) - Cython has full support for generators, generator expressions and http://www.python.org/dev/peps/pep-0342/ coroutines.
+
+ * The nonlocal keyword is supported.
+
+ * Re-acquiring the gil: with gil - works as expected within a nogil context.
+
+ * OpenMP support: http://docs.cython.org/0.15/src/userguide/parallelism.html.
+
+ * Control flow analysis prunes dead code and emits warnings and errors about uninitialised variables.
+
+ * Debugger command cy set to assign values of expressions to Cython variables and cy exec counterpart $cy_eval().
+
+ * Exception chaining http://www.python.org/dev/peps/pep-3134/.
+
+ * Relative imports http://www.python.org/dev/peps/pep-0328/.
+
+ * Improved http://docs.cython.org/0.15/src/tutorial/pure.html including cython.cclass, cython.cfunc, and cython.ccall.
+
+ * The with statement has its own dedicated and faster C implementation.
+
+ * Support for del.
+
+ * Boundschecking directives implemented for builtin Python sequence types.
+
+ * Several updates and additions to the shipped https://github.com/cython/cython/tree/master/Cython/Includes.
+
+ * Forward declaration of types is no longer required for circular references.
+
+Note: this will be the last release to support Python 2.3; Python 2.4 will be supported for at least one more release.
+
+== General improvements and bug fixes ==
+
+This release contains over a thousand commits including hundreds of bugfixes and optimizations.  The bug tracker has not been as heavily used this release cycle, but is still an interesting http://trac.cython.org/cython_trac/query?status=closed&group=component&order=id&col=id&col=summary&col=milestone&col=status&col=type&col=priority&col=owner&col=component&milestone=0.15&desc=1
+
+== Incompatible changes ==
+
+ * Uninitialized variables are no longer initialized to None and accessing them has the same semantics as standard Python.
+
+ * globals() now returns a read-only dict of the Cython module's globals, rather than the globals
+   of the first non-Cython module in the stack 
+
+ * Many C++ exceptions are now special cases to give closer Python counterparts.  This means that except+ functions that formerly raised generic RuntimeErrors may raise something else such as ArithmeticError.
+
+== Known regressions ==
+
+ * The inlined generator expressions (introduced in Cython 0.13) were disabled in favour of full generator expression support. This induces a performance regression for cases that were previously inlined.
+
+== Contributors ==
+
+Many thanks to:
+
+Francesc Alted, 
+Haoyu Bai, 
+Stefan Behnel, 
+Robert Bradshaw, 
+Lars Buitinck, 
+Lisandro Dalcin, 
+John Ehresman, 
+Mark Florisson, 
+Christoph Gohlke, 
+Jason Grout, 
+Chris Lasher, 
+Vitja Makarov, 
+Brent Pedersen, 
+Dag Sverre Seljebotn, 
+Nathaniel Smith, 
+and Pauli Virtanen
+
+
+
+----
+CategoryReleaseNotes




More information about the Python-apps-commits mailing list