(st)
| 658 | |
| 659 | if hasattr(os.stat_result, 'st_file_attributes'): |
| 660 | def _rmtree_islink(st): |
| 661 | return (stat.S_ISLNK(st.st_mode) or |
| 662 | (st.st_file_attributes & stat.FILE_ATTRIBUTE_REPARSE_POINT |
| 663 | and st.st_reparse_tag == stat.IO_REPARSE_TAG_MOUNT_POINT)) |
| 664 | else: |
| 665 | def _rmtree_islink(st): |
| 666 | return stat.S_ISLNK(st.st_mode) |
no outgoing calls
no test coverage detected
searching dependent graphs…