Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1 | |
| 2 | :mod:`mmap` --- Memory-mapped file support |
| 3 | ========================================== |
| 4 | |
| 5 | .. module:: mmap |
| 6 | :synopsis: Interface to memory-mapped files for Unix and Windows. |
| 7 | |
| 8 | |
| 9 | Memory-mapped file objects behave like both strings and like file objects. |
| 10 | Unlike normal string objects, however, these are mutable. You can use mmap |
Jeroen Ruigrok van der Werven | 069dfad | 2008-04-16 12:47:01 +0000 | [diff] [blame] | 11 | objects in most places where strings are expected; for example, you can use |
| 12 | the :mod:`re` module to search through a memory-mapped file. Since they're |
| 13 | mutable, you can change a single character by doing ``obj[index] = 'a'``, or |
| 14 | change a substring by assigning to a slice: ``obj[i1:i2] = '...'``. You can |
| 15 | also read and write data starting at the current file position, and |
| 16 | :meth:`seek` through the file to different positions. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 17 | |
Jeroen Ruigrok van der Werven | 069dfad | 2008-04-16 12:47:01 +0000 | [diff] [blame] | 18 | A memory-mapped file is created by the :class:`mmap` constructor, which is |
| 19 | different on Unix and on Windows. In either case you must provide a file |
| 20 | descriptor for a file opened for update. If you wish to map an existing Python |
| 21 | file object, use its :meth:`fileno` method to obtain the correct value for the |
| 22 | *fileno* parameter. Otherwise, you can open the file using the |
| 23 | :func:`os.open` function, which returns a file descriptor directly (the file |
| 24 | still needs to be closed when done). |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 25 | |
Ross Lagerwall | 528c4ad | 2011-07-25 07:23:58 +0200 | [diff] [blame] | 26 | .. note:: |
| 27 | If you want to create a memory-mapping for a writable, buffered file, you |
| 28 | should :func:`~io.IOBase.flush` the file first. This is necessary to ensure |
| 29 | that local modifications to the buffers are actually available to the |
| 30 | mapping. |
| 31 | |
Georg Brandl | 845c403 | 2008-01-21 14:16:46 +0000 | [diff] [blame] | 32 | For both the Unix and Windows versions of the constructor, *access* may be |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 33 | specified as an optional keyword parameter. *access* accepts one of three |
Jeroen Ruigrok van der Werven | 069dfad | 2008-04-16 12:47:01 +0000 | [diff] [blame] | 34 | values: :const:`ACCESS_READ`, :const:`ACCESS_WRITE`, or :const:`ACCESS_COPY` |
Jeroen Ruigrok van der Werven | ea7fa72 | 2008-04-17 12:39:45 +0000 | [diff] [blame] | 35 | to specify read-only, write-through or copy-on-write memory respectively. |
Jeroen Ruigrok van der Werven | 069dfad | 2008-04-16 12:47:01 +0000 | [diff] [blame] | 36 | *access* can be used on both Unix and Windows. If *access* is not specified, |
| 37 | Windows mmap returns a write-through mapping. The initial memory values for |
| 38 | all three access types are taken from the specified file. Assignment to an |
| 39 | :const:`ACCESS_READ` memory map raises a :exc:`TypeError` exception. |
| 40 | Assignment to an :const:`ACCESS_WRITE` memory map affects both memory and the |
| 41 | underlying file. Assignment to an :const:`ACCESS_COPY` memory map affects |
| 42 | memory but does not update the underlying file. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 43 | |
| 44 | .. versionchanged:: 2.5 |
| 45 | To map anonymous memory, -1 should be passed as the fileno along with the |
| 46 | length. |
| 47 | |
Georg Brandl | 845c403 | 2008-01-21 14:16:46 +0000 | [diff] [blame] | 48 | .. versionchanged:: 2.6 |
Jeroen Ruigrok van der Werven | 069dfad | 2008-04-16 12:47:01 +0000 | [diff] [blame] | 49 | mmap.mmap has formerly been a factory function creating mmap objects. Now |
Georg Brandl | 845c403 | 2008-01-21 14:16:46 +0000 | [diff] [blame] | 50 | mmap.mmap is the class itself. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 51 | |
Georg Brandl | 845c403 | 2008-01-21 14:16:46 +0000 | [diff] [blame] | 52 | .. class:: mmap(fileno, length[, tagname[, access[, offset]]]) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 53 | |
Jeroen Ruigrok van der Werven | 069dfad | 2008-04-16 12:47:01 +0000 | [diff] [blame] | 54 | **(Windows version)** Maps *length* bytes from the file specified by the |
| 55 | file handle *fileno*, and creates a mmap object. If *length* is larger |
| 56 | than the current size of the file, the file is extended to contain *length* |
| 57 | bytes. If *length* is ``0``, the maximum length of the map is the current |
| 58 | size of the file, except that if the file is empty Windows raises an |
| 59 | exception (you cannot create an empty mapping on Windows). |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 60 | |
Jeroen Ruigrok van der Werven | 069dfad | 2008-04-16 12:47:01 +0000 | [diff] [blame] | 61 | *tagname*, if specified and not ``None``, is a string giving a tag name for |
| 62 | the mapping. Windows allows you to have many different mappings against |
| 63 | the same file. If you specify the name of an existing tag, that tag is |
| 64 | opened, otherwise a new tag of this name is created. If this parameter is |
| 65 | omitted or ``None``, the mapping is created without a name. Avoiding the |
| 66 | use of the tag parameter will assist in keeping your code portable between |
| 67 | Unix and Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 68 | |
Jeroen Ruigrok van der Werven | 069dfad | 2008-04-16 12:47:01 +0000 | [diff] [blame] | 69 | *offset* may be specified as a non-negative integer offset. mmap references |
| 70 | will be relative to the offset from the beginning of the file. *offset* |
| 71 | defaults to 0. *offset* must be a multiple of the ALLOCATIONGRANULARITY. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 72 | |
Travis E. Oliphant | 8feafab | 2007-10-23 02:40:56 +0000 | [diff] [blame] | 73 | |
Georg Brandl | 845c403 | 2008-01-21 14:16:46 +0000 | [diff] [blame] | 74 | .. class:: mmap(fileno, length[, flags[, prot[, access[, offset]]]]) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 75 | :noindex: |
| 76 | |
| 77 | **(Unix version)** Maps *length* bytes from the file specified by the file |
| 78 | descriptor *fileno*, and returns a mmap object. If *length* is ``0``, the |
Jeroen Ruigrok van der Werven | 069dfad | 2008-04-16 12:47:01 +0000 | [diff] [blame] | 79 | maximum length of the map will be the current size of the file when |
| 80 | :class:`mmap` is called. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 81 | |
| 82 | *flags* specifies the nature of the mapping. :const:`MAP_PRIVATE` creates a |
Jeroen Ruigrok van der Werven | 069dfad | 2008-04-16 12:47:01 +0000 | [diff] [blame] | 83 | private copy-on-write mapping, so changes to the contents of the mmap |
| 84 | object will be private to this process, and :const:`MAP_SHARED` creates a |
| 85 | mapping that's shared with all other processes mapping the same areas of |
| 86 | the file. The default value is :const:`MAP_SHARED`. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 87 | |
Jeroen Ruigrok van der Werven | 069dfad | 2008-04-16 12:47:01 +0000 | [diff] [blame] | 88 | *prot*, if specified, gives the desired memory protection; the two most |
| 89 | useful values are :const:`PROT_READ` and :const:`PROT_WRITE`, to specify |
| 90 | that the pages may be read or written. *prot* defaults to |
| 91 | :const:`PROT_READ \| PROT_WRITE`. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 92 | |
Jeroen Ruigrok van der Werven | 069dfad | 2008-04-16 12:47:01 +0000 | [diff] [blame] | 93 | *access* may be specified in lieu of *flags* and *prot* as an optional |
| 94 | keyword parameter. It is an error to specify both *flags*, *prot* and |
| 95 | *access*. See the description of *access* above for information on how to |
| 96 | use this parameter. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 97 | |
Jeroen Ruigrok van der Werven | 069dfad | 2008-04-16 12:47:01 +0000 | [diff] [blame] | 98 | *offset* may be specified as a non-negative integer offset. mmap references |
| 99 | will be relative to the offset from the beginning of the file. *offset* |
| 100 | defaults to 0. *offset* must be a multiple of the PAGESIZE or |
| 101 | ALLOCATIONGRANULARITY. |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 102 | |
Victor Stinner | 112d48a | 2011-05-03 14:36:36 +0200 | [diff] [blame] | 103 | To ensure validity of the created memory mapping the file specified |
| 104 | by the descriptor *fileno* is internally automatically synchronized |
| 105 | with physical backing store on Mac OS X and OpenVMS. |
| 106 | |
Georg Brandl | 845c403 | 2008-01-21 14:16:46 +0000 | [diff] [blame] | 107 | This example shows a simple way of using :class:`mmap`:: |
Georg Brandl | fefcd4e | 2007-12-02 14:34:34 +0000 | [diff] [blame] | 108 | |
| 109 | import mmap |
| 110 | |
| 111 | # write a simple example file |
Hirokazu Yamamoto | 02172dd | 2009-02-28 15:24:00 +0000 | [diff] [blame] | 112 | with open("hello.txt", "wb") as f: |
Georg Brandl | fefcd4e | 2007-12-02 14:34:34 +0000 | [diff] [blame] | 113 | f.write("Hello Python!\n") |
| 114 | |
Hirokazu Yamamoto | 02172dd | 2009-02-28 15:24:00 +0000 | [diff] [blame] | 115 | with open("hello.txt", "r+b") as f: |
Georg Brandl | fefcd4e | 2007-12-02 14:34:34 +0000 | [diff] [blame] | 116 | # memory-map the file, size 0 means whole file |
Ezio Melotti | 5e32424 | 2013-03-13 02:26:11 +0200 | [diff] [blame] | 117 | mm = mmap.mmap(f.fileno(), 0) |
Georg Brandl | fefcd4e | 2007-12-02 14:34:34 +0000 | [diff] [blame] | 118 | # read content via standard file methods |
Ezio Melotti | 5e32424 | 2013-03-13 02:26:11 +0200 | [diff] [blame] | 119 | print mm.readline() # prints "Hello Python!" |
Georg Brandl | fefcd4e | 2007-12-02 14:34:34 +0000 | [diff] [blame] | 120 | # read content via slice notation |
Ezio Melotti | 5e32424 | 2013-03-13 02:26:11 +0200 | [diff] [blame] | 121 | print mm[:5] # prints "Hello" |
Georg Brandl | fefcd4e | 2007-12-02 14:34:34 +0000 | [diff] [blame] | 122 | # update content using slice notation; |
| 123 | # note that new content must have same size |
Ezio Melotti | 5e32424 | 2013-03-13 02:26:11 +0200 | [diff] [blame] | 124 | mm[6:] = " world!\n" |
Georg Brandl | fefcd4e | 2007-12-02 14:34:34 +0000 | [diff] [blame] | 125 | # ... and read again using standard file methods |
Ezio Melotti | 5e32424 | 2013-03-13 02:26:11 +0200 | [diff] [blame] | 126 | mm.seek(0) |
| 127 | print mm.readline() # prints "Hello world!" |
Georg Brandl | fefcd4e | 2007-12-02 14:34:34 +0000 | [diff] [blame] | 128 | # close the map |
Ezio Melotti | 5e32424 | 2013-03-13 02:26:11 +0200 | [diff] [blame] | 129 | mm.close() |
Georg Brandl | fefcd4e | 2007-12-02 14:34:34 +0000 | [diff] [blame] | 130 | |
| 131 | |
| 132 | The next example demonstrates how to create an anonymous map and exchange |
| 133 | data between the parent and child processes:: |
| 134 | |
| 135 | import mmap |
| 136 | import os |
| 137 | |
Ezio Melotti | 5e32424 | 2013-03-13 02:26:11 +0200 | [diff] [blame] | 138 | mm = mmap.mmap(-1, 13) |
| 139 | mm.write("Hello world!") |
Georg Brandl | fefcd4e | 2007-12-02 14:34:34 +0000 | [diff] [blame] | 140 | |
| 141 | pid = os.fork() |
| 142 | |
| 143 | if pid == 0: # In a child process |
Ezio Melotti | 5e32424 | 2013-03-13 02:26:11 +0200 | [diff] [blame] | 144 | mm.seek(0) |
| 145 | print mm.readline() |
Georg Brandl | fefcd4e | 2007-12-02 14:34:34 +0000 | [diff] [blame] | 146 | |
Ezio Melotti | 5e32424 | 2013-03-13 02:26:11 +0200 | [diff] [blame] | 147 | mm.close() |
Georg Brandl | fefcd4e | 2007-12-02 14:34:34 +0000 | [diff] [blame] | 148 | |
Travis E. Oliphant | 8feafab | 2007-10-23 02:40:56 +0000 | [diff] [blame] | 149 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 150 | Memory-mapped file objects support the following methods: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 151 | |
| 152 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 153 | .. method:: close() |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 154 | |
Senthil Kumaran | b65685f | 2013-09-09 22:38:58 -0700 | [diff] [blame] | 155 | Closes the mmap. Subsequent calls to other methods of the object will |
| 156 | result in a ValueError exception being raised. This will not close |
| 157 | the open file. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 158 | |
| 159 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 160 | .. method:: find(string[, start[, end]]) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 161 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 162 | Returns the lowest index in the object where the substring *string* is |
| 163 | found, such that *string* is contained in the range [*start*, *end*]. |
| 164 | Optional arguments *start* and *end* are interpreted as in slice notation. |
| 165 | Returns ``-1`` on failure. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 166 | |
| 167 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 168 | .. method:: flush([offset, size]) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 169 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 170 | Flushes changes made to the in-memory copy of a file back to disk. Without |
| 171 | use of this call there is no guarantee that changes are written back before |
| 172 | the object is destroyed. If *offset* and *size* are specified, only |
| 173 | changes to the given range of bytes will be flushed to disk; otherwise, the |
| 174 | whole extent of the mapping is flushed. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 175 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 176 | **(Windows version)** A nonzero value returned indicates success; zero |
| 177 | indicates failure. |
Jeroen Ruigrok van der Werven | 967a83c | 2008-04-16 12:57:43 +0000 | [diff] [blame] | 178 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 179 | **(Unix version)** A zero value is returned to indicate success. An |
| 180 | exception is raised when the call failed. |
Jeroen Ruigrok van der Werven | 967a83c | 2008-04-16 12:57:43 +0000 | [diff] [blame] | 181 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 182 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 183 | .. method:: move(dest, src, count) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 184 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 185 | Copy the *count* bytes starting at offset *src* to the destination index |
| 186 | *dest*. If the mmap was created with :const:`ACCESS_READ`, then calls to |
Georg Brandl | 21946af | 2010-10-06 09:28:45 +0000 | [diff] [blame] | 187 | move will raise a :exc:`TypeError` exception. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 188 | |
| 189 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 190 | .. method:: read(num) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 191 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 192 | Return a string containing up to *num* bytes starting from the current |
| 193 | file position; the file position is updated to point after the bytes that |
| 194 | were returned. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 195 | |
| 196 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 197 | .. method:: read_byte() |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 198 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 199 | Returns a string of length 1 containing the character at the current file |
| 200 | position, and advances the file position by 1. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 201 | |
| 202 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 203 | .. method:: readline() |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 204 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 205 | Returns a single line, starting at the current file position and up to the |
| 206 | next newline. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 207 | |
| 208 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 209 | .. method:: resize(newsize) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 210 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 211 | Resizes the map and the underlying file, if any. If the mmap was created |
| 212 | with :const:`ACCESS_READ` or :const:`ACCESS_COPY`, resizing the map will |
Georg Brandl | 21946af | 2010-10-06 09:28:45 +0000 | [diff] [blame] | 213 | raise a :exc:`TypeError` exception. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 214 | |
| 215 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 216 | .. method:: rfind(string[, start[, end]]) |
Andrew M. Kuchling | 5c60bfc | 2008-01-19 18:18:41 +0000 | [diff] [blame] | 217 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 218 | Returns the highest index in the object where the substring *string* is |
| 219 | found, such that *string* is contained in the range [*start*, *end*]. |
| 220 | Optional arguments *start* and *end* are interpreted as in slice notation. |
| 221 | Returns ``-1`` on failure. |
Andrew M. Kuchling | 5c60bfc | 2008-01-19 18:18:41 +0000 | [diff] [blame] | 222 | |
| 223 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 224 | .. method:: seek(pos[, whence]) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 225 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 226 | Set the file's current position. *whence* argument is optional and |
| 227 | defaults to ``os.SEEK_SET`` or ``0`` (absolute file positioning); other |
| 228 | values are ``os.SEEK_CUR`` or ``1`` (seek relative to the current |
| 229 | position) and ``os.SEEK_END`` or ``2`` (seek relative to the file's end). |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 230 | |
| 231 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 232 | .. method:: size() |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 233 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 234 | Return the length of the file, which can be larger than the size of the |
| 235 | memory-mapped area. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 236 | |
| 237 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 238 | .. method:: tell() |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 239 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 240 | Returns the current position of the file pointer. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 241 | |
| 242 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 243 | .. method:: write(string) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 244 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 245 | Write the bytes in *string* into memory at the current position of the |
| 246 | file pointer; the file position is updated to point after the bytes that |
| 247 | were written. If the mmap was created with :const:`ACCESS_READ`, then |
Georg Brandl | 21946af | 2010-10-06 09:28:45 +0000 | [diff] [blame] | 248 | writing to it will raise a :exc:`TypeError` exception. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 249 | |
| 250 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 251 | .. method:: write_byte(byte) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 252 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 253 | Write the single-character string *byte* into memory at the current |
| 254 | position of the file pointer; the file position is advanced by ``1``. If |
| 255 | the mmap was created with :const:`ACCESS_READ`, then writing to it will |
Georg Brandl | 21946af | 2010-10-06 09:28:45 +0000 | [diff] [blame] | 256 | raise a :exc:`TypeError` exception. |