8000 bpo-44040: Update broken link in pathlib source (GH-25905) (GH-25911) · python/cpython@bc8b93c · GitHub
[go: up one dir, main page]

Skip to content

Commit bc8b93c

Browse files
bpo-44040: Update broken link in pathlib source (GH-25905) (GH-25911)
(cherry picked from commit 96d5c70) Co-authored-by: Kevin Follstad <kfollstad@gmail.com>
1 parent df99532 commit bc8b93c

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
@@ -1431,7 +1431,7 @@ def is_dir(self):
14311431
if not _ignore_error(e):
14321432
raise
14331433
# 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/ )
14351435
return False
14361436
except ValueError:
14371437
# Non-encodable path
@@ -1448,7 +1448,7 @@ def is_file(self):
14481448
if not _ignore_error(e):
14491449
raise
14501450
# 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/ )
14521452
return False
14531453
except ValueError:
14541454
# Non-encodable path
@@ -1499,7 +1499,7 @@ def is_block_device(self):
14991499
if not _ignore_error(e):
15001500
raise
15011501
# 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/ )
15031503
return False
15041504
except ValueError:
15051505
# Non-encodable path
@@ -1515,7 +1515,7 @@ def is_char_device(self):
15151515
if not _ignore_error(e):
15161516
raise
15171517
# 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/ )
15191519
return False
15201520
except ValueError:
15211521
# Non-encodable path
@@ -1531,7 +1531,7 @@ def is_fifo(self):
15311531
if not _ignore_error(e):
15321532
raise
15331533
# 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/ )
15351535
return False
15361536
except ValueError:
15371537
# Non-encodable path
@@ -1547,7 +1547,7 @@ def is_socket(self):
15471547
if not _ignore_error(e):
15481548
raise
15491549
# 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/ )
15511551
return False
15521552
except ValueError:
15531553
# Non-encodable path

0 commit comments

Comments
 (0)
0