summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/Py3K.rst.txt7
-rw-r--r--doc/source/user/basics.io.genfromtxt.rst6
2 files changed, 0 insertions, 13 deletions
diff --git a/doc/Py3K.rst.txt b/doc/Py3K.rst.txt
index f78b9e5db..bb682308f 100644
--- a/doc/Py3K.rst.txt
+++ b/doc/Py3K.rst.txt
@@ -394,13 +394,6 @@ There are a couple of places that need further attention:
In some cases, this returns a buffer object on Python 2. On Python 3,
there is no stand-alone buffer object, so we return a byte array instead.
-- multiarray.int_asbuffer
-
- Converts an integer to a void* pointer -- in Python.
-
- Should we just remove this for Py3? It doesn't seem like it is used
- anywhere, and it doesn't sound very useful.
-
The Py2/Py3 compatible PyBufferMethods definition looks like::
diff --git a/doc/source/user/basics.io.genfromtxt.rst b/doc/source/user/basics.io.genfromtxt.rst
index 21832e5aa..6ef80bf8e 100644
--- a/doc/source/user/basics.io.genfromtxt.rst
+++ b/doc/source/user/basics.io.genfromtxt.rst
@@ -521,12 +521,6 @@ provides several convenience functions derived from
:func:`~numpy.genfromtxt`. These functions work the same way as the
original, but they have different default values.
-:func:`~numpy.ndfromtxt`
- Always set ``usemask=False``.
- The output is always a standard :class:`numpy.ndarray`.
-:func:`~numpy.mafromtxt`
- Always set ``usemask=True``.
- The output is always a :class:`~numpy.ma.MaskedArray`
:func:`~numpy.recfromtxt`
Returns a standard :class:`numpy.recarray` (if ``usemask=False``) or a
:class:`~numpy.ma.MaskedRecords` array (if ``usemaske=True``). The