@@ -38,25 +38,25 @@ store the password in your operating system. As such you should have to enter yo
38
38
correct password only once, and later be able to use this package for automated
39
39
interaction with the ESO archive.
40
40
41
- .. doctest-skip ::
41
+ .. doctest-skip ::
42
42
43
43
>>> from astroquery.eso import Eso
44
44
>>> eso = Eso()
45
45
>>> # First example: TEST is not a valid username, it will fail
46
- >>> eso.login(" TEST" ) # doctest: +SKIP
46
+ >>> eso.login(" TEST" )
47
47
TEST, enter your ESO password:
48
48
49
49
Authenticating TEST on www.eso.org...
50
50
Authentication failed!
51
51
>>> # Second example: pretend ICONDOR is a valid username
52
- >>> eso.login(" Tinuade " , store_password = True ) # doctest: +SKIP
53
- Tinuade , enter your ESO password:
52
+ >>> eso.login(" ICONDOR " , store_password = True ) # doctest: +SKIP
53
+ ICONDOR , enter your ESO password:
54
54
55
55
Authenticating ICONDOR on www.eso.org...
56
56
Authentication successful!
57
57
>>> # After the first login, your password has been stored
58
- >>> eso.login(" Tinuade " ) # doctest: +SKIP
59
- Authenticating Tinuade on www.eso.org...
58
+ >>> eso.login(" ICONDOR " ) # doctest: +SKIP
59
+ Authenticating ICONDOR on www.eso.org...
60
60
Authentication successful!
61
61
62
62
Automatic password
@@ -311,9 +311,8 @@ This method is detailed in the example below.
311
311
... ' stime' :' 2007-01-01' ,
312
312
... ' etime' :' 2008-01-01' },
313
313
... columns= [' night' ])
314
-
315
314
>>> table_headers = eso.get_headers(table[' DP.ID' ])
316
- >>> table_headers.pprint() # doctest: +SKIP
315
+ >>> table_headers.pprint() # doctest: +IGNORE_OUTPUT
317
316
DP.ID SIMPLE BITPIX ... HIERARCH ESO OCS TPL NFILE HIERARCH ESO OCS EXPO1 FNAME3
318
317
---------------------------- ------ ------ ... -------------------------- ---------------------------------
319
318
MIDI.2007-02-07T07:01:51.000 True 16 ... 0
@@ -376,7 +375,7 @@ would like to download datasets from an existing request, either submitted
376
375
through the functions here or externally, call ``retrieve_data `` with the
377
376
``request_id `` option:
378
377
379
- .. doctest-skip ::
378
+ .. doctest-skip ::
380
379
381
380
>>> data_files = eso.retrieve_data(table[' DP.ID' ][:2 ], request_id = 999999 )
382
381
0 commit comments