Commit e47e5c7e authored by Jakub Wilk's avatar Jakub Wilk

CHANGES: fix Docutils warnings: Inline emphasis start-string without end-string.

parent 30808416
...@@ -59,7 +59,7 @@ Bugs fixed ...@@ -59,7 +59,7 @@ Bugs fixed
* Test failures on 32bit systems. This fixes ticket 857. * Test failures on 32bit systems. This fixes ticket 857.
* Code that uses "from xyz import *" and global C struct/union/array * Code that uses "from xyz import \*" and global C struct/union/array
variables could fail to compile due to missing helper functions. variables could fail to compile due to missing helper functions.
This fixes ticket 851. This fixes ticket 851.
...@@ -796,7 +796,7 @@ Bugs fixed ...@@ -796,7 +796,7 @@ Bugs fixed
* ``isinstance(X, type)`` failed to get optimised into a call to * ``isinstance(X, type)`` failed to get optimised into a call to
``PyType_Check()``, as done for other builtin types. ``PyType_Check()``, as done for other builtin types.
* A spurious "from datetime cimport *" was removed from the "cpython" * A spurious "from datetime cimport \*" was removed from the "cpython"
declaration package. This means that the "datetime" declarations declaration package. This means that the "datetime" declarations
(added in 0.19) are no longer available directly from the "cpython" (added in 0.19) are no longer available directly from the "cpython"
namespace, but only from "cpython.datetime". This is the correct namespace, but only from "cpython.datetime". This is the correct
......
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