System.tag.browse OR in filter

Well, technically, the way the code is written, you could do something terrible like this for the name condition. I have no idea if this will actually return useful results though:

class FakeKey():
	def toString(self):
		return "name"
		
filters = {
	FakeKey(): "Realistic*",
	FakeKey(): "Other*",
}

system.tag.browse("", filters)