Searched refs:used_args (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython3/Lib/ |
D | string.py | 189 used_args = set() 190 result, _ = self._vformat(format_string, args, kwargs, used_args, 2) 191 self.check_unused_args(used_args, args, kwargs) 194 def _vformat(self, format_string, args, kwargs, used_args, recursion_depth, argument 231 used_args.add(arg_used) 239 used_args, recursion_depth-1, 255 def check_unused_args(self, used_args, args, kwargs): argument
|
/external/python/cpython2/Lib/ |
D | string.py | 562 used_args = set() 563 result = self._vformat(format_string, args, kwargs, used_args, 2) 564 self.check_unused_args(used_args, args, kwargs) 567 def _vformat(self, format_string, args, kwargs, used_args, recursion_depth): argument 586 used_args.add(arg_used) 593 used_args, recursion_depth-1) 608 def check_unused_args(self, used_args, args, kwargs): argument
|
/external/python/cpython2/Lib/test/ |
D | test_string.py | 175 def check_unused_args(self, used_args, args, kwargs): argument 180 for arg in used_args:
|
/external/python/cpython3/Lib/test/ |
D | test_string.py | 162 def check_unused_args(self, used_args, args, kwargs): argument 167 for arg in used_args:
|
/external/python/cpython3/Doc/library/ |
D | string.rst | 161 .. method:: check_unused_args(used_args, args, kwargs)
|
/external/python/cpython2/Doc/library/ |
D | string.rst | 189 .. method:: check_unused_args(used_args, args, kwargs)
|