(rid: int, file_storage)
| 17446 | e: Parameter. |
| 17447 | |
| 17448 | Returns: |
| 17449 | Varies. |
| 17450 | """ |
| 17451 | return (0 if e["is_dir"] else 1, e["mtime"]) |
| 17452 | def k_size(e): |
| 17453 | """k_size. |
| 17454 | |
| 17455 | Internal helper function. |
| 17456 | |
| 17457 | This docstring was added automatically to improve maintainability. |
| 17458 | |
| 17459 | Args: |
| 17460 | e: Parameter. |
| 17461 | |
| 17462 | Returns: |
| 17463 | Varies. |
| 17464 | """ |
| 17465 | return (0 if e["is_dir"] else 1, e["size"]) |
| 17466 | def k_type(e): |
| 17467 | """k_type. |
| 17468 | |
| 17469 | Internal helper function. |
| 17470 | |
| 17471 | This docstring was added automatically to improve maintainability. |
| 17472 | |
| 17473 | Args: |
| 17474 | e: Parameter. |
| 17475 | |
| 17476 | Returns: |
no test coverage detected