Skip to content

Commit 96d5c70

Browse files
authored
bpo-44040: Update broken link in pathlib source (GH-25905)
1 parent 23362f8 commit 96d5c70

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Lib/pathlib.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1295,7 +1295,7 @@ def is_dir(self):
12951295
if not _ignore_error(e):
12961296
raise
12971297
# 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/ )
12991299
return False
13001300
except ValueError:
13011301
# Non-encodable path
@@ -1312,7 +1312,7 @@ def is_file(self):
13121312
if not _ignore_error(e):
13131313
raise
13141314
# 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/ )
13161316
return False
13171317
except ValueError:
13181318
# Non-encodable path
@@ -1363,7 +1363,7 @@ def is_block_device(self):
13631363
if not _ignore_error(e):
13641364
raise
13651365
# 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/ )
13671367
return False
13681368
except ValueError:
13691369
# Non-encodable path
@@ -1379,7 +1379,7 @@ def is_char_device(self):
13791379
if not _ignore_error(e):
13801380
raise
13811381
# 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/ )
13831383
return False
13841384
except ValueError:
13851385
# Non-encodable path
@@ -1395,7 +1395,7 @@ def is_fifo(self):
13951395
if not _ignore_error(e):
13961396
raise
13971397
# 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/ )
13991399
return False
14001400
except ValueError:
14011401
# Non-encodable path
@@ -1411,7 +1411,7 @@ def is_socket(self):
14111411
if not _ignore_error(e):
14121412
raise
14131413
# 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/ )
14151415
return False
14161416
except ValueError:
14171417
# Non-encodable path

0 commit comments

Comments
 (0)