Python MySQLdb DeprecationWarning问题
错误提示:
MySQLdb\__init__.py:34: DeprecationWarning: the sets module is deprecated from sets import ImmutableSet
解决办法:修改下面2个文件
##### __init__.py###############
#Line 35
#from sets import ImmutableSet
#class DBAPISet(ImmutableSet):
class DBAPISet(frozenset):
##### converters.py###############
#Line 37
#from sets import BaseSet, Set
#Line 46
#return Set([ i for i in s.split(',') if i ])
return set([ i for i in s.split(',') if i ])
#Line 132
#Set: Set2Str,
set: Set2Str,
没有评论▼