From: John H. <jdh...@ac...> - 2005-02-01 23:44:18
|
>>>>> "Fernando" == Fernando Perez <Fer...@co...> writes: Fernando> Finally, is this really a close bug? Fernando> In [20]: fig=plot(range(10)) Fernando> In [21]: close(fig) ERROR: Unrecognized argument type to Fernando> close No, its a Fernando bug :-) plot returns a list of Line2D instances. Perhaps you mean fig = figure() plot(range(10)) close(fig) It's OK, you can stop hitting yourself on the head now. Actually, the error message would have been more helpful if it reported the type, which it will do in the next release. JDH |