Message 208801 - Python tracker
Message208801
| Author | larry |
|---|---|
| Recipients | berker.peksag, larry, serhiy.storchaka |
| Date | 2014-01-22.13:11:10 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1390396270.76.0.363099640794.issue20293@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
Yes, that is how it must work. This is symmetric with pure Python functions:
>>> import inspect
>>> import zlib
>>> def foo(a=zlib.Z_DEFAULT_COMPRESSION): pass
...
>>> str(inspect.signature(foo))
'(a=-1)' |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2014-01-22 13:11:10 | larry | set | recipients: + larry, berker.peksag, serhiy.storchaka |
| 2014-01-22 13:11:10 | larry | set | messageid: <1390396270.76.0.363099640794.issue20293@psf.upfronthosting.co.za> |
| 2014-01-22 13:11:10 | larry | link | issue20293 messages |
| 2014-01-22 13:11:10 | larry | create | |