Skip to content

Commit

Permalink
new c pickle support
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Nov 5, 2014
1 parent 4b3ae8c commit 818fc81
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/colony/base/legacy.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@
try: import HTMLParser
except ImportError: import html.parser; HTMLParser = html.parser

try: import cPickle
except ImportError: import pickle; cPickle = pickle

try: import cStringIO
except ImportError: import io; cStringIO = io

Expand Down

0 comments on commit 818fc81

Please sign in to comment.