#!/usr/bin/env python

# prpick = print a Python pickle file
#
##########################################################
# Copyright (c) 2001 Philip Hunt. See COPYING for details
# of licensing information.
##########################################################

# Last altered: 11-Jul-2001
# History:
# 11-Jul-2001 PH: created


#***** python standard libraries:
import sys

#***** phil's libraries:
from utility import *



#---------------------------------------------------------------------

file = sys.argv[1]
outPrettyPickle(file)


#---------------------------------------------------------------------



#end
