Alan G Isaac wrote: > Line2D documentation reads: > > marker: [ '+' | ',' | '.' | '1' | '2' | '3' | '4' > > 1. Minor documentation bug: missing end bracket Sort of. Actually, what is also missing is a very long list of possible markers, as given in the docstring for the set_marker method. Some docstring modifications and consolidations are needed. > 2. Why is marker=None no longer allowed?
marker='None' is allowed, as is ' ' and ''. Do you need None? The idea is to distinguish between 'None' as in 'no marker--don't draw anything', and None as the default for a kwarg, meaning use the rcParams value. In plot, if you trace through the chain of half a dozen or so functions, you find that the kwargs are handled using setters, not at the stage of initialization of the Line2D instance, and setters generally don't accept None. Eric > > Cheers, > Alan Isaac > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Matplotlib-users mailing list > Matplotlib-users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/matplotlib-users ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Matplotlib-users mailing list Matplotlib-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-users