8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2286565 commit 3ccff6fCopy full SHA for 3ccff6f
lib/matplotlib/tests/test_transforms.py
@@ -1,5 +1,4 @@
1
from __future__ import print_function
2
-import itertools
3
import unittest
4
5
from nose.tools import assert_equal
@@ -228,7 +227,7 @@ def test_left_to_right_iteration(self):
228
227
r = [rh for lh, rh in stack3._iter_break_from_left_to_right()]
229
self.assertEqual(len(r), len(target_transforms))
230
231
- for target_stack, stack in itertools.izip(target_transforms, r):
+ for target_stack, stack in zip(target_transforms, r):
232
self.assertEqual(target_stack, stack)
233
234
def test_transform_shortcuts(self):
0 commit comments