Delete a key from a table.
(table, key)
| 459 | |
| 460 | |
| 461 | def delete(table, key): |
| 462 | class="st">""class="st">"Delete a key from a table."class="st">"" |
| 463 | return _get_client().delete(table, key) |
| 464 | |
| 465 | |
| 466 | def keys(table, pattern=None): |
nothing calls this directly
no test coverage detected