diff options
author | Georg Brandl <georg@python.org> | 2005-08-24 07:17:40 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2005-08-24 07:17:40 (GMT) |
commit | 38387b8b910beeea9c6c2ed6c7b1bd26724bd813 (patch) | |
tree | 2dd64e20abe6477fa895c7ca8cd9acd086725203 /Doc/lib | |
parent | 76fb6d84d08c636a51073c5a51b93db14b06555e (diff) | |
download | cpython-38387b8b910beeea9c6c2ed6c7b1bd26724bd813.zip cpython-38387b8b910beeea9c6c2ed6c7b1bd26724bd813.tar.gz cpython-38387b8b910beeea9c6c2ed6c7b1bd26724bd813.tar.bz2 |
bug [ 728515 ] mmap's resize method resizes the file in win32 but not unix
Diffstat (limited to 'Doc/lib')
-rw-r--r-- | Doc/lib/libmmap.tex | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/lib/libmmap.tex b/Doc/lib/libmmap.tex index 0d7baa1..c7ab348 100644 --- a/Doc/lib/libmmap.tex +++ b/Doc/lib/libmmap.tex @@ -132,6 +132,7 @@ Memory-mapped file objects support the following methods: \end{methoddesc} \begin{methoddesc}{resize}{\var{newsize}} + Resizes the map and the underlying file, if any. If the mmap was created with \constant{ACCESS_READ} or \constant{ACCESS_COPY}, resizing the map will throw a \exception{TypeError} exception. \end{methoddesc} |