This used to be a compat shim for 2.6 but is now just an alias.
(kwargs)
| 127 | |
| 128 | |
| 129 | def copy_kwargs(kwargs): |
| 130 | """ |
| 131 | This used to be a compat shim for 2.6 but is now just an alias. |
| 132 | """ |
| 133 | copy_kwargs = copy.copy(kwargs) |
| 134 | return copy_kwargs |
| 135 | |
| 136 | |
| 137 | def total_seconds(delta): |
no test coverage detected