Home
last modified time | relevance | path

Searched refs:used_args (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Lib/
Dstring.py189 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/
Dstring.py562 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/
Dtest_string.py175 def check_unused_args(self, used_args, args, kwargs): argument
180 for arg in used_args:
/external/python/cpython3/Lib/test/
Dtest_string.py162 def check_unused_args(self, used_args, args, kwargs): argument
167 for arg in used_args:
/external/python/cpython3/Doc/library/
Dstring.rst161 .. method:: check_unused_args(used_args, args, kwargs)
/external/python/cpython2/Doc/library/
Dstring.rst189 .. method:: check_unused_args(used_args, args, kwargs)