示例#1
0
	def clear (self):
		_BaseConfig.clear(self)
		
		# This maps device names to the parameters used to match the device.
		self.devices = {}
		# This is firstly indexed by device name (or None),
		# secondly by the tuple of modes
		# and thirdly by the input, or input chord.
		self.mappings = {None:{():{}}}
示例#2
0
    def clear(self):
        _BaseConfig.clear(self)

        # This maps device names to the parameters used to match the device.
        self.devices = {}
        # This is firstly indexed by device name (or None),
        # secondly by the tuple of modes
        # and thirdly by the input, or input chord.
        self.mappings = {None: {(): {}}}
示例#3
0
	def clear (self):
		_BaseConfig.clear(self)
		
		# This is firstly indexed by device name (or None),
		# and secondly by the input, or input chord.
		self.mappings = {None:{}}
示例#4
0
    def clear(self):
        _BaseConfig.clear(self)

        # This is firstly indexed by device name (or None),
        # and secondly by the input, or input chord.
        self.mappings = {None: {}}