On Apr 21, 3:52 pm, a...@pythoncraft.com (Aahz) wrote:
> In article ,
> Nick Craig-Wood wrote:
>
>
>
> >Python also converted me to using unit tests. If you add unit tests
> >into your methodology above then when you re-organize (or refactor to
> >use the modern jargon) the code you can be 100%
In article ,
Nick Craig-Wood wrote:
>
>Python also converted me to using unit tests. If you add unit tests
>into your methodology above then when you re-organize (or refactor to
>use the modern jargon) the code you can be 100% sure that you didn't
>break anything which is a wonderful feeling.
N
norseman wrote:
> I'm one of those that tries to get an outline of the project and then
> puts in code as things become clear. Once the basics are working
> reasonably I go back and organize the thing for maintainability. Then
> finish flushing it out. It is the one stage I dread the most.