Optimise Python imports.

This commit is contained in:
Dave Page
2016-06-21 14:12:14 +01:00
parent 4f5eeffd1f
commit 3026b470e9
92 changed files with 500 additions and 412 deletions
+2 -1
View File
@@ -15,10 +15,11 @@ Credit/Reference: http://flask.pocoo.org/snippets/86/
Modified to support both Python 2.6+ & Python 3.x
"""
import os
import errno
import os
import sqlite3
from uuid import uuid4
try:
from cPickle import dumps, loads
except: