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: Some Compiler Warnings on VC6
Type: Stage:
Components: None Versions: Python 2.5
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: christian.heimes, georg.brandl, ocean-city
Priority: low Keywords:

Created on 2007-02-27 03:14 by ocean-city, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (4)
msg31376 - (view) Author: Hirokazu Yamamoto (ocean-city) * (Python committer) Date: 2007-02-27 03:14
I got some warnings on VC6. Probably these are not so
problematic, but anyway I reported.

C:\Program Files\Microsoft Visual Studio\VC98\INCLUDE\winbase.h(53) : warning C4005: 'Yield' : macro was redefined.
        ..\..\Include\Python-ast.h(449) : Please check previous definition of 'Yield'

E:\python-dev\release-maint25\Objects\intobject.c(994) : warning C4018: '!=' : Tried to compare signed integer and unsigned integer.

E:\python-dev\release-maint25\Objects\stringobject.c(859) : warning C4018: '!=' : Tried to compare signed integer and unsigned integer.

E:\python-dev\release-maint25\Modules\audioop.c(1263) : warning C4761: The base types of the actual and formal parameters of a function were different.
The compiler converted the actual parameter to the type of the formal parameter.

E:\python-dev\release-maint25\Modules\audioop.c(1331) : warning C4761: The base types of the actual and formal parameters of a function were different.
The compiler converted the actual parameter to the type of the formal parameter.
msg31377 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2007-02-27 08:26
I assume this is from the 2.5 maintenance branch. Which revision is it?
msg31378 - (view) Author: Hirokazu Yamamoto (ocean-city) * (Python committer) Date: 2007-02-27 13:30
Yes, Revision 53990 (Latest)
msg59781 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2008-01-12 04:19
VC6 is no longer the main stream compiler. Please provide a patch if you
like to have these errors fixed in 2.6. I don't see the warnings in VS 2008.
History
Date User Action Args
2022-04-11 14:56:22adminsetgithub: 44629
2008-01-12 04:19:50christian.heimessetstatus: open -> closed
nosy: + christian.heimes
resolution: out of date
messages: + msg59781
2007-02-27 03:14:20ocean-citycreate