Open tcmitchell opened 8 years ago
There are a number of calls to eval() in SAv1PersistentImplementation.modify_membership that could and should be replaced by getattr(). Using getattr() would be safer and faster.
eval()
SAv1PersistentImplementation.modify_membership
getattr()
There are a few other calls to eval elsewhere that should be looked at as well.
There are a number of calls to
eval()
inSAv1PersistentImplementation.modify_membership
that could and should be replaced bygetattr()
. Usinggetattr()
would be safer and faster.