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: warning: implicit declaration of function 'finite'
Type: Stage: resolved
Components: Build Versions: Python 3.1
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jcea Nosy List: jcea, loewis, mark.dickinson, python-dev
Priority: normal Keywords:

Created on 2011-04-20 19:35 by jcea, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (4)
msg134175 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2011-04-20 19:35
Compiling 3.1, I get this warning:

"""
/export/home/buildbot/32bits/3.1.cea-indiana-x86/build/Modules/cmathmodule.c:77: warning: implicit declaration of function 'finite'
/export/home/buildbot/32bits/3.1.cea-indiana-x86/build/Modules/mathmodule.c:149: warning: implicit declaration of function 'finite'
/export/home/buildbot/32bits/3.1.cea-indiana-x86/build/Modules/_json.c:1222: warning: implicit declaration of function 'finite'
"""
msg134176 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2011-04-20 19:40
Can you please check whether math.h hides the finite declaration for some reason?
msg134177 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2011-04-20 20:03
Porting 5b607cd8c71b...
msg134180 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2011-04-20 20:41
New changeset 358a0dd0a9f2 by Jesus Cea in branch '3.1':
Port 5b607cd8c71b (closes #11892)
http://hg.python.org/cpython/rev/358a0dd0a9f2
History
Date User Action Args
2022-04-11 14:57:16adminsetgithub: 56101
2011-04-21 09:56:00mark.dickinsonsetnosy: + mark.dickinson
2011-04-20 20:41:45python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg134180

resolution: fixed
stage: resolved
2011-04-20 20:03:58jceasetmessages: + msg134177
2011-04-20 19:40:34loewissetnosy: + loewis
messages: + msg134176
2011-04-20 19:35:28jceacreate