[issue15730] Silence unused value warnings under Mac OS X 10.8/clang

2019-07-14 Thread Ronald Oussoren
Ronald Oussoren added the comment: I'm closing this as out of date. -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue15730] Silence unused value warnings under Mac OS X 10.8/clang

2016-06-21 Thread Martin Panter
Martin Panter added the comment: Revisions 12e53abec5d0 and 0c7fff783b32 look like they do the same thing as Benno’s patch. Perhaps we can close this? -- nosy: +martin.panter resolution: -> out of date ___ Python tracker

[issue15730] Silence unused value warnings under Mac OS X 10.8/clang

2014-07-26 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- versions: +Python 3.5 -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue15730] Silence unused value warnings under Mac OS X 10.8/clang

2013-02-16 Thread Ed Campbell
Changes by Ed Campbell : -- nosy: +esc24 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue15730] Silence unused value warnings under Mac OS X 10.8/clang

2013-02-05 Thread Ronald Oussoren
Ronald Oussoren added the comment: This is an alternate patch, it replaces the PyObject_INIT and PyObject_INIT_VAR macros by inline functions with macro wrappers for compatibility (the macros are used to suppress type warnings). I don't particularly like my patch, but it might be a better way

[issue15730] Silence unused value warnings under Mac OS X 10.8/clang

2012-08-20 Thread Ronald Oussoren
Ronald Oussoren added the comment: Patch looks good to me. I've added 3.3 to the list of python versions because it might be worthwhile to apply this to 3.3 as well (after 3.3.0 is released). -- keywords: +needs review versions: +Python 3.3 ___ Pyth

[issue15730] Silence unused value warnings under Mac OS X 10.8/clang

2012-08-19 Thread Ned Deily
Changes by Ned Deily : -- nosy: +ned.deily stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue15730] Silence unused value warnings under Mac OS X 10.8/clang

2012-08-19 Thread Benno Rice
New submission from Benno Rice: This patch silences a bunch of unused value warnings emitted by clang when building on Mac OS X 10.8. -- assignee: ronaldoussoren components: Interpreter Core, Macintosh files: warning-silencing.patch keywords: patch messages: 168609 nosy: Benno.Rice, ron