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...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
WidgetRedirector.py 27 self._operations = {}
43 for operation in list(self._operations):
54 self._operations[operation] = function
59 if operation in self._operations:
60 function = self._operations[operation]
61 del self._operations[operation]
71 If an operation has been registered in self._operations, apply the
80 m = self._operations.get(operation)
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
WidgetRedirector.py 27 self._operations = {}
43 for operation in list(self._operations):
54 self._operations[operation] = function
59 if operation in self._operations:
60 function = self._operations[operation]
61 del self._operations[operation]
71 If an operation has been registered in self._operations, apply the
80 m = self._operations.get(operation)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
WidgetRedirector.py 27 self._operations = {}
43 for operation in list(self._operations):
54 self._operations[operation] = function
59 if operation in self._operations:
60 function = self._operations[operation]
61 del self._operations[operation]
71 If an operation has been registered in self._operations, apply the
80 m = self._operations.get(operation)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
WidgetRedirector.py 27 self._operations = {}
43 for operation in list(self._operations):
54 self._operations[operation] = function
59 if operation in self._operations:
60 function = self._operations[operation]
61 del self._operations[operation]
71 If an operation has been registered in self._operations, apply the
80 m = self._operations.get(operation)
  /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)

Completed in 243 milliseconds