Benjamin Peterson <benja...@python.org> added the comment: 2012/4/23 Martin v. Löwis <rep...@bugs.python.org>: > > Martin v. Löwis <mar...@v.loewis.de> added the comment: > >>> What's the specific warning that you want to eliminate? >> >> "control reaches end of non-void function without return" >> >> Basically, whenever you see "assert(0)" today. > > Sorry, what I meant is: what specific line (in what specific > source file) is that warning on? > > If there is an assert(0) somewhere, there should be no > subsequent code, so no such warning should be generated.
Right, we currently avoid this problem by writing "assert(0)" for example in lookdict_split in dictobject.c. What I'm saying is that instead writing "assert(0)", we could use Py_UNREACHABLE. ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue14656> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com