FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
History for msgpack - urso/msgpack-python · GitHub
urso
/
msgpack-python
Public
forked from
msgpack/msgpack-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Commits
Breadcrumbs
History for
msgpack-python
msgpack
on
master
User selector
Datepicker
Commit history
Commits on Dec 27, 2011
0.1.12: re-enable packs()/unpacks() aliases.
methane
committed
ac71370
View commit details
Copy full SHA for ac71370
View code at this point
Browse repository at this point
Commits on Dec 25, 2011
Fix compile error on MSVC. (davidgaleano)
methane
committed
b553754
View commit details
Copy full SHA for b553754
View code at this point
Browse repository at this point
Commits on Sep 2, 2011
Remove unnecessary semicolon.
methane
committed
d72bd0c
View commit details
Copy full SHA for d72bd0c
View code at this point
Browse repository at this point
Commits on Aug 25, 2011
Use cython's embedsignature directive and enhance some docstrings.
methane
committed
938a124
View commit details
Copy full SHA for 938a124
View code at this point
Browse repository at this point
Commits on Aug 21, 2011
Add signature to docstring.
methane
committed
5ed2288
View commit details
Copy full SHA for 5ed2288
View code at this point
Browse repository at this point
Remove extra alias.
methane
committed
8361fd8
View commit details
Copy full SHA for 8361fd8
View code at this point
Browse repository at this point
Fixed `encoding` argument for unpacker in Python
tailhook
authored and
methane
committed
8c3c8a2
View commit details
Copy full SHA for 8c3c8a2
View code at this point
Browse repository at this point
Commits on May 31, 2011
Revert "(python) Change error message for unicode is passed but no encoding is"
Show description for 3ffc759
methane
committed
3ffc759
View commit details
Copy full SHA for 3ffc759
View code at this point
Browse repository at this point
(python) Change error message for unicode is passed but no encoding is
Show description for 36b0c2d
methane
committed
36b0c2d
View commit details
Copy full SHA for 36b0c2d
View code at this point
Browse repository at this point
Commits on Apr 15, 2011
Implemented encoding for strings
Show description for 752e3d1
tailhook
committed
752e3d1
View commit details
Copy full SHA for 752e3d1
View code at this point
Browse repository at this point
Commits on Jan 30, 2011
python: Remove UnpackIterator. Unpacker is iterator of itself.
methane
committed
af7113b
View commit details
Copy full SHA for af7113b
View code at this point
Browse repository at this point
Commits on Jan 29, 2011
python: Disable gc while deserializing.
methane
committed
60d3ce3
View commit details
Copy full SHA for 60d3ce3
View code at this point
Browse repository at this point
python: Fix segmentation fault when `default` returns it's argument.
methane
committed
3aaf5f5
View commit details
Copy full SHA for 3aaf5f5
View code at this point
Browse repository at this point
Commits on Jan 28, 2011
python: refactoring.
methane
committed
d0de96c
View commit details
Copy full SHA for d0de96c
View code at this point
Browse repository at this point
Add use_list option to unpack and unpackb
methane
committed
77a97b9
View commit details
Copy full SHA for 77a97b9
View code at this point
Browse repository at this point
Commits on Jan 10, 2011
python: Add memory error check.
methane
committed
b453385
View commit details
Copy full SHA for b453385
View code at this point
Browse repository at this point
Commits on Jan 9, 2011
python: Check if (m|re)alloc's return value is NULL. (Thanks to Mateusz)
methane
committed
47b0c27
View commit details
Copy full SHA for 47b0c27
View code at this point
Browse repository at this point
python: Fix typo in docstring. (thanks to Mateusz.)
methane
committed
56aaed3
View commit details
Copy full SHA for 56aaed3
View code at this point
Browse repository at this point
python: Fix another segv.
methane
committed
74e7ebe
View commit details
Copy full SHA for 74e7ebe
View code at this point
Browse repository at this point
python: Fix segv on unpacking from stream.
methane
committed
ed3f389
View commit details
Copy full SHA for ed3f389
View code at this point
Browse repository at this point
python: Make aliases for API compatibility to pickle.
Show description for 569729c
methane
committed
569729c
View commit details
Copy full SHA for 569729c
View code at this point
Browse repository at this point
Commits on Nov 2, 2010
python: Support old buffer protocol when unpack. (experimental)
methane
committed
a09c85f
View commit details
Copy full SHA for a09c85f
View code at this point
Browse repository at this point
Commits on Oct 25, 2010
Add list_hook option to unpacker.
methane
committed
3d89784
View commit details
Copy full SHA for 3d89784
View code at this point
Browse repository at this point
Add check for recursion limit and default hook result.
methane
committed
0076d42
View commit details
Copy full SHA for 0076d42
View code at this point
Browse repository at this point
Remove unnecessary refcount manipulation.
methane
committed
3980d38
View commit details
Copy full SHA for 3980d38
View code at this point
Browse repository at this point
Add `object_hook` option to unpack and `default` option to pack.
Show description for fa15708
methane
committed
fa15708
View commit details
Copy full SHA for fa15708
View code at this point
Browse repository at this point
Commits on Oct 6, 2010
Use PyUnicode_AsUTF8String() instead of o.encode('utf-8').
methane
committed
9db35d8
View commit details
Copy full SHA for 9db35d8
View code at this point
Browse repository at this point
Commits on Sep 2, 2010
Add msgpack.version as version tuple.
methane
committed
50ffd2c
View commit details
Copy full SHA for 50ffd2c
View code at this point
Browse repository at this point
Commits on Sep 1, 2010
python: Add test for python3 and fix found problems.
methane
committed
039542e
View commit details
Copy full SHA for 039542e
View code at this point
Browse repository at this point
python: Fix Unpacker.feed doesn't accept bytes on Python3.
methane
committed
1e8eeb8
View commit details
Copy full SHA for 1e8eeb8
View code at this point
Browse repository at this point
Merge branch 'master' of github.com:msgpack/msgpack
methane
committed
a301c14
View commit details
Copy full SHA for a301c14
View code at this point
Browse repository at this point
python: Support Python3.
methane
committed
0dc8938
View commit details
Copy full SHA for 0dc8938
View code at this point
Browse repository at this point
Commits on Jun 15, 2010
Python: add "load(s)/dump(s)" alias for compatibility to simplejson/marshal/pickle.
INADA Naoki
committed
73ac804
View commit details
Copy full SHA for 73ac804
View code at this point
Browse repository at this point
Commits on Mar 31, 2010
should raise TypeError on find unsupported value
kjim
committed
a50a83f
View commit details
Copy full SHA for a50a83f
View code at this point
Browse repository at this point
Commits on Dec 17, 2009
Make tuple default.
methane
committed
658c90f
View commit details
Copy full SHA for 658c90f
View code at this point
Browse repository at this point
Previous
Next
Back
|
FazBrowse Home
|
New Git URL