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: faulthandler: void pointer used in arithmetic
Type: behavior Stage:
Components: Extension Modules Versions: Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: python-dev, skrah, vstinner
Priority: normal Keywords:

Created on 2011-09-07 14:10 by skrah, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (5)
msg143675 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2011-09-07 14:10
Hi, suncc detected pointer arithmetic with a pointer to void:

"./Modules/faulthandler.c", line 910: warning: pointer to void or function used in arithmetic
"./Modules/faulthandler.c", line 911: warning: pointer to void or function used in arithmetic
"./Modules/faulthandler.c", line 914: warning: pointer to void or function used in arithmetic
"./Modules/faulthandler.c", line 916: warning: pointer to void or function used in arithmetic
msg143677 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2011-09-07 14:19
New changeset e91ad9669c08 by Victor Stinner in branch 'default':
Issue #12929: faulthandler now uses char* for arithmetic on pointers
http://hg.python.org/cpython/rev/e91ad9669c08
msg143678 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2011-09-07 14:25
Does my commit fixed the warning?
msg143684 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2011-09-07 14:39
Yes, the warning is gone.
msg143685 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2011-09-07 14:39
Ok, thanks for the report.
History
Date User Action Args
2022-04-11 14:57:21adminsetgithub: 57138
2011-09-07 14:39:53vstinnersetstatus: open -> closed
resolution: fixed
messages: + msg143685
2011-09-07 14:39:35skrahsetmessages: + msg143684
2011-09-07 14:25:17vstinnersetmessages: + msg143678
2011-09-07 14:19:08python-devsetnosy: + python-dev
messages: + msg143677
2011-09-07 14:10:46skrahcreate