Commit 59584b17 authored by Jim Fulton's avatar Jim Fulton

Returning the references list makes the API much cleaner,

which will help new storage writers.

Creating the reference list when one isn't passed is a bonus.
parent 04b14c3e
......@@ -86,12 +86,13 @@
"""
import cPickle, cStringIO
def referencesf(p,rootl,
def referencesf(p, rootl=None,
Unpickler=cPickle.Unpickler,
StringIO=cStringIO.StringIO,
tt=type(()),
type=type):
type=type, None=None):
if rootl is None: rootl=[]
u=Unpickler(StringIO(p))
l=len(rootl)
u.persistent_load=rootl
......@@ -114,3 +115,4 @@ def referencesf(p,rootl,
if type(v) is tt: v=v[0]
rootl[i]=v
return rootl
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment