@@ -1431,7 +1431,7 @@ def is_dir(self):
1431
1431
if not _ignore_error (e ):
1432
1432
raise
1433
1433
# Path doesn't exist or is a broken symlink
1434
- # (see https://bitbucket.org/pitrou/pathlib/issue /12/)
1434
+ # (see http://web.archive.org/web/20200623061726/ https://bitbucket.org/pitrou/pathlib/issues /12/ )
1435
1435
return False
1436
1436
except ValueError :
1437
1437
# Non-encodable path
@@ -1448,7 +1448,7 @@ def is_file(self):
1448
1448
if not _ignore_error (e ):
1449
1449
raise
1450
1450
# Path doesn't exist or is a broken symlink
1451
- # (see https://bitbucket.org/pitrou/pathlib/issue /12/)
1451
+ # (see http://web.archive.org/web/20200623061726/ https://bitbucket.org/pitrou/pathlib/issues /12/ )
1452
1452
return False
1453
1453
except ValueError :
1454
1454
# Non-encodable path
@@ -1499,7 +1499,7 @@ def is_block_device(self):
1499
1499
if not _ignore_error (e ):
1500
1500
raise
1501
1501
# Path doesn't exist or is a broken symlink
1502
- # (see https://bitbucket.org/pitrou/pathlib/issue /12/)
1502
+ # (see http://web.archive.org/web/20200623061726/ https://bitbucket.org/pitrou/pathlib/issues /12/ )
1503
1503
return False
1504
1504
except ValueError :
1505
1505
# Non-encodable path
@@ -1515,7 +1515,7 @@ def is_char_device(self):
1515
1515
if not _ignore_error (e ):
1516
1516
raise
1517
1517
# Path doesn't exist or is a broken symlink
1518
- # (see https://bitbucket.org/pitrou/pathlib/issue /12/)
1518
+ # (see http://web.archive.org/web/20200623061726/ https://bitbucket.org/pitrou/pathlib/issues /12/ )
1519
1519
return False
1520
1520
except ValueError :
1521
1521
# Non-encodable path
@@ -1531,7 +1531,7 @@ def is_fifo(self):
1531
1531
if not _ignore_error (e ):
1532
1532
raise
1533
1533
# Path doesn't exist or is a broken symlink
1534
- # (see https://bitbucket.org/pitrou/pathlib/issue /12/)
1534
+ # (see http://web.archive.org/web/20200623061726/ https://bitbucket.org/pitrou/pathlib/issues /12/ )
1535
1535
return False
1536
1536
except ValueError :
1537
1537
# Non-encodable path
@@ -1547,7 +1547,7 @@ def is_socket(self):
1547
1547
if not _ignore_error (e ):
1548
1548
raise
1549
1549
# Path doesn't exist or is a broken symlink
1550
- # (see https://bitbucket.org/pitrou/pathlib/issue /12/)
1550
+ # (see http://web.archive.org/web/20200623061726/ https://bitbucket.org/pitrou/pathlib/issues /12/ )
1551
1551
return False
1552
1552
except ValueError :
1553
1553
# Non-encodable path
0 commit comments