| 532 | # This creates a list which is empty but returns a length of 1. |
| 533 | # Should make the wheel a binary distribution and platlib compliant. |
| 534 | class EmptyListWithLength(list): |
| 535 | def __len__(self): |
| 536 | return 1 |
| 537 | |
| 538 | |
| 539 | if __name__ == "__main__": |
no outgoing calls
no test coverage detected
searching dependent graphs…