Use cPickle instead of pickle for a small performance boost.

This commit is contained in:
Greg Taylor 2007-05-15 17:30:45 +00:00
parent c7452e5a88
commit 5e0cb06221

View file

@ -1,7 +1,7 @@
from asyncore import dispatcher from asyncore import dispatcher
from asynchat import async_chat from asynchat import async_chat
import socket, asyncore, time, sys import socket, asyncore, time, sys
import pickle import cPickle as pickle
import cmdhandler import cmdhandler
from apps.objects.models import Object from apps.objects.models import Object
from django.contrib.auth.models import User from django.contrib.auth.models import User