En Sun, 07 Jun 2009 13:31:07 -0300, Tuomas Vesterinen <tuomas.vesteri...@iki.fi> escribió:

I am developing a Python application as a Python2.x and Python3.0 version. A common code base would make the work easier. So I thought to try a preprosessor. GNU cpp handles this kind of code correct:

<test_cpp.py>
#ifdef python2
print u'foo', u'bar'
#endif
#ifdef python3
print('foo', 'bar')
#endif
<end code>

See ifdef.py in the Tools/scripts directory for a pure Python preprocessor.

--
Gabriel Genellina

--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to