(a, b, sh, abs=abs, cmp=cmp)
| 283 | # 2 for funny cases (can't stat, etc.) |
| 284 | # |
| 285 | def _cmp(a, b, sh, abs=abs, cmp=cmp): |
| 286 | try: |
| 287 | return not abs(cmp(a, b, sh)) |
| 288 | except OSError: |
| 289 | return 2 |
| 290 | |
| 291 | |
| 292 | # Return a copy with items that occur in skip removed. |