ENH: Updated naming scheme of serialization methods.

This commit is contained in:
Delaney Granizo-Mackenzie
2014-10-29 14:15:04 -04:00
parent 677f5ecde0
commit 589c014f73
+1 -1
View File
@@ -165,7 +165,7 @@ class Account(object):
def __repr__(self):
return "Account({0})".format(self.__dict__)
def _serialize(self):
def _get_state(self):
return 'Account', self.__dict__
def _reconstruct(self, saved_state):