| 7 | | Create doc in the Wiki and dump it into the doc subdir |
| | 3 | - Eliminate explicit type() checking. Even isinstance() should be avoided |
| | 4 | where possible, relying instead of duck typing. |
| | 5 | - Make sure SystemExit and KeyboardInterrupt is not silently caught. They |
| | 6 | should be bubbled up to the notifier loop. In other words, do not |
| | 7 | use catch-all except statements, but rather 'except Exception' (which |
| | 8 | will not catch KeyboardInterrupt and SystemExit). |
| | 9 | - Remove getters and setters (in the form get_foo() and set_foo()), using |
| | 10 | instead properties. This will result in significant API breakage, but |
| | 11 | is better to do that now than after 1.0 :) |
| | 12 | - Rewrite of Process class |
| | 13 | - Complete documentation |
| | 14 | |
| | 15 | |
| | 16 | TODO either before or after 1.0: |
| | 17 | - Unit testing suite (preferably before) |