Always return the empty string.
| 315 | |
| 316 | |
| 317 | class NullFormatter(Formatter): |
| 318 | """Always return the empty string.""" |
| 319 | |
| 320 | def __call__(self, x, pos=None): |
| 321 | # docstring inherited |
| 322 | return '' |
| 323 | |
| 324 | |
| 325 | class FixedFormatter(Formatter): |
no outgoing calls
searching dependent graphs…