start using psyco where available

This commit is contained in:
David Vierra 2011-02-23 09:39:08 -10:00
parent d961d96c79
commit b3ccdd5956

View File

@ -170,6 +170,12 @@ def fillBlocks(self, box, blockType, blockData = 0):
Copyright 2010 David Rio Vierra
"""
try:
import psyco
psyco.full()
except:
pass
import nbt
import operator
import functools