🚀 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.1
to
1.0.2
+12
-2
cjson.c

@@ -44,8 +44,18 @@ /*

#define True 1
#define False 0
#define max(x, y) ((x) > (y) ? (x) : (y))
#define min(x, y) ((x) < (y) ? (x) : (y))
#ifndef INFINITY
# define INFINITY HUGE_VAL
#endif
#ifndef NAN
# define NAN (HUGE_VAL - HUGE_VAL)
#endif
#ifndef Py_IS_NAN
# define Py_IS_NAN(X) ((X) != (X))
#endif
#define skipSpaces(d) while(*((d)->ptr) && isspace(*((d)->ptr))) (d)->ptr++

@@ -52,0 +62,0 @@

+2
-2
Metadata-Version: 1.0
Name: python-cjson
Version: 1.0.1
Version: 1.0.2
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.1
Download-URL: http://cheeseshop.python.org/pypi/python-cjson/1.0.2
Description: This module implements a very fast JSON encoder/decoder for Python.

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

@@ -5,3 +5,3 @@ #!/usr/bin/python

__version__ = "1.0.1"
__version__ = "1.0.2"

@@ -8,0 +8,0 @@ setup(name = "python-cjson",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet