Fredrik Lundh wrote:
http://drj11.wordpress.com/2008/10/02/python-and-bragging-about-c89/
I've found several more occasions of // comments and one usage of inline. We *really* should have some way to compile Python with C89 checks
Python doesn't compile with the -pedantic option but it compiles with -std=c89 -Werror after I've applied some patches. I've added a new make command to add extra checks. Maybe the build bots could use "make c89" instead of "make" to build Python?
c89: $(MAKE) CFLAGS="$(CFLAGS) -std=c89 -Werror" Christian _______________________________________________ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com