Dan Eloff
dan.eloff at gmail.com
Wed Jan 18 03:21:58 EST 2006
This question would be more appropriate on the python discussion group, but the answer is, it depends. Python is a very dynamic language and it is not easily possible to determine what methods are in a particular object. Some editors do a reasonably good job at this, others do not. If you try a dot after an object in your editor and it displays nothing, you either disabled the feature somewhere, or the editor has no idea what methods the object has. You can look at the options/preferences in your editor to rule out the first, but there's not much you can do if it's outside the functionality of your editor, other than try another editor (and no editor is perfect.) -Dan On 1/17/06, python eager <python_eager at yahoo.com> wrote: > Hi > i am using PYTHON SHELL editor. If i put dot notation for instance it > won't display what are the methods in that class. Please help me , how to > get methods are inside the class if i put dot notation for object. > I am using python 2.4.2 downloaded from python.org > please help me. > > thank you > Python Eager > > > ________________________________ > Yahoo! Photos > Got holiday prints? See all the ways to get quality prints in your hands > ASAP. > > > _______________________________________________ > Mod_python mailing list > Mod_python at modpython.org > http://mailman.modpython.org/mailman/listinfo/mod_python > > >
|