File tree Expand file tree Collapse file tree 2 files changed +3
-11
lines changed
Expand file tree Collapse file tree 2 files changed +3
-11
lines changed Original file line number Diff line number Diff line change 1- 0.1.14
1+ 0.2.0
22=======
3- :release date: NOT RELEASED YET
3+ :release date: 2012-06-27
44
55Changes
66-------
77* Drop supporting Python 2.5 and unify tests for Py2 and Py3.
88* Use new version of msgpack-c. It packs correctly on big endian platforms.
9+ * Remove deprecated packs and unpacks API.
910
1011Bugs fixed
1112----------
Original file line number Diff line number Diff line change 99dump = pack
1010dumps = packb
1111
12- def packs (* args , ** kw ):
13- from warnings import warn
14- warn ("msgpack.packs() is deprecated. Use packb() instead." , DeprecationWarning )
15- return packb (* args , ** kw )
16-
17- def unpacks (* args , ** kw ):
18- from warnings import warn
19- warn ("msgpack.unpacks() is deprecated. Use unpackb() instead." , DeprecationWarning )
20- return unpackb (* args , ** kw )
You can’t perform that action at this time.
0 commit comments