Skip to content

Commit ba30e9b

Browse files
committed
Merge tag 'v4.6.3' into cpython
2 parents d916be0 + 7c74b50 commit ba30e9b

File tree

1 file changed

+2
-13
lines changed

1 file changed

+2
-13
lines changed

Lib/importlib/metadata/__init__.py

+2-13
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
import pathlib
88
import zipfile
99
import operator
10-
import platform
1110
import textwrap
1211
import warnings
1312
import functools
@@ -45,16 +44,6 @@
4544
]
4645

4746

48-
def _pypy_partial(val):
49-
"""
50-
Adjust for variable stacklevel on partial under PyPy.
51-
52-
Workaround for #327.
53-
"""
54-
is_pypy = platform.python_implementation() == 'PyPy'
55-
return val + is_pypy
56-
57-
5847
class PackageNotFoundError(ModuleNotFoundError):
5948
"""The package was not found."""
6049

@@ -251,7 +240,7 @@ class DeprecatedList(list):
251240
warnings.warn,
252241
"EntryPoints list interface is deprecated. Cast to list if needed.",
253242
DeprecationWarning,
254-
stacklevel=_pypy_partial(2),
243+
stacklevel=2,
255244
)
256245

257246
def __setitem__(self, *args, **kwargs):
@@ -400,7 +389,7 @@ class Deprecated:
400389
warnings.warn,
401390
"SelectableGroups dict interface is deprecated. Use select.",
402391
DeprecationWarning,
403-
stacklevel=_pypy_partial(2),
392+
stacklevel=2,
404393
)
405394

406395
def __getitem__(self, name):

0 commit comments

Comments
 (0)