Store a value in a table.
(table, key, value)
| 449 | class="cm"># Module-level functions that use the thread-local client |
| 450 | |
| 451 | def put(table, key, value): |
| 452 | class="st">""class="st">"Store a value in a table."class="st">"" |
| 453 | _get_client().put(table, key, value) |
| 454 | |
| 455 | |
| 456 | def get(table, key, default=None): |
nothing calls this directly
no test coverage detected