File tree 2 files changed +16
-6
lines changed
2 files changed +16
-6
lines changed Original file line number Diff line number Diff line change
1
+ v6.5.1
2
+ ======
3
+
4
+ * python/cpython#103661: Removed excess error suppression in
5
+ ``_read_files_egginfo_installed `` and fixed path handling
6
+ on Windows.
7
+
1
8
v6.5.0
2
9
======
3
10
Original file line number Diff line number Diff line change @@ -536,12 +536,15 @@ def _read_files_egginfo_installed(self):
536
536
subdir = getattr (self , '_path' , None )
537
537
if not text or not subdir :
538
538
return
539
- with contextlib .suppress (Exception ):
540
- ret = [
541
- str ((subdir / line ).resolve ().relative_to (self .locate_file ('' )))
542
- for line in text .splitlines ()
543
- ]
544
- return map ('"{}"' .format , ret )
539
+
540
+ ret = [
541
+ (subdir / line )
542
+ .resolve ()
543
+ .relative_to (self .locate_file ('' ).resolve ())
544
+ .as_posix ()
545
+ for line in text .splitlines ()
546
+ ]
547
+ return map ('"{}"' .format , ret )
545
548
546
549
def _read_files_egginfo_sources (self ):
547
550
"""
You can’t perform that action at this time.
0 commit comments