Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.018 X-Spam-Evidence: '*H*': 0.96; '*S*': 0.00; 'subject:Python': 0.06; '"""': 0.07; 'python': 0.08; 'output': 0.11; 'epydoc': 0.16; 'subject:function': 0.16; 'subject:used': 0.16; 'def': 0.16; 'variable': 0.21; 'function': 0.26; '"in': 0.30; 'description.': 0.30; 'thanks': 0.31; 'subject:?': 0.31; 'print': 0.32; 'message- id:@gmail.com': 0.32; 'to:addr:python-list': 0.34; 'header:User- Agent:1': 0.34; 'there': 0.34; 'listed': 0.37; 'using': 0.37; 'received:google.com': 0.38; 'received:209.85': 0.38; 'hello,': 0.38; 'to:addr:python.org': 0.39; 'received:209': 0.40; 'received:209.85.216.174': 0.73; 'received:10.160': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=hB49mVZd7TxK8aS1okrj5ncFun2Xyx/eaIcZf7egrGg=; b=W+xP6Ojqd3Wv0r9/51IIOxsrmbya+LSs4caCTutgwxpTnKKYq4sbSv+cyH8FJ6mknt Tix4v5n4NvF+X9nrTa6ZKbj6wnT9QL2FMYYo4kGqL3OoqxDr95xL+lNPrZDbNYeTcyYY lVAL3vYL+z2JaGy7VrWGUCTUoLlYhnhm2HYSQ= Date: Thu, 28 Jul 2011 11:17:24 -0400 From: Victor Khangulov User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.18) Gecko/20110616 Lightning/1.0b2 Thunderbird/3.1.11 MIME-Version: 1.0 To: python-list@python.org Subject: Can Epydoc be used to document decorated function in Python? Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 17 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1311866244 news.xs4all.nl 23909 [2001:888:2000:d::a6]:41000 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:10457 Hello, is there a way to use epydoc to document a Python function that has been decorated? @decorator def func1(): """ My function func1 """ print "In func1" The resulting output of epydoc is that func1 gets listed as a variable with no description. I am using Epydoc v3.0.1. Thanks -victor