File tree 1 file changed +2
-13
lines changed
1 file changed +2
-13
lines changed Original file line number Diff line number Diff line change 7
7
import pathlib
8
8
import zipfile
9
9
import operator
10
- import platform
11
10
import textwrap
12
11
import warnings
13
12
import functools
45
44
]
46
45
47
46
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
-
58
47
class PackageNotFoundError (ModuleNotFoundError ):
59
48
"""The package was not found."""
60
49
@@ -251,7 +240,7 @@ class DeprecatedList(list):
251
240
warnings .warn ,
252
241
"EntryPoints list interface is deprecated. Cast to list if needed." ,
253
242
DeprecationWarning ,
254
- stacklevel = _pypy_partial ( 2 ) ,
243
+ stacklevel = 2 ,
255
244
)
256
245
257
246
def __setitem__ (self , * args , ** kwargs ):
@@ -400,7 +389,7 @@ class Deprecated:
400
389
warnings .warn ,
401
390
"SelectableGroups dict interface is deprecated. Use select." ,
402
391
DeprecationWarning ,
403
- stacklevel = _pypy_partial ( 2 ) ,
392
+ stacklevel = 2 ,
404
393
)
405
394
406
395
def __getitem__ (self , name ):
You can’t perform that action at this time.
0 commit comments