summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-10-08 07:00:29 (GMT)
committerGeorg Brandl <georg@python.org>2007-10-08 07:00:29 (GMT)
commit9f27df56f84fb287a1971093bcf416fb2eca94c6 (patch)
tree679e968c5b12f8b0f674b7f312e461ff4471019b /Doc/library
parent14ef70b1752f0e92aa41a61a96be4f6bb3574d5a (diff)
downloadcpython-9f27df56f84fb287a1971093bcf416fb2eca94c6.zip
cpython-9f27df56f84fb287a1971093bcf416fb2eca94c6.tar.gz
cpython-9f27df56f84fb287a1971093bcf416fb2eca94c6.tar.bz2
Remove buffer() from the docs.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/functions.rst28
1 files changed, 0 insertions, 28 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index cd3f187..dab83e1 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -1079,34 +1079,6 @@ available. They are listed here in alphabetical order.
returns an empty iterator.
-.. % ---------------------------------------------------------------------------
-
-
-.. _non-essential-built-in-funcs:
-
-Non-essential Built-in Functions
-================================
-
-There are several built-in functions that are no longer essential to learn, know
-or use in modern Python programming. They have been kept here to maintain
-backwards compatibility with programs written for older versions of Python.
-
-Python programmers, trainers, students and bookwriters should feel free to
-bypass these functions without concerns about missing something important.
-
-
-.. XXX does this go away?
-.. function:: buffer(object[, offset[, size]])
-
- The *object* argument must be an object that supports the buffer call interface
- (such as strings, arrays, and buffers). A new buffer object will be created
- which references the *object* argument. The buffer object will be a slice from
- the beginning of *object* (or from the specified *offset*). The slice will
- extend to the end of *object* (or will have a length given by the *size*
- argument).
-
-
-
.. rubric:: Footnotes
.. [#] Specifying a buffer size currently has no effect on systems that don't have