This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Compiler warning "signed/unsigned comparison in mmapmodule"
Type: compile error Stage:
Components: Interpreter Core Versions: Python 3.0
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: nnorwitz Nosy List: ezio.melotti, nnorwitz, rhettinger
Priority: normal Keywords:

Created on 2008-12-02 21:48 by rhettinger, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg76791 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2008-12-02 21:48
mmapmodule.c: lines 247-248

	/* silently 'adjust' out-of-range requests */
	if (num_bytes > self->size - self->pos) {
msg100991 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2010-03-13 06:47
That line has been changed in #6344 (see the last message for the revision numbers).
Raymond, do you still have that warning?
msg131855 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2011-03-23 06:03
I no longer have access to the compiler that emitted the warning.
History
Date User Action Args
2022-04-11 14:56:42adminsetgithub: 48748
2011-03-23 06:03:07rhettingersetstatus: open -> closed
title: Compiler warning "signed/unsigned comparion in mmapmodule" -> Compiler warning "signed/unsigned comparison in mmapmodule"
nosy: nnorwitz, rhettinger, ezio.melotti
messages: + msg131855

resolution: out of date
2010-03-13 06:47:24ezio.melottisetnosy: + ezio.melotti
messages: + msg100991
2008-12-02 21:48:32rhettingercreate