File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ Changed cbook.reversed so it yields a tuple rather than a
2+ (index, tuple). This agrees with the python reversed builtin,
3+ and cbook only defines reversed if python doesnt provide the
4+ builtin.
5+
16 Made skiprows=1 the default on csv2rec
27
38 The gd and paint backends have been deleted.
Original file line number Diff line number Diff line change 1+ 2007-09-21 Changed cbook.reversed to yield the same result as the
2+ python reversed builtin - DSD
3+
142007-09-13 The usetex support in the pdf backend is more usable now,
25 so I am enabling it. - JKS
36
Original file line number Diff line number Diff line change @@ -482,7 +482,7 @@ def reversed(seq):
482482 enumerate() is new in Python 2.3
483483 """
484484 for i in range (len (seq )- 1 ,- 1 ,- 1 ):
485- yield i , seq [i ]
485+ yield seq [i ]
486486
487487
488488# use itertools.izip if available, else use python version
You can’t perform that action at this time.
0 commit comments