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

  /external/python/cpython2/Lib/idlelib/
WidgetRedirector.py 31 _operations: dict mapping operation name to new function.
39 self._operations = {}
56 for operation in list(self._operations):
70 Registration adds an operation: function pair to ._operations.
78 self._operations[operation] = function
87 if operation in self._operations:
88 function = self._operations[operation]
89 del self._operations[operation]
101 If an operation has been registered in self._operations, apply the
110 m = self._operations.get(operation
    [all...]
  /external/python/cpython3/Lib/idlelib/
redirector.py 30 _operations: dict mapping operation name to new function.
38 self._operations = {}
56 for operation in list(self._operations):
70 Registration adds an operation: function pair to ._operations.
78 self._operations[operation] = function
87 if operation in self._operations:
88 function = self._operations[operation]
89 del self._operations[operation]
101 If an operation has been registered in self._operations, apply the
110 m = self._operations.get(operation
    [all...]
  /external/grpc-grpc/src/python/grpcio/grpc/_cython/_cygrpc/
tag.pyx.pxi 55 self._operations = operations
59 self.c_nops = 0 if self._operations is None else len(self._operations)
62 for index, operation in enumerate(self._operations):
68 for index, operation in enumerate(self._operations):
73 c_event.type, c_event.success, self._user_tag, self._operations)
tag.pxd.pxi 42 cdef readonly object _operations
  /external/python/cpython2/Lib/idlelib/idle_test/
test_widgetredir.py 38 self.assertEqual(redir._operations, {})
74 self.assertIn('insert', self.redir._operations)
87 self.assertNotIn('insert', self.redir._operations)
  /external/python/cpython3/Lib/idlelib/idle_test/
test_redirector.py 36 self.assertEqual(redir._operations, {})
73 self.assertIn('insert', self.redir._operations)
86 self.assertNotIn('insert', self.redir._operations)

Completed in 526 milliseconds