|
From: John H. <jdh...@ac...> - 2005-09-03 02:29:30
|
>>>>> "Alan" == Alan Isaac <ai...@am...> writes:
Alan> On Fri, 02 Sep 2005, John Hunter wrote:
>> If you could send a docstring patch, that would be great.
Alan> I was going to but I looked in pylab.py and found a note
Alan> that the plot function def and docs were automatically
Alan> generated, so I did not know what file to patch. (Sorry;
Alan> I'm new to this kind of thing.)
No problem.
pylab.py is for the most part a thin wrapper of functionality of
axes.py. Eg, pylab.plot calls ax.plot and pylab.imshow calls
ax.imshow. So if you find a problem with a pylab docstring, you can
usually find the original function in axes.py and fix that.
If you are on a win32 platform, which I think wyou are, you can install
ming32 and run a diff command like the one suggested by Charles Moad
at
http://sourceforge.net/mailarchive/message.php?msg_id=12793726
If you are not comfortable with cvs/patch/diff, that's fine. Just
edit the files in question and send them to me as an attachment and I
can deal with them.
Thanks,
JDH
|