Return whether to redraw after every plotting command. .. note:: This function is only intended for use in backends. End users should use `.pyplot.isinteractive` instead.
()
| 1330 | |
| 1331 | |
| 1332 | def is_interactive(): |
| 1333 | """ |
| 1334 | Return whether to redraw after every plotting command. |
| 1335 | |
| 1336 | .. note:: |
| 1337 | |
| 1338 | This function is only intended for use in backends. End users should |
| 1339 | use `.pyplot.isinteractive` instead. |
| 1340 | """ |
| 1341 | return rcParams['interactive'] |
| 1342 | |
| 1343 | |
| 1344 | def _val_or_rc(val, *rc_names): |
no outgoing calls
no test coverage detected
searching dependent graphs…