Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Fix warning when setting markeredgecolor to a numpy array #7657
+1
−1
Conversation
tacaswell
added this to the
2.1 (next point release)
milestone
Dec 21, 2016
QuLogic
merged commit 48d50fc
into matplotlib:master
Dec 21, 2016
dstansby
deleted the
dstansby:markeredgecolor-warning branch
Dec 22, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
dstansby commentedDec 21, 2016
If self._markeregecolor is set to
None, when ec is a numpy array it is compared toNone. Avoid this comparison by always settingself.stale = Trueifself._markeredgecolor == None.Fixes #6480