> C:\Python24>python -m pydoc -p 3999 > pydoc server ready at http://localhost:3999/
> (Using the nice new -m flag to run a module from the command line.) > Just a thought - do you still have Python23 in your PATH? It looks like > you might be trying to run the 2.4 version of pydoc using the 2.3 version > of python. > > David H. I think you're right. Without using the -m switch, I found myself down in /lib, and booting pydoc from there, which triggered a path search, which found 2.3. Now if I go in python24 directory and use -m switch, it finds the right Python without using the path. Cool. And thank you. Kirby PS: on another note, I see Danny Yoo's new scanf module seems to not be in the 2.4 standard library, though it was in 2.3. _______________________________________________ Edu-sig mailing list [email protected] http://mail.python.org/mailman/listinfo/edu-sig
