mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
bpo-43428: Sync with importlib_metadata 3.7. (GH-24782)
* bpo-43428: Sync with importlib_metadata 3.7.2 (67234b6) * Add blurb * Reformat blurb to create separate paragraphs for each change included.
This commit is contained in:
parent
2256a2876b
commit
f917efccf8
8 changed files with 343 additions and 43 deletions
|
@ -5,7 +5,6 @@ import pathlib
|
|||
import tempfile
|
||||
import textwrap
|
||||
import contextlib
|
||||
import unittest
|
||||
|
||||
from test.support.os_helper import FS_NONASCII
|
||||
from typing import Dict, Union
|
||||
|
@ -221,7 +220,6 @@ class LocalPackage:
|
|||
build_files(self.files)
|
||||
|
||||
|
||||
|
||||
def build_files(file_defs, prefix=pathlib.Path()):
|
||||
"""Build a set of files/directories, as described by the
|
||||
|
||||
|
@ -260,9 +258,6 @@ class FileBuilder:
|
|||
def unicode_filename(self):
|
||||
return FS_NONASCII or self.skip("File system does not support non-ascii.")
|
||||
|
||||
def skip(self, reason):
|
||||
raise unittest.SkipTest(reason)
|
||||
|
||||
|
||||
def DALS(str):
|
||||
"Dedent and left-strip"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue