Use cPickle instead of pickle for a small performance boost.
This commit is contained in:
parent
c7452e5a88
commit
5e0cb06221
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue