Commit d19ca02
committed
Remove a long and now outdated comment.
AFAICT backend_ps + usetex is perfectly happy to output to an in-memory
buffer, as shown by
```
from pylab import *
from io import BytesIO
rcParams["text.usetex"] = True
xlabel("hello")
ylabel("$world$")
buf = BytesIO()
savefig(buf, format="eps", bbox_inches="tight")
print(buf.getvalue())
buf = BytesIO()
savefig(buf, format="ps", bbox_inches="tight")
print(buf.getvalue())
```1 parent f77243b commit d19ca02
1 file changed
Lines changed: 3 additions & 10 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2199 | 2199 | | |
2200 | 2200 | | |
2201 | 2201 | | |
2202 | | - | |
2203 | | - | |
2204 | | - | |
2205 | | - | |
2206 | | - | |
2207 | | - | |
2208 | | - | |
2209 | | - | |
2210 | | - | |
2211 | | - | |
| 2202 | + | |
| 2203 | + | |
| 2204 | + | |
2212 | 2205 | | |
2213 | 2206 | | |
2214 | 2207 | | |
| |||
0 commit comments