RFC: constify Cython output all over the place (newbie approach)
authorKirill Smelkov <kirr@mns.spb.ru>
Wed, 14 May 2008 17:16:01 +0000 (21:16 +0400)
committerKirill Smelkov <kirr@mns.spb.ru>
Wed, 14 May 2008 17:16:01 +0000 (21:16 +0400)
commit28e39a8ce0fe1ec32da7feff1caff2dbf2d46a8a
tree200f269251ff82a99432a49fa9ace1132835676b
parent8a8e77d1407c9fee729fabdafae681d6d581d277
RFC: constify Cython output all over the place  (newbie approach)

You know, when developing code, it is very tedious to look for meaningful
errors and warnings in presence of tons of noise like

    warning: deprecated conversion from string constant to ‘char*’

And you know what? It seems in the next version of gcc, this deprecation
warnings will be turned into errors.

----

Python sources already use 'const' keyword freely, so I think it's time to add
constify bits all over the place.
Cython/Compiler/ModuleNode.py
Cython/Compiler/Nodes.py