You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I run into this diff with a pyvo narrative docs file, where the print has been erroneously removed.
cc @seberg in case you have an idea what goes wrong (besides that the doc would probably benefit of a refactor that removes the printing in for loop altogether)
--- a/docs/dal/index.rst
+++ b/docs/dal/index.rst
@@ -719,17 +719,17 @@ Iterating over a resultset gives the rows in the result:
.. doctest-remote-data::
>>> for row in resultset:
- ... print(row['s_fov'])
- 0.05027778
- 0.05027778
+ 0.06527778
+ 0.06527778
+ 0.06527778
+ 0.06527778
+ 0.06527778
+ 0.06527778
0.05027778
0.05027778
0.05027778
0.05027778
0.06527778
- 0.06527778
- 0.06527778
- 0.06527778
The total number of rows in the answer is available as its ``len()``:
The text was updated successfully, but these errors were encountered:
My guess is that I replace lines in the file, but completely forgot to account for the possibility of multi-line input. (i.e. doctest plus finds it as the first line, but it spans more than one line, so the result ends later).
I run into this diff with a pyvo narrative docs file, where the print has been erroneously removed.
cc @seberg in case you have an idea what goes wrong (besides that the doc would probably benefit of a refactor that removes the printing in for loop altogether)
The text was updated successfully, but these errors were encountered: