Message205861
the other issue I'm also seeing is that help() doesn't seem to take exactly an object as an optional argument. perhaps Python manual for help() should be updated according to the actual implementation?
>>> help('hello')
no Python documentation found for 'hello'
>>> type('hello')
<class 'str'>
>>> a='hello'
>>> help(a)
no Python documentation found for 'hello'
>>> |
|
| Date |
User |
Action |
Args |
| 2013-12-10 21:41:09 | hct | set | recipients:
+ hct, vstinner, tim.golden, r.david.murray, brian.curtin, BreamoreBoy |
| 2013-12-10 21:41:09 | hct | set | messageid: <[email protected]> |
| 2013-12-10 21:41:09 | hct | link | issue19914 messages |
| 2013-12-10 21:41:09 | hct | create | |
|