Things i miss in python
Coming from a C++ programmer:
- I’m not the first to mention it, i know - missing of begin/end of block. If i copy-paste some code i need to think again how to align it - o/w it’ll not work! And there’s no automatic tool to align the code for me
- Compile time checks:
constchecks- non-declared variables check. if i write
obj.xxx = 12and the real member variable name isXxxit takes ages to find the problem
Technorati Tags: python, c++, programming

