changed inherited Axes calls to super#8486
changed inherited Axes calls to super#8486phobson merged 1 commit intomatplotlib:masterfrom jrmlhermitte:axis3d-super
Conversation
|
oops Regexp was incorrect, modified and force pushed new branch with corrected version. |
| self._adjustable = 'datalim' | ||
|
|
||
| Axes.__init__(self, fig, rect, | ||
| super(Axes3D, self).__init__(fig, rect, |
|
Any idea why Travis is failing in python 2.7? |
|
@OceanWolf I forgot to ping you on this |
|
The mixed subplot test is know to be flaky, but we have not tracked down why yet. I suspect this conflicts with your other PR that just got merged. |
tacaswell
left a comment
There was a problem hiding this comment.
modulo a rebase to fix conflicts.
|
yeah, that's right (moved cla() earlier on). rebased (and changed the long title...) |
QuLogic
left a comment
There was a problem hiding this comment.
Are you able rebase and squash some of these commits together? Also, somehow, your commits' author and committer information don't seem to be in sync.
lib/mpl_toolkits/mplot3d/axes3d.py
Outdated
| def _get_axis_list(self): | ||
| return super(Axes3D, self)._get_axis_list() + (self.zaxis, ) | ||
|
|
||
|
|
|
squashed. but author is a different email. i'll have to do that a little later. |
vim regexp : %s;Axes..*(self, *;super(Axes3D, self).;g followed by %s;Axes.\(.*\)(self *;super(Axes3D, self).\1(;g and some typo fixes removed extra line
|
fixed. On one machine I was working on, I had an old email as author. Thanks for catching this subtle but important detail @QuLogic |
|
Travis failed on py3.6. Do you know if this is a flakey test? |
|
Yes that test measures performance and can fail do to travis workload |
Changed Axes bound method calls using super.
Just one command:
vim regexp:
%s;Axes\.\(.*\)(self, ;super(Axes3D, self).\1(;g
followed by:
%s;Axes.\(.\)(self *;super(Axes3D, self).\1(;g
This came form #8455 . Did not have time to test, waiting for Travis.
PR Summary
PR Checklist