summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/neps/index.rst.tmpl10
-rw-r--r--doc/neps/nep-0016-abstract-array.rst9
2 files changed, 15 insertions, 4 deletions
diff --git a/doc/neps/index.rst.tmpl b/doc/neps/index.rst.tmpl
index e7b8fedba..bf4df3dfb 100644
--- a/doc/neps/index.rst.tmpl
+++ b/doc/neps/index.rst.tmpl
@@ -81,3 +81,13 @@ Rejected NEPs
{% for nep, tags in neps.items() if tags['Status'] == 'Rejected' %}
{{ tags['Title'] }} <{{ tags['Filename'] }}>
{% endfor %}
+
+Withdrawn NEPs
+--------------
+
+.. toctree::
+ :maxdepth: 1
+
+{% for nep, tags in neps.items() if tags['Status'] == 'Withdrawn' %}
+ {{ tags['Title'] }} <{{ tags['Filename'] }}>
+{% endfor %}
diff --git a/doc/neps/nep-0016-abstract-array.rst b/doc/neps/nep-0016-abstract-array.rst
index d3c2860a7..0dc201541 100644
--- a/doc/neps/nep-0016-abstract-array.rst
+++ b/doc/neps/nep-0016-abstract-array.rst
@@ -1,11 +1,12 @@
-====================================================
-An abstract base class for identifying "duck arrays"
-====================================================
+=============================================================
+NEP 16 — An abstract base class for identifying "duck arrays"
+=============================================================
:Author: Nathaniel J. Smith <njs@pobox.com>
:Status: Withdrawn
:Type: Standards Track
:Created: 2018-03-06
+:Resolution: https://github.com/numpy/numpy/pull/12174
.. note::
@@ -318,7 +319,7 @@ Links to discussion
Appendix: Benchmark script
--------------------------
-.. literal-include:: nep-0016-benchmark.py
+.. literalinclude:: nep-0016-benchmark.py
Copyright