Skip to content
This repository has been archived by the owner on Mar 8, 2018. It is now read-only.

Update iainb's pull request to merge cleanly + socket support + decode a buffer at a time + bugfixes #38

Open
wants to merge 25 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
7c83479
moved yajil to 2.0.2
iainb Aug 17, 2011
05eceb9
Updated code to use version 2.1 of yajl.
iainb Aug 20, 2011
dcc1357
* Free prarser on error
iainb Aug 20, 2011
aa93eac
Revert change to yajl.c - left over from trying to remove compiler wa…
iainb Aug 20, 2011
95c3618
Incorporate python3 undefined symbol fix from:
iainb Aug 20, 2011
7da9ed4
Move towards decoding multiple items
iainb Aug 21, 2011
a71b94c
Add kwarg allow_multiple_values to yajl.Decoder() __init__ method.
iainb Aug 21, 2011
3c0f595
calling len() against the decoder object returns the number of decode…
iainb Aug 21, 2011
6b2962e
Add reset() method to decoder
iainb Sep 3, 2011
7778ebe
Compiled with clang c compiler, fixed the following warnings:
iainb Sep 3, 2011
6ebabe4
Removed print statement from issue_11.py
iainb Sep 3, 2011
7997e35
Decoder _internal_decode now only decodes, decoded objects can be ret…
iainb Sep 3, 2011
4c5f49b
Add ability to iterate over a stream of multiple items:
iainb Sep 4, 2011
13daf3f
Fix python 3 support
iainb Sep 4, 2011
f24fd21
Fix Decref issue
iainb Sep 5, 2011
bb7051a
refactor _internal_stream_load to use Decoder class
iainb Sep 5, 2011
dfb1fff
Fix init error when no stream is passed.
iainb Sep 5, 2011
a1df295
Fixed refcount issue in py_yajldecoder_iternext (resulted in memory l…
iainb Sep 5, 2011
d9ae130
Fix many memory leaks relating to reference counts
iainb Sep 5, 2011
d9975b3
Fixed memory leak in encoder.c ProcessObject
iainb Sep 5, 2011
77a3e6d
Fix logic issue in decoder init function
iainb Sep 6, 2011
2d43150
Add socket support and increment stream ref
otherwiseguy Jan 25, 2015
7136180
Add the ability to iteratively decode chunks of data
otherwiseguy Jan 25, 2015
23f7342
Increment reference to bufsize when storing
otherwiseguy Jan 26, 2015
c7aa8b6
Handle refcounts on iterdecode
otherwiseguy Jan 27, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BUILDING.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ Getting started building py-yajl
1. clone this repository
2. `git submodule update --init`
3. `python setup.py build_ext --inplace`
4. `python tests.py`
4. `runtests.sh`

Loading