Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
simplejson
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenVMS
Python
Modules
simplejson
Repository graph
Repository graph
You can move around the graph by using the arrow keys.
080ad34e4efca4f24d8d722d8831f48cec246bee
Select Git revision
Branches
20
bigint_as_string-gh31
branch/default
default
protected
branch/default-vms
dict-subclass-gh26
docs-102
ecma-262-63
felixonmars-patch-1
felixonmars-patch-1-1
fix-173
for_json-69
gh-pages
item_sort_key
iterable_as_array-gh1
master
namedtuple-object-gh6
namedtuple_duck-gh22
pure-distutils
py-backports
py3
pypy-support
20 results
Begin with the selected commit
Created with Raphaël 2.2.0
24
Sep
25
26
27
28
29
3
Oct
4
7
10
11
17
24
7
Nov
17
23
25
19
Dec
30
3
Jan
5
16
Feb
18
22
28
28
Mar
29
3
Apr
5
14
17
May
2
Jun
8
Dec
27
25
Feb
8
Mar
11
13
16
31
12
Jul
19
8
Oct
1
Nov
5
17
Jan
6
Feb
11
Mar
12
14
17
12
Apr
17
19
7
May
8
15
22
Jun
3
Sep
4
6
10
Nov
18
5
Dec
29
30
25
Feb
27
28
27
1
Mar
2
6
20
29
10
May
26
Jun
19
Jul
27
21
Sep
26
Dec
28
29
30
1
Jan
2
3
11
30
19
Feb
21
22
19
Mar
20
5
Apr
6
16
17
20
1
May
7
5
Oct
31
6
Jan
10
Feb
14
2
Apr
30
7
May
6
9
20
21
22
23
24
Jun
3
Jul
21
22
9
Aug
18
24
Sep
29
22
Oct
23
24
18
Feb
18
May
22
31
10
Jul
18
3
Sep
4
27
Oct
22
Nov
14
Feb
15
9
Mar
12
29
May
30
1
Sep
21
22
25
26
21
Oct
22
23
28
16
Jan
17
24
Apr
7
May
8
12
18
20
21
8
Jun
12
18
19
28
1
Jul
8
5
Nov
6
10
20
23
24
3
Dec
10
27
Mar
29
2
Apr
3
9
21
24
25
24
25
12
May
4
Jun
19
26
27
28
3
Sep
4
5
4
6
7
8
17
Apr
20
Oct
22
17
Nov
14
Mar
17
Apr
15
Jul
16
27
20
Nov
21
30
fix the ref leak :)
more C code in the decoder, speed++
clean up C code, change API to be str preserving for ASCII only strings, bump version to 2.0.0 since this is an "interface" change
gratuitous comments, some additional type checking
fix format strings
eliminate variable distance bitwise shifts
branchless unicode escaping
stricter surrogate pair decoding when Py_UNICODE_WIDE
test for http://code.google.com/p/simplejson/issues/detail?id=22
prevent sign-extension on non-ASCII characters
fix another sign-extension bug
optimize for ASCII string encoding (not a big difference for our strings though)
first pass at making a horrible optimized mess out of the encoding bits of simplejson
god bless closures.
cut out a few yields in exchange for string ops
C fast path for encoding
style cleanup and http://bugs.python.org/issue3623
make static
remove non-working old benchmark scripts
use tp_call instead of methods
use C path for float encoding
switch to sphinx for docs
set a lot of mime types
run docs in test suite
tag simplejson 2.0.0
wild/7e0a003beb…
wild/7e0a003bebfd094789a3aee54cb5f04b1aea448a
version bump
commit patch for mingw support; regression tests checked with Python 2.5 on OS X and Linux and Python 2.4 on Linux
failing test for long, thanks @djco
fix long() encoding
tag simplejson 2.0.1
wild/956373a6ae…
wild/956373a6ae710d31c97aa234e6936f28f4852e47
#24: MSVC2003 would be better titled MSVC1970; based on patch from atsuoishimoto; changes tested on OS X
version bump
Py_IS_FINITE for Python 2.4
tag simplejson-2.0.2
wild/28d852222b…
wild/28d852222b34ec0e98be749e0228faa3d60477c5
use Py_CLEAR, fix some unlikely DECREF in PyList_Append calls
http://code.google.com/p/simplejson/issues/detail?id=26
use PyTuple_New and PyTuple_SET_ITEM to skip some refcounting games, although we should probably skip creating these tuples all together
decoder optimization: pass around a next index pointer instead of using temporary tuples
make a test resilient to py2.6 changes in formatting
fix several reference leaks, doh :(
Loading