@@ -1295,7 +1295,7 @@ def is_dir(self):
1295
1295
if not _ignore_error (e ):
1296
1296
raise
1297
1297
# Path doesn't exist or is a broken symlink
1298
- # (see https://bitbucket.org/pitrou/pathlib/issue /12/)
1298
+ # (see http://web.archive.org/web/20200623061726/ https://bitbucket.org/pitrou/pathlib/issues /12/ )
1299
1299
return False
1300
1300
except ValueError :
1301
1301
# Non-encodable path
@@ -1312,7 +1312,7 @@ def is_file(self):
1312
1312
if not _ignore_error (e ):
1313
1313
raise
1314
1314
# Path doesn't exist or is a broken symlink
1315
- # (see https://bitbucket.org/pitrou/pathlib/issue /12/)
1315
+ # (see http://web.archive.org/web/20200623061726/ https://bitbucket.org/pitrou/pathlib/issues /12/ )
1316
1316
return False
1317
1317
except ValueError :
1318
1318
# Non-encodable path
@@ -1363,7 +1363,7 @@ def is_block_device(self):
1363
1363
if not _ignore_error (e ):
1364
1364
raise
1365
1365
# Path doesn't exist or is a broken symlink
1366
- # (see https://bitbucket.org/pitrou/pathlib/issue /12/)
1366
+ # (see http://web.archive.org/web/20200623061726/ https://bitbucket.org/pitrou/pathlib/issues /12/ )
1367
1367
return False
1368
1368
except ValueError :
1369
1369
# Non-encodable path
@@ -1379,7 +1379,7 @@ def is_char_device(self):
1379
1379
if not _ignore_error (e ):
1380
1380
raise
1381
1381
# Path doesn't exist or is a broken symlink
1382
- # (see https://bitbucket.org/pitrou/pathlib/issue /12/)
1382
+ # (see http://web.archive.org/web/20200623061726/ https://bitbucket.org/pitrou/pathlib/issues /12/ )
1383
1383
return False
1384
1384
except ValueError :
1385
1385
# Non-encodable path
@@ -1395,7 +1395,7 @@ def is_fifo(self):
1395
1395
if not _ignore_error (e ):
1396
1396
raise
1397
1397
# Path doesn't exist or is a broken symlink
1398
- # (see https://bitbucket.org/pitrou/pathlib/issue /12/)
1398
+ # (see http://web.archive.org/web/20200623061726/ https://bitbucket.org/pitrou/pathlib/issues /12/ )
1399
1399
return False
1400
1400
except ValueError :
1401
1401
# Non-encodable path
@@ -1411,7 +1411,7 @@ def is_socket(self):
1411
1411
if not _ignore_error (e ):
1412
1412
raise
1413
1413
# Path doesn't exist or is a broken symlink
1414
- # (see https://bitbucket.org/pitrou/pathlib/issue /12/)
1414
+ # (see http://web.archive.org/web/20200623061726/ https://bitbucket.org/pitrou/pathlib/issues /12/ )
1415
1415
return False
1416
1416
except ValueError :
1417
1417
# Non-encodable path
0 commit comments