diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-15 17:25:58 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-15 17:25:58 (GMT) |
commit | d0ebc75e7368cc4b1a8e504674feabc98f8fc5fd (patch) | |
tree | 1c29a4b62e0d0240180ad34a5e073d060bb7cc3d /Modules | |
parent | 3988ed8e6f06ba8474a7f120d7f10f2a4c479f29 (diff) | |
download | cpython-d0ebc75e7368cc4b1a8e504674feabc98f8fc5fd.zip cpython-d0ebc75e7368cc4b1a8e504674feabc98f8fc5fd.tar.gz cpython-d0ebc75e7368cc4b1a8e504674feabc98f8fc5fd.tar.bz2 |
Fix mmap and test_mmap under Windows too (followup to r88022)v3.2rc1
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/mmapmodule.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c index ef026b2..f3b2f50 100644 --- a/Modules/mmapmodule.c +++ b/Modules/mmapmodule.c @@ -1300,6 +1300,7 @@ new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict) else m_obj->size = low; #endif + m_obj->size -= offset; } else { m_obj->size = map_size; } |