forked from Doist/python-cjson
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
53 lines (40 loc) · 1.77 KB
/
ChangeLog
File metadata and controls
53 lines (40 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Changes in version 1.1
------------------------
(c) 2012-2013, Doist Inc team
* Allow to use integer and longs as object keys
* Convert datetime instances to strings looking like DATE[[...]]
* Handle object __json__ attributes
Changes in version 1.0.5
------------------------
* Check if module initialization failed.
* Removed useless checks on module initialization.
* Added __version__ attribute to the cjson module.
* Call Py_INCREF before calling PyModule_AddObject.
Changes in version 1.0.4
------------------------
* Added licensing information.
* Fixed issue with decrementing a string reference too early
(Edouard Hinard <[email protected]>).
* Fixed 64-bit portability problems (based on a modified version of a
patch by David Rushby <[email protected]>).
* Fixed issue with not returning NULL after setting the OverflowError
when encoded strings would be too big.
* Fixed 2 potential buffer overflow errors when encoding string/unicode
(thanks to Ofer Faigon <[email protected]> for pointing them out).
* About 10% speed improvement when encoding/decoding string/unicode.
Changes in version 1.0.3
------------------------
* Updated the function docstrings to include information about the
available optional arguments and their meaning.
Changes in version 1.0.2
------------------------
* Define INFINITY and NAN if missing as they are not available on all
platforms.
* Define Py_IS_NAN if missing as python2.3 doesn't have it.
* Removed min and max macros as they were no used.
* Remove cjson.so and the build directory on debuild clean.
Changes in version 1.0.1
------------------------
* Clean some more leftovers on debuild clean.
* Removed unused import in setup.py
* Fixed function comment.