🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

python-cjson

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

python-cjson - pypi Package Compare versions

Comparing version
1.0.0
to
1.0.1
+1
-3
cjson.c

@@ -511,5 +511,3 @@ /*

* - it also quotes \b and \f
* - it replaces any non ASCII character hh with \u00hh (this is incorrect
* but the same thing is done by simplejson and we do this to be able to
* test compatibility).
* - it replaces any non ASCII character hh with \u00hh instead of \xhh
*/

@@ -516,0 +514,0 @@ static PyObject*

Metadata-Version: 1.0
Name: python-cjson
Version: 1.0.0
Version: 1.0.1
Summary: Fast JSON encoder/decoder for Python

@@ -9,3 +9,3 @@ Home-page: http://ag-projects.com/

License: LGPL
Download-URL: http://cheeseshop.python.org/pypi/python-cjson/1.0.0
Download-URL: http://cheeseshop.python.org/pypi/python-cjson/1.0.1
Description: This module implements a very fast JSON encoder/decoder for Python.

@@ -12,0 +12,0 @@

#!/usr/bin/python
import sys
from distutils.core import setup, Extension
__version__ = "1.0.1"
setup(name = "python-cjson",
version = "1.0.0",
version = __version__,
author = "Dan Pascu",
author_email = "dan@ag-projects.com",
url = "http://ag-projects.com/",
download_url = "http://cheeseshop.python.org/pypi/python-cjson/1.0.0",
download_url = "http://cheeseshop.python.org/pypi/python-cjson/%s" % __version__,
description = "Fast JSON encoder/decoder for Python",

@@ -13,0 +14,0 @@ long_description = open('README', 'r').read(),

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet