File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed
Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 11name = " ApproxFun"
22uuid = " 28f2ccd6-bb30-5033-b560-165f7b14dc2f"
3- version = " 0.13.4 "
3+ version = " 0.13.5 "
44
55[deps ]
66AbstractFFTs = " 621f4979-c628-5d54-868e-fcf4e3e8185c"
Original file line number Diff line number Diff line change 109109function show (io:: IO ,s:: QuotientSpace )
110110 show (io,s. space)
111111 print (io," /\n " )
112- show (io,s. bcs;header= false )
112+ show (io,s. bcs)
113+ end
114+
115+ function show (io:: IO , m:: MIME"text/plain" , s:: QuotientSpace )
116+ show (io,s. space)
117+ print (io," /\n " )
118+ show (io, m, s. bcs, header = false )
113119end
114120
115121
@@ -191,7 +197,7 @@ struct PrintShow
191197end
192198Base. show (io:: IO ,N:: PrintShow ) = print (io,N. str)
193199
194- show (io:: IO , B:: Operator ) = summary (io, B)
200+ show (io:: IO , B:: Operator ; kw ... ) = summary (io, B)
195201
196202function show (io:: IO , :: MIME"text/plain" , B:: Operator ;header:: Bool = true )
197203 header && println (io, summarystr (B))
Original file line number Diff line number Diff line change 227227
228228 @test summary (io, ApproxFun. ArraySpace (Chebyshev (), 2 )) isa Nothing
229229 @test contains (String (take! (io)), " ArraySpace" )
230+
231+ Q = QuotientSpace (Dirichlet (Chebyshev ()))
232+ @test startswith (repr (Q), " Chebyshev() /" )
233+ show (io, MIME " text/plain" (), Q)
234+ s = String (take! (io))
235+ @test startswith (s, " Chebyshev() /" )
230236end
You can’t perform that action at this time.
0 commit comments