Commit 228f30ab authored by Stefan Behnel's avatar Stefan Behnel

changelog

parent 76e1e9db
...@@ -24,8 +24,8 @@ Features added ...@@ -24,8 +24,8 @@ Features added
* HTML output of annotated code uses Pygments for code highlighting * HTML output of annotated code uses Pygments for code highlighting
and generally received a major overhaul by Matthias Bussonier. and generally received a major overhaul by Matthias Bussonier.
* The Python expression "2 ** N" was optimised. See * The Python expression "2 ** N" is optimised into bit shifting.
http://bugs.python.org/issue21420 See http://bugs.python.org/issue21420
* Simple support for declaring Python object types in Python signature * Simple support for declaring Python object types in Python signature
annotations. Currently requires setting the compiler directive annotations. Currently requires setting the compiler directive
...@@ -53,8 +53,8 @@ Bugs fixed ...@@ -53,8 +53,8 @@ Bugs fixed
independent. independent.
* Names that were unknown at compile time were looked up as builtins at * Names that were unknown at compile time were looked up as builtins at
runtime but not as global module names. This helps with globals() runtime but not as global module names. Trying both lookups helps with
manipulation. globals() manipulation.
* ``obj.pop(x)`` truncated large C integer values of x to ``Py_ssize_t``. * ``obj.pop(x)`` truncated large C integer values of x to ``Py_ssize_t``.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment