diff options
author | 2008-03-18 10:23:45 +0000 | |
---|---|---|
committer | 2008-03-18 10:23:45 +0000 | |
commit | dda5337d31504f9a0a7926ea8f98d5672aef6c6f (patch) | |
tree | 97050913fb18ff7414cfcb4756aa2403774dc6a9 /pypy/doc/__pypy__-module.txt | |
parent | Fix links. (diff) | |
download | pypy-dda5337d31504f9a0a7926ea8f98d5672aef6c6f.tar.gz pypy-dda5337d31504f9a0a7926ea8f98d5672aef6c6f.tar.bz2 pypy-dda5337d31504f9a0a7926ea8f98d5672aef6c6f.zip |
Mention __pypy__.bytebuffer().
Diffstat (limited to 'pypy/doc/__pypy__-module.txt')
-rw-r--r-- | pypy/doc/__pypy__-module.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pypy/doc/__pypy__-module.txt b/pypy/doc/__pypy__-module.txt index 09734980d5..43b5e7b327 100644 --- a/pypy/doc/__pypy__-module.txt +++ b/pypy/doc/__pypy__-module.txt @@ -14,6 +14,9 @@ Generally available functionality - ``internal_repr(obj)``: return the interpreter-level representation of an object. + - ``bytebuffer(length)``: return a new read-write buffer of the given length. + It works like a simplified array of characters (actually, depending on the + configuration the ``array`` module internally uses this). Thunk Object Space Functionality ================================ |