File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 11Change log
22================================================================================
33
4+ 0.2.2 - 05.11.2016
5+ --------------------------------------------------------------------------------
6+
7+ Updated
8+ ********************************************************************************
9+
10+ #. `#11 <https://github.com/pyexcel/pyexcel-ods3/issues/11 >`_, be able to
11+ consume a generator of two dimensional arrays.
12+
13+
4140.2.1 - 31.08.2016
515--------------------------------------------------------------------------------
616
Original file line number Diff line number Diff line change @@ -64,11 +64,11 @@ def test_issue_10():
6464
6565
6666def data_gen ():
67- for row in xrange (row_max // 2 ):
67+ for row in range (row_max // 2 ):
6868 tmp = []
69- for col in xrange (col_max ):
69+ for col in range (col_max ):
7070 tmp .append ("Row: %d Col: %d" % (row , col ))
71- for col in xrange (col_max ):
71+ for col in range (col_max ):
7272 tmp .append ((row + col ))
7373 yield tmp
7474
You can’t perform that action at this time.
0 commit comments