# HG changeset patch
# User J. H. Palmieri <palmieri@math.washington.edu>
# Date 1317763472 25200
# Node ID 3dedec201ba6933cc629f77a02e52db268a823db
# Parent f6e16754d03b1ecf7e49abacb5cd523ac65afe04
#7494: referee patch: fix docbuild errors
diff --git a/sage/finance/stock.py b/sage/finance/stock.py
a
|
b
|
class Stock: |
401 | 401 | return TimeSeries([x.close for x in self.google(*args, **kwds)]) |
402 | 402 | |
403 | 403 | def load_from_file(self, file): |
404 | | """ |
| 404 | r""" |
405 | 405 | Load historical data from a local csv formatted data file. Note |
406 | 406 | that no symbol data is included in Google Finance's csv data. |
407 | 407 | The csv file must be formatted in the following way, just as |
… |
… |
class Stock: |
466 | 466 | |
467 | 467 | |
468 | 468 | def _load_from_csv(self, R): |
469 | | """ |
| 469 | r""" |
470 | 470 | EXAMPLES: |
471 | 471 | |
472 | 472 | This indirectly tests ``_load_from_csv()``:: |