Skip to content

Instantly share code, notes, and snippets.

@waffle2k
Created July 11, 2011 15:11
Show Gist options
  • Save waffle2k/1076055 to your computer and use it in GitHub Desktop.
Save waffle2k/1076055 to your computer and use it in GitHub Desktop.
#!/usr/bin/python
import sys
from json_decorator import *
a = [ None,1,2,3,4,5,"foobar", { 'ya': 'right' },]
@jsonify
def something(obj):
return obj
print "Regular:",a
print "With decorator",
print something( a )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment