文章列表
#!/usr/bin/python
# -*- coding:gb2312 -*-
import glob, os, MySQLdb, sys
class M(type):
def __new__(cls, name, bases, classdict):
for attr in classdict.get('__slots__', ( )):
if attr.startswith('_'):
def getter(self, attr=attr):
...