├── .boring ├── ChangeLog ├── LICENSE ├── MANIFEST.in ├── README ├── cjson.c ├── debian ├── changelog ├── compat ├── control ├── copyright ├── docs ├── rules └── source │ └── format ├── jsontest.py └── setup.py /.boring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-cjson/HEAD/.boring -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-cjson/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-cjson/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-cjson/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-cjson/HEAD/README -------------------------------------------------------------------------------- /cjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-cjson/HEAD/cjson.c -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-cjson/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-cjson/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-cjson/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-cjson/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /jsontest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-cjson/HEAD/jsontest.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-cjson/HEAD/setup.py --------------------------------------------------------------------------------