* src/plugins/ScratchPad.py: changed pickle to cPickle. cPickle is much faster.
	* src/EditPerson.py: changed pickle to cPickle. cPickle is much faster.
	* src/EditPlace.py: changed pickle to cPickle. cPickle is much faster.
	* src/Marriage.py: changed pickle to cPickle. cPickle is much faster.
	* src/Sources.py: changed pickle to cPickle. cPickle is much faster.


svn: r4271
This commit is contained in:
Richard Taylor
2005-04-01 13:39:34 +00:00
parent 68d6129de1
commit 8e27911ccc
6 changed files with 13 additions and 5 deletions

View File

@ -25,7 +25,7 @@
# Python modules
#
#-------------------------------------------------------------------------
import pickle
import cPickle as pickle
from gettext import gettext as _
#-------------------------------------------------------------------------