lishenghan 发表于 2017-4-24 13:17:14

python的元注释

  python 的元注释还是很方便的:

@cf.cache_func(name=lambda * args, **kwargs:"blog:top:comments:%s" % args.id,
expired=60 * 5)
def get_top_comments(self, n=3):
from comment.models import Comment
return Comment.objects.filter(object_id=self.id, category=0).order_by('-add_datetime')[:n]
页: [1]
查看完整版本: python的元注释