691
692
Note that pyrex does not support all 2.4 programming idioms, so some
692
693
syntax changes may be required. I.e.
693
695
- 'from foo import (bar, gam)' needs to change to not use the brackets.
694
696
- 'import foo.bar as bar' needs to be 'import foo.bar; bar = foo.bar'
695
698
If the changes are too dramatic, consider
696
699
maintaining the python code twice - once in the .pyx, and once in the .py,
697
700
and no longer including the .py file.