how to avoid spaghetti in Python?

2014-01-21 Thread CM
I've been learning and using Python for a number of years now but never really go particularly disciplined about all good coding practices. I've definitely learned *some*, but I'm hoping this year to take a good step up in terms of refactoring, maintainability, and mostly just de-spaghettizing

Re: how to avoid spaghetti in Python?

2014-01-21 Thread Chris Angelico
On Wed, Jan 22, 2014 at 7:38 AM, CM cmpyt...@gmail.com wrote: 1) One of my main spaghetti problems is something I don't know what to ever call. Basically it is that I sometimes have a chain of functions or objects that get called in some order and these functions may live in different

Re: how to avoid spaghetti in Python?

2014-01-21 Thread andrea crotti
2014/1/21 CM cmpyt...@gmail.com: I've been learning and using Python for a number of years now but never really go particularly disciplined about all good coding practices. I've definitely learned *some*, but I'm hoping this year to take a good step up in terms of refactoring,