Re: [Python-Dev] warn_unused_result warnings

2011-04-01 Thread Arfrever Frehtes Taifersar Arahesis
2011-04-01 03:23:10 Victor Stinner napisał(a): > Le 01/04/2011 01:11, Benjamin Peterson a écrit : > > I'm rather sick of seeing this warnings on all compiles, so I propose > > we enable the -Wno-unused-results option. I judge that most of the > > cases where this occurs are error reporting function

Re: [Python-Dev] warn_unused_result warnings

2011-03-31 Thread Benjamin Peterson
2011/3/31 Victor Stinner : > Le 01/04/2011 01:11, Benjamin Peterson a écrit : >> >> I'm rather sick of seeing this warnings on all compiles, so I propose >> we enable the -Wno-unused-results option. I judge that most of the >> cases where this occurs are error reporting functions, where not much >>

Re: [Python-Dev] warn_unused_result warnings

2011-03-31 Thread Victor Stinner
Le 01/04/2011 01:11, Benjamin Peterson a écrit : I'm rather sick of seeing this warnings on all compiles, so I propose we enable the -Wno-unused-results option. I judge that most of the cases where this occurs are error reporting functions, where not much with return code can be done. Can't we tr

Re: [Python-Dev] warn_unused_result warnings

2011-03-31 Thread Antoine Pitrou
On Thu, 31 Mar 2011 18:11:46 -0500 Benjamin Peterson wrote: > I'm rather sick of seeing this warnings on all compiles, so I propose > we enable the -Wno-unused-results option. I judge that most of the > cases where this occurs are error reporting functions, where not much > with return code can be

[Python-Dev] warn_unused_result warnings

2011-03-31 Thread Benjamin Peterson
I'm rather sick of seeing this warnings on all compiles, so I propose we enable the -Wno-unused-results option. I judge that most of the cases where this occurs are error reporting functions, where not much with return code can be done. -- Regards, Benjamin ___