python-cjson
Advanced tools
+12
-2
@@ -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 @@ |
+1
-1
@@ -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
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
46800
1.03%