Re: [Tutor] compare two souce files

2010-10-28 Thread Steven D'Aprano
Jojo Mwebaze wrote: Hello Tutor I would like to compare two souce code files but ignoring doc strings, comments and space (and perharps in future statement by statement comparision) e.g class Foo def foo(): # prints my name return 'my name' class Boo def boo(): print 'my

[Tutor] compare two souce files

2010-10-28 Thread Jojo Mwebaze
Hello Tutor I would like to compare two souce code files but ignoring doc strings, comments and space (and perharps in future statement by statement comparision) e.g class Foo def foo(): # prints my name return 'my name' class Boo def boo(): print 'my name' Want to check i