The following illustrates a slight inconsistency in matplotlib:

a = subplot(111)
a.yaxis.tick_left()
yscale('log')
show()

Since the default linear minor locator is NullLocator, there are no
minor ticks to use as a template when the default logarithmic minor
locator is used.  This results in the minor ticks being drawn on the
right as well as left axes.  It seems more logical to add a flag
somewhere indicating that tick_left was specified, and check this flag
when configuring ticks from scratch.  Likewise for the xaxis.

Orest

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to