12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- # encoding: utf-8
- # Copyright 2017 Xiaomi, Inc.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- """
- empty.py
- from douban code, cool
- """
- class Empty(object):
- def __call__(self, *a, **kw):
- return empty
- def __nonzero__(self):
- return False
- def __contains__(self, item):
- return False
- def __repr__(self):
- return '<Empty Object>'
- def __str__(self):
- return ''
- def __eq__(self, v):
- return isinstance(v, Empty)
- def __getattr__(self, name):
- if not name.startswith('__'):
- return empty
- raise AttributeError(name)
- def __len__(self):
- return 0
- def __getitem__(self, key):
- return empty
- def __setitem__(self, key, value):
- pass
- def __delitem__(self, key):
- pass
- def __iter__(self):
- return self
- def next(self):
- raise StopIteration
- empty = Empty()
|