@@ -116,31 +116,31 @@ across multiple requests, with results combined into the final return object.
116116 ...
117117 >>> # Resolve a single object
118118 >>> coords = mast.resolve_object(" M101" , resolver = " NED" )
119- >>> print (coords)
119+ >>> print (coords) # doctest: +IGNORE_OUTPUT
120120 <SkyCoord (ICRS): (ra, dec) in deg
121- (210.80227, 54.34895)>
121+ (210.80227, 54.34895)>
122122 ...
123123 >>> # Resolve multiple objects
124124 >>> coords_multi = mast.resolve_object([" M101" , " M51" ], resolver = " SIMBAD" )
125- >>> pprint(coords_multi)
125+ >>> pprint(coords_multi) # doctest: +IGNORE_OUTPUT
126126 {'M101': <SkyCoord (ICRS): (ra, dec) in deg
127127 (210.802429, 54.34875)>,
128128 'M51': <SkyCoord (ICRS): (ra, dec) in deg
129129 (202.469575, 47.195258)>}
130130 ...
131131 >>> # Resolve a single object with all resolvers
132132 >>> coords_dict = mast.resolve_object(" M101" , resolve_all = True )
133- >>> pprint(coords_dict)
133+ >>> pprint(coords_dict) # doctest: +IGNORE_OUTPUT
134134 {'NED': <SkyCoord (ICRS): (ra, dec) in deg
135- (210.80227, 54.34895)>,
136- 'SIMBAD': <SkyCoord (ICRS): (ra, dec) in deg
137- (210.802429, 54.34875)>,
138- 'SIMBADCFA': <SkyCoord (ICRS): (ra, dec) in deg
139- (210.802429, 54.34875)>}
135+ (210.80227, 54.34895)>,
136+ 'SIMBAD': <SkyCoord (ICRS): (ra, dec) in deg
137+ (210.802429, 54.34875)>,
138+ 'SIMBADCFA': <SkyCoord (ICRS): (ra, dec) in deg
139+ (210.802429, 54.34875)>}
140140 ...
141141 >>> # Resolve multiple objects with all resolvers
142142 >>> coords_dict_multi = mast.resolve_object([" M101" , " M51" ], resolve_all = True )
143- >>> pprint(coords_dict_multi)
143+ >>> pprint(coords_dict_multi) # doctest: +IGNORE_OUTPUT
144144 {'M101': {'NED': <SkyCoord (ICRS): (ra, dec) in deg
145145 (210.80227, 54.34895)>,
146146 'SIMBAD': <SkyCoord (ICRS): (ra, dec) in deg
0 commit comments