(other: Index, exclude: frozenset[Hashable])
| 2005 | exclude_kwarg = True |
| 2006 | |
| 2007 | def equals_wrapper(other: Index, exclude: frozenset[Hashable]) -> bool: |
| 2008 | if exclude_kwarg: |
| 2009 | return index.equals(other, exclude=exclude) |
| 2010 | else: |
| 2011 | return index.equals(other) |
| 2012 | |
| 2013 | return equals_wrapper |
| 2014 |
nothing calls this directly
no test coverage detected
searching dependent graphs…