Re: epydoc - can I provide multiple dirs to parse

2009-10-05 Thread Medi
On Oct 5, 2:09 am, Jean-Michel Pichavant jeanmic...@sequans.com wrote: Medi wrote: Can I present multiple directories toepydocto process. For example epydoc-option -option -option dir_1 dir_2 dir_3 where dir_i is a directory containing some python src codes ? I am currently running

Seeking a python code browser

2009-09-01 Thread Medi
Is there any recommendation for a python code browser (aka xref) tool. I am a Source Navigator user, but seems like its python support is flaky. Unless you can help me with that...which is my preferred way. Thanks Medi -- http://mail.python.org/mailman/listinfo/python-list

Tkinter help, please...

2007-05-24 Thread Medi Ochre
I've been away from Python for some time, and I'm just starting to look at Tkinter. Just so you know, I'm coming from Visual Basic, where this would, I *think*, not have been a problem, so it must be a case of getting my head around the Tkinter way of doing things. In a nutshell, I've written

Re: Tkinter help, please...

2007-05-24 Thread Medi Ochre
John McMonagle wrote: I've made a couple of minor changes to your code from the Cribbage class down: class Cribbage: def __init__(self, win): ... score = run.play() if score = best: best = score time.sleep(1) --- short sleep to see what's happening