diff options
author | Thomas Wouters <thomas@python.org> | 2006-02-17 09:59:00 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2006-02-17 09:59:00 (GMT) |
commit | 2c98a7bbc672f9415621b1538554a5b33d242034 (patch) | |
tree | 9f82ee48db160a184c93a806db14e7cc179e08ae /Modules | |
parent | bd3bc4dc4c18cd1b3f1ce0dd2065bbed6de4f267 (diff) | |
download | cpython-2c98a7bbc672f9415621b1538554a5b33d242034.zip cpython-2c98a7bbc672f9415621b1538554a5b33d242034.tar.gz cpython-2c98a7bbc672f9415621b1538554a5b33d242034.tar.bz2 |
Fix typo.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/mmapmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c index 51d6efa..8d1062b 100644 --- a/Modules/mmapmodule.c +++ b/Modules/mmapmodule.c @@ -1080,7 +1080,7 @@ new_mmap_object(PyObject *self, PyObject *args, PyObject *kwdict) m_obj->access = (access_mode)access; /* DWORD is a 4-byte int. If we're on a box where size_t consumes - * more then 4 bytes, we need to break it apart. Else (size_t + * more than 4 bytes, we need to break it apart. Else (size_t * consumes 4 bytes), C doesn't define what happens if we shift * right by 32, so we need different code. */ |