mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 05:31:20 +00:00 
			
		
		
		
	bpo-44040: Update broken link in pathlib source (GH-25905) (GH-25911)
(cherry picked from commit 96d5c7038b)
Co-authored-by: Kevin Follstad <kfollstad@gmail.com>
			
			
This commit is contained in:
		
							parent
							
								
									df99532a05
								
							
						
					
					
						commit
						bc8b93c9a9
					
				
					 1 changed files with 6 additions and 6 deletions
				
			
		|  | @ -1431,7 +1431,7 @@ def is_dir(self): | |||
|             if not _ignore_error(e): | ||||
|                 raise | ||||
|             # Path doesn't exist or is a broken symlink | ||||
|             # (see https://bitbucket.org/pitrou/pathlib/issue/12/) | ||||
|             # (see http://web.archive.org/web/20200623061726/https://bitbucket.org/pitrou/pathlib/issues/12/ ) | ||||
|             return False | ||||
|         except ValueError: | ||||
|             # Non-encodable path | ||||
|  | @ -1448,7 +1448,7 @@ def is_file(self): | |||
|             if not _ignore_error(e): | ||||
|                 raise | ||||
|             # Path doesn't exist or is a broken symlink | ||||
|             # (see https://bitbucket.org/pitrou/pathlib/issue/12/) | ||||
|             # (see http://web.archive.org/web/20200623061726/https://bitbucket.org/pitrou/pathlib/issues/12/ ) | ||||
|             return False | ||||
|         except ValueError: | ||||
|             # Non-encodable path | ||||
|  | @ -1499,7 +1499,7 @@ def is_block_device(self): | |||
|             if not _ignore_error(e): | ||||
|                 raise | ||||
|             # Path doesn't exist or is a broken symlink | ||||
|             # (see https://bitbucket.org/pitrou/pathlib/issue/12/) | ||||
|             # (see http://web.archive.org/web/20200623061726/https://bitbucket.org/pitrou/pathlib/issues/12/ ) | ||||
|             return False | ||||
|         except ValueError: | ||||
|             # Non-encodable path | ||||
|  | @ -1515,7 +1515,7 @@ def is_char_device(self): | |||
|             if not _ignore_error(e): | ||||
|                 raise | ||||
|             # Path doesn't exist or is a broken symlink | ||||
|             # (see https://bitbucket.org/pitrou/pathlib/issue/12/) | ||||
|             # (see http://web.archive.org/web/20200623061726/https://bitbucket.org/pitrou/pathlib/issues/12/ ) | ||||
|             return False | ||||
|         except ValueError: | ||||
|             # Non-encodable path | ||||
|  | @ -1531,7 +1531,7 @@ def is_fifo(self): | |||
|             if not _ignore_error(e): | ||||
|                 raise | ||||
|             # Path doesn't exist or is a broken symlink | ||||
|             # (see https://bitbucket.org/pitrou/pathlib/issue/12/) | ||||
|             # (see http://web.archive.org/web/20200623061726/https://bitbucket.org/pitrou/pathlib/issues/12/ ) | ||||
|             return False | ||||
|         except ValueError: | ||||
|             # Non-encodable path | ||||
|  | @ -1547,7 +1547,7 @@ def is_socket(self): | |||
|             if not _ignore_error(e): | ||||
|                 raise | ||||
|             # Path doesn't exist or is a broken symlink | ||||
|             # (see https://bitbucket.org/pitrou/pathlib/issue/12/) | ||||
|             # (see http://web.archive.org/web/20200623061726/https://bitbucket.org/pitrou/pathlib/issues/12/ ) | ||||
|             return False | ||||
|         except ValueError: | ||||
|             # Non-encodable path | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Miss Islington (bot)
						Miss Islington (bot)