This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jackdied
Recipients jackdied
Date 2010-06-29.18:32:48
SpamBayes Score 0.0016801872
Marked as misclassified No
Message-id <1277836369.81.0.859952586368.issue9118@psf.upfronthosting.co.za>
In-reply-to
Content
ython 2.7b2+ (trunk:81337, May 19 2010, 12:16:22) 
[GCC 4.4.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> class X(object):
...   @property
...   def foo(self): pass
... 
>>> help(X.foo.fset)

Welcome to Python 2.7!  This is the online help utility.

If this is your first time using Python, you should definitely check out
the tutorial on the Internet at http://docs.python.org/tutorial/.

Enter the name of any module, keyword, or topic to get help on writing
Python programs and using Python modules.  To quit this help utility and
return to the interpreter, just type "quit".

To get a list of available modules, keywords, or topics, type "modules",
"keywords", or "topics".  Each module also comes with a one-line summary
of what it does; to list the modules whose summaries contain a given word
such as "spam", type "modules spam".

help> ^D
You are now leaving help and returning to the Python interpreter.
If you want to ask for help on a particular object directly from the
interpreter, you can type "help(object)".  Executing "help('string')"
has the same effect as typing a particular string at the help> prompt.
>>>
History
Date User Action Args
2010-06-29 18:32:49jackdiedsetrecipients: + jackdied
2010-06-29 18:32:49jackdiedsetmessageid: <1277836369.81.0.859952586368.issue9118@psf.upfronthosting.co.za>
2010-06-29 18:32:48jackdiedlinkissue9118 messages
2010-06-29 18:32:48jackdiedcreate