File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -162,6 +162,7 @@ pandas 0.7.0
162
162
yourself) to ``groupby `` in some cases (GH #659)
163
163
- Use ``kind `` argument to Series.order for selecting different sort kinds
164
164
(GH #668)
165
+ - Add option to Series.to_csv to omit the index (PR #684)
165
166
166
167
**Bug fixes **
167
168
@@ -239,6 +240,7 @@ pandas 0.7.0
239
240
- Fix SparseSeries.combine_first when passed a dense Series (GH #687)
240
241
- Fix performance regression in HDFStore loading when DataFrame or Panel
241
242
stored in table format with datetimes
243
+ - Raise Exception in DateRange when offset with n=0 is passed (GH #683)
242
244
243
245
Thanks
244
246
------
@@ -261,6 +263,7 @@ Thanks
261
263
- Sam Reckoner
262
264
- Craig Reeson
263
265
- Jan Schulz
266
+ - Skipper Seabold
264
267
- Ted Square
265
268
- Graham Taylor
266
269
- Aman Thakral
Original file line number Diff line number Diff line change @@ -1493,6 +1493,10 @@ def test_to_csv(self):
1493
1493
lines = open ('_foo' , 'U' ).readlines ()
1494
1494
assert (lines [1 ] != '\n ' )
1495
1495
1496
+ self .ts .to_csv ('_foo' , index = False )
1497
+ arr = np .loadtxt ('_foo' )
1498
+ assert_almost_equal (arr , self .ts .values )
1499
+
1496
1500
os .remove ('_foo' )
1497
1501
1498
1502
def test_to_dict (self ):
You can’t perform that action at this time.
0 commit comments