# -*- coding: utf-8 -*-import MySQLdbfrom MySQLdb.cursors import DictCursor def catch_2006(func): """ To catch MySQL Error 2006 ('Server has gone away') """ def _(self, *args, **kwargs): try: return func(self, *args, **kwargs) ...
有错误就要改正