Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #9197
| Path | csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!selfless.tophat.at!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <kb1pkl@aim.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.015 |
| X-Spam-Evidence | '*H*': 0.97; '*S*': 0.00; 'python': 0.08; 'content- type:multipart/signed': 0.09; 'filename:fname piece:signature': 0.09; 'header:In-reply-to:1': 0.09; 'subject:Function': 0.09; '"copyright",': 0.16; '"credits"': 0.16; '"license"': 0.16; '[gcc': 0.16; 'abraham': 0.16; 'content-type:application/pgp- signature': 0.16; 'filename:fname piece:asc': 0.16; 'filename:fname:signature.asc': 0.16; 'from:addr:kb1pkl': 0.16; 'from:name:corey richardson': 0.16; 'linux2': 0.16; 'richardson': 0.16; 'subject:variable': 0.16; '>>>': 0.16; 'def': 0.16; 'to:name :python-list': 0.19; '-0400': 0.30; 'carl': 0.30; 'print': 0.32; 'does': 0.32; 'to:addr:python-list': 0.34; 'header:User-Agent:1': 0.34; 'none': 0.35; 'do?': 0.35; 'received:76': 0.38; 'subject:: ': 0.38; 'to:addr:python.org': 0.39; 'received:205': 0.61; 'header :Message-Id:1': 0.61; 'received:205.188': 0.61; 'received:172.29': 0.64; 'received:r1000.mx.aol.com': 0.64; 'from:addr:aim.com': 0.67; 'freedom': 0.68; 'yours': 0.84; '2.7.1': 0.84; '2011:': 0.84; 'subject:local': 0.84; 'received:172.29.41': 0.91 |
| Subject | Re: Function docstring as a local variable |
| From | Corey Richardson <kb1pkl@aim.com> |
| To | python-list <python-list@python.org> |
| In-reply-to | <e44a7596-d01f-484b-9802-1e97fbbcf30f@glegroupsg2000goo.googlegroups.com> |
| References | <e44a7596-d01f-484b-9802-1e97fbbcf30f@glegroupsg2000goo.googlegroups.com> |
| Date | Sun, 10 Jul 2011 19:06:27 -0400 |
| User-Agent | Sup/0.12.1 |
| Content-Transfer-Encoding | 8bit |
| MIME-Version | 1.0 |
| Content-Type | multipart/signed; micalg="pgp-sha256"; boundary="=-1310339191-768959-8792-7339-3-="; protocol="application/pgp-signature" |
| x-aol-global-disposition | G |
| X-AOL-VSS-INFO | 5400.1158/72244 |
| X-AOL-VSS-CODE | scan_error |
| X-AOL-SCOLL-SCORE | 0:2:372114976:93952408 |
| X-AOL-SCOLL-URL_COUNT | 0 |
| x-aol-sid | 3039ac1d29014e1a30d5164e |
| X-AOL-IP | 76.119.157.207 |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.12 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.859.1310339300.1164.python-list@python.org> (permalink) |
| Lines | 49 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1310339300 news.xs4all.nl 21809 [2001:888:2000:d::a6]:44332 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | x330-a1.tempe.blueboxinc.net comp.lang.python:9197 |
Show key headers only | View raw
[Multipart message — attachments visible in raw view] - view raw
Excerpts from Carl Banks's message of Sun Jul 10 18:59:02 -0400 2011:
> print __doc__
>
Python 2.7.1 (r271:86832, Jul 8 2011, 22:48:46)
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> def foo():
... "Docstring"
... print __doc__
...
>>> foo()
None
>>>
What does yours do?
--
Corey Richardson
"Those who deny freedom to others, deserve it not for themselves"
-- Abraham Lincoln
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Re: Function docstring as a local variable Carl Banks <pavlovevidence@gmail.com> - 2011-07-10 15:59 -0700
Re: Function docstring as a local variable Corey Richardson <kb1pkl@aim.com> - 2011-07-10 19:06 -0400
Re: Function docstring as a local variable alex23 <wuwei23@gmail.com> - 2011-07-10 21:14 -0700
Re: Function docstring as a local variable Andrew Berg <bahamutzero8825@gmail.com> - 2011-07-10 18:27 -0500
Re: Function docstring as a local variable Tim Johnson <tim@johnsons-web.com> - 2011-07-10 16:00 -0800
Re: Function docstring as a local variable Chris Rebert <clp2@rebertia.com> - 2011-07-10 17:09 -0700
Re: Function docstring as a local variable Chris Rebert <clp2@rebertia.com> - 2011-07-10 17:16 -0700
Re: Function docstring as a local variable Tim Johnson <tim@johnsons-web.com> - 2011-07-10 16:21 -0800
Re: Function docstring as a local variable Corey Richardson <kb1pkl@aim.com> - 2011-07-10 20:26 -0400
csiph-web