Message208994
Ok, I found the source of the real issue alluded to in the misguided comment about the 'cls' -> 'type' change that I left on Rietveld.
I was under the impression that with that change, 'help(datetime.datetime.now)' would show a signature of 'now(type, tz=None)'. In actual fact, 'str(inspect.signature(datetime.datetime.now))' (correctly) returns (tz=None), and that's what help (incorrectly) displays. To properly match the help output of Python-implemented methods, pydoc will need to add in the 'self' or 'cls' parameter somehow.
However, I think that situation can be resolved in another issue in favor of getting this in, with the few issues I pointed out on Rietveld fixed. |
|
| Date |
User |
Action |
Args |
| 2014-01-23 21:05:46 | zach.ware | set | recipients:
+ zach.ware, gvanrossum, tim.peters, barry, brett.cannon, ncoghlan, larry, skrah, meador.inge, yselivanov |
| 2014-01-23 21:05:46 | zach.ware | set | messageid: <[email protected]> |
| 2014-01-23 21:05:46 | zach.ware | link | issue20189 messages |
| 2014-01-23 21:05:45 | zach.ware | create | |
|