[pypy-commit] pypy default: fix links

mattip pypy.commits at gmail.com
Mon Apr 3 12:27:21 EDT 2017


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r90933:bf1bb149e026
Date: 2017-04-03 19:24 +0300
http://bitbucket.org/pypy/pypy/changeset/bf1bb149e026/

Log:	fix links

diff --git a/pypy/doc/release-v5.7.0.rst b/pypy/doc/release-v5.7.0.rst
--- a/pypy/doc/release-v5.7.0.rst
+++ b/pypy/doc/release-v5.7.0.rst
@@ -99,7 +99,7 @@
     tp_dealloc
   * refactor and clean up poor handling of unicode exposed in work on py3.5
   * builtin module cppyy_ supports C++ 11, 14, etc. via cling (reflex has been removed)
-  * adapt ``weakref`` according to CPython issue #19542_, will be in CPython 2.7.14
+  * adapt ``weakref`` according to CPython issue 19542_, will be in CPython 2.7.14
   * support translations with cpyext and the Boehm GC (for special cases like
     RevDB_
   * implement ``StringBuffer.get_raw_address`` for the buffer protocol, it is
@@ -125,18 +125,18 @@
   * disable ``clock_gettime()`` on OS/X, since we support 10.11 and it was only
     added in 10.12
   * support ``HAVE_FSTATVFS`` which was unintentionally always false
-  * fix user-created C-API heaptype, issue #2434_
+  * fix user-created C-API heaptype, issue 2434_
   * fix ``PyDict_Update`` is not actually the same as ``dict.update``
   * assign ``tp_doc`` on ``PyTypeObject`` and tie it to the app-level ``__doc__`` attribute
-    issue #2446_
+    issue 2446_
   * clean up memory leaks around ``PyObject_GetBuffer``, ``PyMemoryView_GET_BUFFER``,
     ``PyMemoryView_FromBuffer``, and ``PyBuffer_Release``
   * improve support for creating C-extension objects from app-level classes,
     filling more slots, especially ``tp_new`` and ``tp_dealloc``
-  * fix for ``ctypes.c_bool`` returning ``bool`` restype, issue #2475_
+  * fix for ``ctypes.c_bool`` returning ``bool`` restype, issue 2475_
   * fix in corner cases with the GIL and C-API functions
-  * allow overriding thread.local.__init__ in a subclass, issue #2501_
-  * allow ``PyClass_New`` to be called with NULL as the first arguemnt, issue #2504_
+  * allow overriding thread.local.__init__ in a subclass, issue 2501_
+  * allow ``PyClass_New`` to be called with NULL as the first arguemnt, issue 2504_
 
 
 * Performance improvements:
diff --git a/pypy/doc/release-v5.7.1.rst b/pypy/doc/release-v5.7.1.rst
--- a/pypy/doc/release-v5.7.1.rst
+++ b/pypy/doc/release-v5.7.1.rst
@@ -5,13 +5,13 @@
 We have released a bugfix PyPy2.7-v5.7.1 and PyPy3.5-v5.7.1 beta (Linux 64bit),
 due to the following issues:
 
-  * correctly handle an edge case in dict.pop (issue #2508_)
+  * correctly handle an edge case in dict.pop (issue 2508_)
 
   * fix a regression to correctly handle multiple inheritance in a C-API type
     where the seconde base is an app-level class with a ``__new__`` function
 
   * fix a regression to fill a C-API type's ``tp_getattr`` slot from a
-    ``__getattr__`` method (issue #2523_)
+    ``__getattr__`` method (issue 2523_)
 
 Thanks to those who reported the issues.
 


More information about the pypy-commit mailing list