|
From: Stephen W. <ste...@cs...> - 2005-01-08 06:25:59
|
Andrew Straw wrote:
> Stephen Walton wrote:
>
>> Line 851 in pylab.py should change from
>>
>> line = line[:line.rfind('%')].strip()
>>
>> to
>>
>> line = line[:line.find('%')].strip()
>>
>
> Done.
Cool, thanks.
> Now maybe someone can contribute a patch for 3D plots while John is in
> Brazil as a sign of our appreciation. :)
Based on what I've read around here, implementing 3D plots is going to
require more than a simple patch.
|