From: Thomas Wouters Date: Fri, 17 Feb 2006 09:59:00 +0000 (+0000) Subject: Fix typo. X-Git-Tag: v2.5a0~630 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2c98a7bbc672f9415621b1538554a5b33d242034;p=python Fix typo. --- diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c index 51d6efa986..8d1062bad2 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. */