Commit graph

537 commits

Author SHA1 Message Date
Steffen Siering
d685614138 adopt setup.py to work with python installation older 2.7 2012-01-18 19:02:11 +01:00
INADA Naoki
ac713705eb 0.1.12: re-enable packs()/unpacks() aliases. 2011-12-27 21:34:40 +09:00
INADA Naoki
d2a23cc22a Release 0.1.11 2011-12-26 19:04:33 +09:00
INADA Naoki
b553754edf Fix compile error on MSVC. (davidgaleano) 2011-12-25 12:54:19 +09:00
INADA Naoki
1f829173cd add *.so to .gitignore 2011-12-25 12:48:36 +09:00
INADA Naoki
d72bd0c5d4 Remove unnecessary semicolon. 2011-09-02 16:22:21 +09:00
INADA Naoki
8312e986bf Update changelog 2011-09-02 16:20:01 +09:00
INADA Naoki
2c53c17979 Add test/ and test3/ to MANIFEST.in 2011-09-02 16:16:08 +09:00
INADA Naoki
938a124973 Use cython's embedsignature directive and enhance some docstrings. 2011-08-26 04:45:05 +09:00
INADA Naoki
5ed2288fed Add signature to docstring. 2011-08-22 03:41:24 +09:00
INADA Naoki
8361fd8da6 Remove extra alias. 2011-08-22 03:38:16 +09:00
INADA Naoki
a9483d860b Start 0.1.11a1.dev1 2011-08-22 03:37:14 +09:00
INADA Naoki
1a81f6364d 0.1.10 2011-08-22 02:09:51 +09:00
INADA Naoki
60762747b9 Fix error in tests. 2011-08-22 01:57:23 +09:00
tailhook
8c3c8a250b Fixed encoding argument for unpacker in Python 2011-08-22 01:52:45 +09:00
INADA Naoki
4a1ce19add Fix install command for Windows. 2011-08-21 19:29:33 +09:00
INADA Naoki
6bc62bd142 rename README to README.rst 2011-08-21 19:09:36 +09:00
INADA Naoki
cd75ba495a (python) Fix typo in ChangeLog 2011-06-24 00:04:43 +09:00
inada-n
ff594d71dd (python) make test pass with Python 2.5 2011-06-01 18:30:43 +09:00
INADA Naoki
3ffc75928b Revert "(python) Change error message for unicode is passed but no encoding is"
This reverts commit bd73742552.
2011-05-31 15:40:11 +09:00
INADA Naoki
36b0c2de41 (python) Change error message for unicode is passed but no encoding is
specified.
2011-05-31 14:10:46 +09:00
tailhook
752e3d1b78 Implemented encoding for strings
* Packer by default uses `utf-8` encoding by default
* Unpacker uses `None` by default, so no decoding is done
* Both pack and unpack has `encoding` and `unicode_errors` arguments,
  if `encoding` is `None` no encoding/decoding is done, otherwise
  it is python codec. `unicode_errors` is supplied as `errors`
  parameter to codec
2011-04-15 18:39:17 +03:00
INADA Naoki
af7113bb31 python: Remove UnpackIterator. Unpacker is iterator of itself. 2011-01-30 10:45:39 +09:00
INADA Naoki
60d3ce3a18 python: Disable gc while deserializing. 2011-01-29 23:23:56 +09:00
INADA Naoki
3aaf5f5a7a python: Fix segmentation fault when default returns it's argument. 2011-01-29 23:22:41 +09:00
INADA Naoki
9e8261cbd9 python: 0.1.9 2011-01-29 07:31:06 +09:00
INADA Naoki
d0de96cacd python: refactoring. 2011-01-29 07:27:10 +09:00
INADA Naoki
77a97b9c16 Add use_list option to unpack and unpackb 2011-01-28 18:59:05 +09:00
INADA Naoki
b453385d92 python: Add memory error check. 2011-01-10 20:47:23 +09:00
INADA Naoki
47b0c273bb python: Check if (m|re)alloc's return value is NULL. (Thanks to Mateusz) 2011-01-10 05:07:07 +09:00
INADA Naoki
56aaed3641 python: Fix typo in docstring. (thanks to Mateusz.) 2011-01-10 05:05:14 +09:00
INADA Naoki
8e38a074bb python: Change URL in setup.py from sf.net to msgpack.org 2011-01-10 00:10:29 +09:00
INADA Naoki
013d1da68f python: msgpack-python-0.1.8 2011-01-09 23:58:26 +09:00
INADA Naoki
74e7ebea4f python: Fix another segv. 2011-01-09 23:54:06 +09:00
INADA Naoki
ed3f3899c1 python: Fix segv on unpacking from stream. 2011-01-09 23:40:09 +09:00
INADA Naoki
5dbf2f5ef7 python: Add test for issue29. 2011-01-09 23:29:18 +09:00
INADA Naoki
569729c3c2 python: Make aliases for API compatibility to pickle.
``dumps`` is alias of ``packb`` and ``loads`` is alias of ``unpacks``.
2011-01-09 23:17:20 +09:00
INADA Naoki
9c61ce2c6c python: Don't use `from __future__ import unicode_literals`.
Python 2.5 or older doesn't support it.
2011-01-09 23:13:35 +09:00
INADA Naoki
67b80f8b8a python: Update ChangeLog. 2011-01-09 23:06:56 +09:00
INADA Naoki
9d04822f35 python: 0.1.7 2010-11-03 03:43:49 +09:00
INADA Naoki
948f4d00c6 python: Add ws2_32 library if platform is win32. 2010-11-03 03:35:52 +09:00
INADA Naoki
3124576e1e python: Add ChangeLog.rst 2010-11-03 03:26:33 +09:00
INADA Naoki
2c9fddf085 python: Port some tests from 2 to 3. 2010-11-03 03:15:12 +09:00
INADA Naoki
a09c85ff9c python: Support old buffer protocol when unpack. (experimental) 2010-11-03 03:11:00 +09:00
INADA Naoki
3903979a84 python: Add test for unpacking buffer object. 2010-11-02 14:09:50 +09:00
INADA Naoki
8d3ca93be9 python: Add msgpack/_msgpack.c to .gitignore 2010-11-02 14:02:10 +09:00
INADA Naoki
3d8978417a Add list_hook option to unpacker. 2010-10-26 02:09:52 +09:00
INADA Naoki
0076d42a0d Add check for recursion limit and default hook result. 2010-10-26 01:49:00 +09:00
INADA Naoki
3980d381f7 Remove unnecessary refcount manipulation. 2010-10-26 01:32:08 +09:00
INADA Naoki
c355f224dc Add test for Python3. 2010-10-26 01:31:27 +09:00