# HG changeset patch # User Jeff Hammel # Date 1401733531 25200 # Node ID 6f48a3e5ab41907841714dfa345bb8546765e627 # Parent ad8146c60c4da6451855fda56520a91327b6cbee STUB: python/jsonex.py diff -r ad8146c60c4d -r 6f48a3e5ab41 python/jsonex.py --- a/python/jsonex.py Mon Jun 02 11:21:46 2014 -0700 +++ b/python/jsonex.py Mon Jun 02 11:25:31 2014 -0700 @@ -32,9 +32,9 @@ if options.object: for o in options.object: - foo = arg.split('.') # split into objects - # TODO: split into slice notation - pass # TODO + base = obj + for part in o.strip().split('.'): # split into objects + raise NotImplementedError('TODO') else: print json.dumps(obj, indent=2, sort_keys=True)