File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 6
6
from collections import namedtuple
7
7
from operator import attrgetter
8
8
from .compat import imap
9
- from .deprecated import MARK_INFO_ATTRIBUTE , MARK_PARAMETERSET_UNPACKING
9
+ from .deprecated import MARK_PARAMETERSET_UNPACKING
10
10
11
11
def alias (name , warning = None ):
12
12
getter = attrgetter (name )
@@ -401,9 +401,9 @@ def __init__(self, mark):
401
401
self .combined = mark
402
402
self ._marks = [mark ]
403
403
404
- name = alias ('combined.name' , warning = MARK_INFO_ATTRIBUTE )
405
- args = alias ('combined.args' , warning = MARK_INFO_ATTRIBUTE )
406
- kwargs = alias ('combined.kwargs' , warning = MARK_INFO_ATTRIBUTE )
404
+ name = alias ('combined.name' )
405
+ args = alias ('combined.args' )
406
+ kwargs = alias ('combined.kwargs' )
407
407
408
408
def __repr__ (self ):
409
409
return "<MarkInfo {0!r}>" .format (self .combined )
You can’t perform that action at this time.
0 commit comments