Re: [Tutor] Find files without __doc__ strings

2009-05-18 Thread David
Lie Ryan wrote: > David wrote: >> spir wrote: >>> Le Sat, 16 May 2009 21:46:02 -0400, >>> David s'exprima ainsi: >>> I am doing an exercise in Wesley Chun's book. Find files in the standard library modules that have doc strings. Then find the ones that don't, "the shame list". I c

Re: [Tutor] Find files without __doc__ strings

2009-05-18 Thread Lie Ryan
David wrote: spir wrote: Le Sat, 16 May 2009 21:46:02 -0400, David s'exprima ainsi: I am doing an exercise in Wesley Chun's book. Find files in the standard library modules that have doc strings. Then find the ones that don't, "the shame list". I came up with this to find the ones with;

Re: [Tutor] Find files without __doc__ strings

2009-05-17 Thread Kent Johnson
On Sat, May 16, 2009 at 9:46 PM, David wrote: > I am doing an exercise in Wesley Chun's book. Find files in the standard >  library modules that have doc strings. Then find the ones that don't, "the > shame list". I came up with this to find the ones with; > #!/usr/bin/python > import os > import

Re: [Tutor] Find files without __doc__ strings

2009-05-17 Thread David
spir wrote: Le Sat, 16 May 2009 21:46:02 -0400, David s'exprima ainsi: I am doing an exercise in Wesley Chun's book. Find files in the standard library modules that have doc strings. Then find the ones that don't, "the shame list". I came up with this to find the ones with; #!/usr/bin/pyth

Re: [Tutor] Find files without __doc__ strings

2009-05-16 Thread spir
Le Sat, 16 May 2009 21:46:02 -0400, David s'exprima ainsi: > I am doing an exercise in Wesley Chun's book. Find files in the standard > library modules that have doc strings. Then find the ones that don't, > "the shame list". I came up with this to find the ones with; > #!/usr/bin/python > im

[Tutor] Find files without __doc__ strings

2009-05-16 Thread David
I am doing an exercise in Wesley Chun's book. Find files in the standard library modules that have doc strings. Then find the ones that don't, "the shame list". I came up with this to find the ones with; #!/usr/bin/python import os import glob import fileinput import re pypath = "/usr/lib/pyth