HomeSort by relevance Sort by last modified time
    Searched refs:used_args (Results 1 - 4 of 4) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
string.py 548 used_args = set()
549 result = self._vformat(format_string, args, kwargs, used_args, 2)
550 self.check_unused_args(used_args, args, kwargs)
553 def _vformat(self, format_string, args, kwargs, used_args, recursion_depth):
572 used_args.add(arg_used)
579 used_args, recursion_depth-1)
594 def check_unused_args(self, used_args, args, kwargs):
627 # used_args: a set of which args have been used
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
string.py 548 used_args = set()
549 result = self._vformat(format_string, args, kwargs, used_args, 2)
550 self.check_unused_args(used_args, args, kwargs)
553 def _vformat(self, format_string, args, kwargs, used_args, recursion_depth):
572 used_args.add(arg_used)
579 used_args, recursion_depth-1)
594 def check_unused_args(self, used_args, args, kwargs):
627 # used_args: a set of which args have been used
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_string.py 178 def check_unused_args(self, used_args, args, kwargs):
183 for arg in used_args:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_string.py 178 def check_unused_args(self, used_args, args, kwargs):
183 for arg in used_args:

Completed in 82 milliseconds