msg74872 - (view) |
Author: Bob Ippolito (bob.ippolito) * |
Date: 2008-10-16 22:08 |
simplejson 2.0.3 includes major performance enhancements (both in Python
and C) and removes usage of the private sre functionality.
I will need some help with 3.0 since I am not well versed in the changes
to the C API or Python code for that, but merging for 2.6.1 should be no
big deal.
How should I go about this?
|
msg74874 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2008-10-16 22:25 |
Can you write a patch against python trunk ? :-)
|
msg74875 - (view) |
Author: Bob Ippolito (bob.ippolito) * |
Date: 2008-10-16 22:39 |
Sure, but that doesn't port it to Python 3.0 :)
|
msg74877 - (view) |
Author: Martin v. Löwis (loewis) * |
Date: 2008-10-16 22:48 |
> Sure, but that doesn't port it to Python 3.0 :)
Still, as Victor suggests, the first step for porting it to 3.0
definitely is to produce a patch for the trunk. What the next steps will
be can be discussed when this step has been completed.
|
msg74929 - (view) |
Author: Bob Ippolito (bob.ippolito) * |
Date: 2008-10-17 18:45 |
patch to r66961 of trunk is attached.
|
msg74931 - (view) |
Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * |
Date: 2008-10-17 19:30 |
About the patch: are those lines really needed?
+ PyScannerType.tp_getattro = PyObject_GenericGetAttr;
+ PyScannerType.tp_setattro = PyObject_GenericSetAttr;
+ PyScannerType.tp_alloc = PyType_GenericAlloc;
+ PyScannerType.tp_new = PyType_GenericNew;
+ PyScannerType.tp_free = _PyObject_Del;
I've never used them. What happens if the slots are left empty, and let PyType_Ready() do the rest?
|
msg74932 - (view) |
Author: Bob Ippolito (bob.ippolito) * |
Date: 2008-10-17 19:35 |
You're probably right, I don't remember what code I was using as a
template for that.
|
msg74933 - (view) |
Author: Bob Ippolito (bob.ippolito) * |
Date: 2008-10-17 19:39 |
Actually, if I remove those lines from the equivalent module in simplejson
it no longer works properly with Python 2.5.2.
File "/Users/bob/src/simplejson/simplejson/decoder.py", line 307, in
__init__
self.scan_once = make_scanner(self)
TypeError: cannot create 'make_scanner' instances
|
msg74941 - (view) |
Author: Martin v. Löwis (loewis) * |
Date: 2008-10-17 22:27 |
> Actually, if I remove those lines from the equivalent module in simplejson
> it no longer works properly with Python 2.5.2.
Why aren't the functions pointers in the structs itself?
As a procedural note, it seems like this patch is a complete rewrite of
the module. Do you anticipate further complete rewrites within the next
year? If yes, we should close the issue, and wait for the module to
evolve. If no, I'll try to find some time to review the entire module -
can you then please post the code to Rietveld?
|
msg74946 - (view) |
Author: Bob Ippolito (bob.ippolito) * |
Date: 2008-10-17 23:34 |
I don't recall exactly why they aren't in the struct itself, it may not
have worked with some compiler on some platform.
It's not really a complete rewrite, the encoding path is largely the
same and the tests haven't changed.
Anyway, there is no further work planned for simplejson. It's done
except for the potential for bug fixes. The only enhancements were
performance related and this is about as fast as it's going to get. The
majority of this work was ready before Python 2.6 was released but it
was frozen so I couldn't get this in.
|
msg74947 - (view) |
Author: Bob Ippolito (bob.ippolito) * |
Date: 2008-10-17 23:39 |
http://codereview.appspot.com/7311
|
msg75171 - (view) |
Author: Bob Ippolito (bob.ippolito) * |
Date: 2008-10-24 16:46 |
Attached is a new diff, one byte fix to the float parser when parsing JSON
documents that are just a float (also a test and a version bump).
|
msg78697 - (view) |
Author: Georg Brandl (georg.brandl) * |
Date: 2009-01-01 11:48 |
Bumping priority a bit.
|
msg79054 - (view) |
Author: Martin v. Löwis (loewis) * |
Date: 2009-01-04 13:22 |
http://codereview.appspot.com/7311/diff/1/8
File Lib/json/decoder.py (right):
http://codereview.appspot.com/7311/diff/1/8#newcode55
Line 55: def py_scanstring(s, end, encoding=None, strict=True,
_b=BACKSLASH, _m=STRINGCHUNK.match):
This function should get some comments what all the various cases are
(preferably speaking with the terms of JSON spec, i.e. chars, char, ...)
http://codereview.appspot.com/7311/diff/1/8#newcode71
Line 71: _append(content)
# 3 cases: end of string, control character, escape sequence
http://codereview.appspot.com/7311/diff/1/8#newcode76
Line 76: msg = "Invalid control character {0!r} at".format(esc)
esc isn't assigned until a few lines later. Is this really correct?
http://codereview.appspot.com/7311/diff/1/8#newcode104
Line 104: raise ValueError
No message?
http://codereview.appspot.com/7311/diff/1/8#newcode107
Line 107: raise ValueError
No message?
http://codereview.appspot.com/7311/diff/1/8#newcode111
Line 111: m = unichr(uni)
What's the purpose of m?
http://codereview.appspot.com/7311/diff/1/8#newcode127
Line 127: nextchar = s[end:end + 1]
Why not s[end]? Add comment if this is necessary.
http://codereview.appspot.com/7311/diff/1/8#newcode132
Line 132: nextchar = s[end:end + 1]
Likewise. There are more places where it does slicing, but also places
where it does indexing, in this function.
http://codereview.appspot.com/7311/diff/1/8#newcode290
Line 290: following strings: -Infinity, Infinity, NaN.
This sounds like an incompatible change.
http://codereview.appspot.com/7311/diff/1/8#newcode317
Line 317: def raw_decode(self, s, idx=0):
That looks like an incompatible change
http://codereview.appspot.com/7311/diff/1/9
File Modules/_json.c (right):
http://codereview.appspot.com/7311/diff/1/9#newcode196
Line 196: output_size *= 2;
You might want to check for integer overflow here.
http://codereview.appspot.com/7311/diff/1/9#newcode215
Line 215: ascii_escape_str(PyObject *pystr)
Please attach a comment to each function, telling what the function
does.
http://codereview.appspot.com/7311/diff/1/9#newcode733
Line 733: "..."
Some text should probably be added here.
http://codereview.appspot.com/7311/diff/1/9#newcode1320
Line 1320: if ((idx + 3 < length) && str[idx + 1] == 'u' && str[idx + 2]
== 'l' && str[idx + 3] == 'l') {
Is this really faster than a strncmp?
http://codereview.appspot.com/7311/diff/1/9#newcode1528
Line 1528: PyTypeObject PyScannerType = {
I think scanner objects should participate in cyclic gc.
http://codereview.appspot.com/7311/diff/1/9#newcode2025
Line 2025: "make_encoder", /* tp_name */
That is a confusing type name. How about "Encoder"?
http://codereview.appspot.com/7311
|
msg79100 - (view) |
Author: Bob Ippolito (bob.ippolito) * |
Date: 2009-01-05 01:35 |
By "next patch" I'm referring to a currently nonexistent patch that
would merge the json library with simplejson 2.0.7 (svn trunk at the
moment). I may have time to create it next weekend.
---
http://codereview.appspot.com/7311/diff/1/8
File Lib/json/decoder.py (right):
http://codereview.appspot.com/7311/diff/1/8#newcode55
Line 55: def py_scanstring(s, end, encoding=None, strict=True,
_b=BACKSLASH, _m=STRINGCHUNK.match):
Commented in the next patch.
http://codereview.appspot.com/7311/diff/1/8#newcode71
Line 71: _append(content)
Commented in the next patch
http://codereview.appspot.com/7311/diff/1/8#newcode76
Line 76: msg = "Invalid control character {0!r} at".format(esc)
This is a bug in the exception handling code, fixed in the next patch.
http://codereview.appspot.com/7311/diff/1/8#newcode104
Line 104: raise ValueError
Exception is caught at the except block and re-raised with a message.
Next patch unrolls this so it's not confusing.
http://codereview.appspot.com/7311/diff/1/8#newcode107
Line 107: raise ValueError
Exception is caught at the except block and re-raised with a message.
Next patch unrolls this so it's not confusing.
http://codereview.appspot.com/7311/diff/1/8#newcode111
Line 111: m = unichr(uni)
Renamed m to char in the next patch.
http://codereview.appspot.com/7311/diff/1/8#newcode127
Line 127: nextchar = s[end:end + 1]
commented in next patch (only once). s[end] can raise an IndexError with
bad input, s[end:end+1] returns an empty string on underflow, which is
caught later with a more helpful error message.
http://codereview.appspot.com/7311/diff/1/8#newcode132
Line 132: nextchar = s[end:end + 1]
commented in next patch (only once). s[end] can raise an IndexError with
bad input, s[end:end+1] returns an empty string on underflow, which is
caught later with a more helpful error message.
http://codereview.appspot.com/7311/diff/1/8#newcode290
Line 290: following strings: -Infinity, Infinity, NaN.
Not practically speaking. The documented purpose of this callback is
"This can be used to raise an exception if invalid JSON numbers are
encountered.". I've never seen it used to handle None, True, False in a
different manner. That was more of an implementation detail than
anything else, and that is fixed by this patch. Existing implementations
of this callback will simply have dead code since they will never be
called with "null", "true" or "false" anymore.
http://codereview.appspot.com/7311/diff/1/8#newcode317
Line 317: def raw_decode(self, s, idx=0):
It is a compatible change.
http://codereview.appspot.com/7311/diff/1/9
File Modules/_json.c (right):
http://codereview.appspot.com/7311/diff/1/9#newcode196
Line 196: output_size *= 2;
_PyString_Resize checks for integer overflow, so it would explode there
just fine. The next patch changes this slightly to avoid unnecessary
calls to _PyString_Resize when the size didn't actually change, but
doesn't do any explicit integer overflow checking
http://codereview.appspot.com/7311/diff/1/9#newcode215
Line 215: ascii_escape_str(PyObject *pystr)
Done in the next patch
http://codereview.appspot.com/7311/diff/1/9#newcode733
Line 733: "..."
Done in the next patch.
http://codereview.appspot.com/7311/diff/1/9#newcode1320
Line 1320: if ((idx + 3 < length) && str[idx + 1] == 'u' && str[idx + 2]
== 'l' && str[idx + 3] == 'l') {
Probably not, but strncmp doesn't work for PyUnicode and the same code
is repeated there.
http://codereview.appspot.com/7311/diff/1/9#newcode1528
Line 1528: PyTypeObject PyScannerType = {
I don't think it's possible to cause a cycle using the documented APIs,
since the encoder is created and thrown away behind the scenes and never
passed to user code. Someone else can write that patch if it's
necessary.
http://codereview.appspot.com/7311/diff/1/9#newcode2025
Line 2025: "make_encoder", /* tp_name */
It's not a type that's ever exposed to user code, make_encoder is
somewhat less confusing because that's the name it's exposed as. I'll
change it anyway though, it doesn't really matter since this is all
private API.
|
msg82053 - (view) |
Author: Antoine Pitrou (pitrou) * |
Date: 2009-02-14 13:56 |
Bob, any news on this?
|
msg82218 - (view) |
Author: Bob Ippolito (bob.ippolito) * |
Date: 2009-02-16 05:22 |
patch to r69662 is attached as json_issue4136_r69662.diff -- note that
simplejson 2.0.9 isn't released, as of r169 it's just simplejson 2.0.8
with some trivial changes to make this backport easier for me
|
msg82233 - (view) |
Author: Antoine Pitrou (pitrou) * |
Date: 2009-02-16 12:40 |
A bunch of comments from a quick look:
- why do you use old-style relative imports ("from decoder import
JSONDecoder")?
- in join_list_unicode, join_list_string you could use PyUnicode_Join
and _PyString_Join, respectively
- in scanstring_unicode, the top comment says "encoding is the encoding
of pystr (must be an ASCII superset)", but the function takes no
"encoding" parameter
- there are some lines much longer than 80 chars (it's quite clear when
reading the diff)
- there are places where you call PyObject_IsTrue(s->strict) without
checking for an error return; perhaps you could do so in the constructor
- the Scanner type doesn't support cyclic garbage collection, but it
contains some arbitrary Python objects (parse_constant and friends could
be closures or methods)
- same issue with the Encoder type (default_fn could hold arbitrary
objects alive)
|
msg82234 - (view) |
Author: Antoine Pitrou (pitrou) * |
Date: 2009-02-16 12:46 |
Bob, here is a small example showing how easy it is to encounter the GC
problem:
from json import JSONDecoder
import weakref
import gc
class MyObject(object):
def __init__(self):
self.decoder = JSONDecoder(parse_constant=self.parse_constant)
def parse_constant(self, *args, **kargs):
""" XXX """
wr = weakref.ref(MyObject())
gc.collect()
print wr()
|
msg82252 - (view) |
Author: Bob Ippolito (bob.ippolito) * |
Date: 2009-02-16 16:51 |
Old-style relative imports and the way that it does join are there because
it's Python 2.4 compatible code that I'm porting. I'll add those to the
list of things that need to be changed when backporting, implement cyclic
GC on the types, and I'll take a look at lines > 80 chars and fix any that
occur in Python code (though for some of the tests it may be a bit more
effort than its worth).
It will probably take another week or two for me to implement those things
and then do another backport.
|
msg82613 - (view) |
Author: Bob Ippolito (bob.ippolito) * |
Date: 2009-02-22 22:11 |
New patch implementing cyclic GC, new-style relative imports, no lines >80
characters in non-test Python code
|
msg82873 - (view) |
Author: Antoine Pitrou (pitrou) * |
Date: 2009-02-27 21:10 |
Thanks for the update. I'll try to take the time for a review in less
than one month. In the meantime, though, I want to point out that the
80-character rule should also apply to C files. You have quite a bit of
huge C code lines, especially in parsing code.
|
msg82874 - (view) |
Author: Bob Ippolito (bob.ippolito) * |
Date: 2009-02-27 21:39 |
Honestly I'm not sure when I'm going to find the time and motivation to
reformat the C source and tests to fit < 80 char lines. I don't think this
should hold up the patch, someone who is more obsessive compulsive than
myself can fix that once it hits trunk :)
|
msg82875 - (view) |
Author: Raymond Hettinger (rhettinger) * |
Date: 2009-02-27 21:44 |
I think reformatting line length should not hold-up this patch. That is
a nice-to-have, not a must-have.
|
msg82877 - (view) |
Author: Antoine Pitrou (pitrou) * |
Date: 2009-02-27 21:54 |
Reviewers: ,
Description:
Updated patch from Bob Ippolito, for updating the Python trunk json
package to the latest simplejson.
Please review this at http://codereview.appspot.com/20095
Affected files:
Lib/json/__init__.py
Lib/json/decoder.py
Lib/json/encoder.py
Lib/json/scanner.py
Lib/json/tests/test_check_circular.py
Lib/json/tests/test_decode.py
Lib/json/tests/test_dump.py
Lib/json/tests/test_encode_basestring_ascii.py
Lib/json/tests/test_fail.py
Lib/json/tests/test_float.py
Lib/json/tests/test_unicode.py
Lib/json/tool.py
Modules/_json.c
|
msg82887 - (view) |
Author: Daniel Diniz (ajaksu2) * |
Date: 2009-02-28 00:51 |
FWIW, following simplejson's SVN history[1] makes understanding the
(bits of the) patch (that I had time to look at) much easier to me.
I recall other JSON packages having lots of cornercase tests, not sure
if they'd be relevant here. But sprinkling a few more tests around might
help digest these changes :)
[1] http://code.google.com/p/simplejson/source/list?start=123
|
msg82892 - (view) |
Author: Martin v. Löwis (loewis) * |
Date: 2009-02-28 09:28 |
The one thing that IMO needs to be decided before this can be accept is
the version compatibility: what Python versions must this code stay
compatible with? That decision then needs to be implemented.
Apart from this (and the additional minor comments below), the patch
looks fine.
http://codereview.appspot.com/20095/diff/1/13
File Lib/json/decoder.py (right):
http://codereview.appspot.com/20095/diff/1/13#newcode21
Line 21: nan, inf = struct.unpack('dd', _BYTES)
I think this can be simplified as
nan, inf = struct.unpack('>dd', _BYTES)
http://codereview.appspot.com/20095/diff/1/12
File Lib/json/encoder.py (right):
http://codereview.appspot.com/20095/diff/1/12#newcode31
Line 31: INFINITY = float('1e66666')
Why not decoder.PosInf?
http://codereview.appspot.com/20095/diff/1/14
File Modules/_json.c (right):
http://codereview.appspot.com/20095/diff/1/14#newcode3
Line 3: #if PY_VERSION_HEX < 0x02060000 && !defined(Py_TYPE)
Is Python before 2.6 even supported anymore? ISTM that the usage of
.format on strings outrules Python2.5 and earlier.
http://codereview.appspot.com/20095
|
msg82900 - (view) |
Author: Martin v. Löwis (loewis) * |
Date: 2009-02-28 10:43 |
> simplejson maintains Python 2.4+ compatibility, but json maintains 2.6+.
> I could produce another patch that manually removes these few remaining
> nits if it's necessary.
I don't quite understand this: isn't json/decoder.py and
simplejson/decoder.py essentially the same? why fork the one and not
the other?
However, as long as the compatibility requirements are documented
somewhere (e.g. PEP 291), it's fine with me.
|
msg82937 - (view) |
Author: Bob Ippolito (bob.ippolito) * |
Date: 2009-02-28 18:32 |
They are essentially the same except the relative imports are changed to
use . syntax, simplejson._speedups is changed to _json, simplejson is
changed to json, .format strings are used, and the test suite changes
slightly. I can add fixing that struct function and removing the #if stuff
from the C code to that list as well.
The way I see it, the names have to change anyway, so other things might
as well be modernized as long as it's trivial. I personally didn't make
the call to switch from % to .format, someone else did that after I had
originally committed simplejson to Python 2.6 trunk.
|
msg83172 - (view) |
Author: Raymond Hettinger (rhettinger) * |
Date: 2009-03-05 00:36 |
Martin, is this patch good-to-go?
|
msg83662 - (view) |
Author: Raymond Hettinger (rhettinger) * |
Date: 2009-03-17 06:58 |
What needs to happen next for this patch to go forward?
|
msg83703 - (view) |
Author: Antoine Pitrou (pitrou) * |
Date: 2009-03-17 22:06 |
Well, if Bob has addressed all of Martin's comments, I suppose it can
get in.
The second step will be to port it to py3k...
|
msg83704 - (view) |
Author: Bob Ippolito (bob.ippolito) * |
Date: 2009-03-17 22:20 |
All of the comments are addressed. I am not going to go through the
trouble of creating a new patch to remove the remaining backwards
compatibility cruft in the C code and struct function. That is easier to
remove later.
|
msg83705 - (view) |
Author: Martin v. Löwis (loewis) * |
Date: 2009-03-17 22:37 |
The patch in its current form is fine with me, please apply (OTOH, I
don't see the need for urgency - 2.7 is still many months away, and
likely, we will see another update to the same code before it gets released)
|
msg83706 - (view) |
Author: Raymond Hettinger (rhettinger) * |
Date: 2009-03-17 22:44 |
Bob, please go ahead and commit. I don't see any advantage to letting
the code continue sit in the tracker. Also, having it in will let me go
forward with issue 5381 which has been held-up until this was complete.
Thanks for all your work on JSON.
|
msg83713 - (view) |
Author: Bob Ippolito (bob.ippolito) * |
Date: 2009-03-17 23:35 |
r70443 in trunk
|
msg83715 - (view) |
Author: Antoine Pitrou (pitrou) * |
Date: 2009-03-17 23:41 |
Reopening so that we don't forget to merge it in py3k :)
(I have the feeling it won't be trivial, although I hope to be proven wrong)
|
msg83721 - (view) |
Author: Raymond Hettinger (rhettinger) * |
Date: 2009-03-18 00:04 |
It might not be bad. I read through the patch a saw that it uses only
the most basic C APIs and already has unicode aware sections. It may be
a matter of switching the PyString functions. Will look at it in more
detail later this week. Fortunately, there is not a lot of C code.
|
msg85118 - (view) |
Author: Benjamin Peterson (benjamin.peterson) * |
Date: 2009-04-01 23:19 |
This change should be ported to py3k sometime before the first beta.
|
msg85752 - (view) |
Author: Benjamin Peterson (benjamin.peterson) * |
Date: 2009-04-07 22:23 |
Here's a half-baked patch against py3k. It resolves all the conflicts
but still has 15 failing tests. Perhaps someone would like to finish it up.
For example, json.dumps(b"hi") works, but not json.dumps([b"hi", "hi"])
|
msg85753 - (view) |
Author: Antoine Pitrou (pitrou) * |
Date: 2009-04-07 22:29 |
There is the problem in the current py3k version of json. b"hi" can be
serialized, but not [b"hi"].
>>> json.dumps(b"hi")
'"hi"'
>>> json.dumps([b"hi"])
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/antoine/py3k/__svn__/Lib/json/__init__.py", line 230, in dumps
return _default_encoder.encode(obj)
File "/home/antoine/py3k/__svn__/Lib/json/encoder.py", line 367, in encode
chunks = list(self.iterencode(o))
File "/home/antoine/py3k/__svn__/Lib/json/encoder.py", line 306, in
_iterencode
for chunk in self._iterencode_list(o, markers):
File "/home/antoine/py3k/__svn__/Lib/json/encoder.py", line 204, in
_iterencode_list
for chunk in self._iterencode(value, markers):
File "/home/antoine/py3k/__svn__/Lib/json/encoder.py", line 317, in
_iterencode
for chunk in self._iterencode_default(o, markers):
File "/home/antoine/py3k/__svn__/Lib/json/encoder.py", line 323, in
_iterencode_default
newobj = self.default(o)
File "/home/antoine/py3k/__svn__/Lib/json/encoder.py", line 344, in
default
raise TypeError(repr(o) + " is not JSON serializable")
TypeError: b'hi' is not JSON serializable
|
msg85757 - (view) |
Author: Antoine Pitrou (pitrou) * |
Date: 2009-04-07 22:58 |
Christian:
1) in py3k, loads and dumps always seem to operate on/produce str
objects, but encode_basestring_ascii returns a bytes object. Why is that?
2) what is the use of the encoding argument in py3k? it looks completely
ignored (bytes objects are not allowed as input and never produced as
output)
|
msg85759 - (view) |
Author: Antoine Pitrou (pitrou) * |
Date: 2009-04-08 00:07 |
Updated patch:
- fixes all failures
- removes bytes input and output "support" (which didn't work but still
involved a lot of code)
To be done:
- remove all traces of the encoding argument, and associated machinery
|
msg85775 - (view) |
Author: Antoine Pitrou (pitrou) * |
Date: 2009-04-08 16:07 |
Here is an updated patch, completely removing the `encoding` parameter
and fixing docs.
|
msg85776 - (view) |
Author: Antoine Pitrou (pitrou) * |
Date: 2009-04-08 16:12 |
(by the way, all tests pass)
|
msg85777 - (view) |
Author: Raymond Hettinger (rhettinger) * |
Date: 2009-04-08 16:14 |
It would be better to have a patch that diff's from the current 2.7
version than to start with the 3.0 version; otherwise, the two will
never be fully synchronized and some of the choices made in 2.6-to-3.0
will live on forever. The 2.7 version reflects more patch review and
real world usage (from simplejson) than the relatively unexercised 3.0
version.
|
msg85778 - (view) |
Author: Antoine Pitrou (pitrou) * |
Date: 2009-04-08 16:30 |
> It would be better to have a patch that diff's from the current 2.7
> version than to start with the 3.0 version; otherwise, the two will
> never be fully synchronized and some of the choices made in 2.6-to-3.0
> will live on forever.
How am I supposed to produce this patch?
|
msg85779 - (view) |
Author: Raymond Hettinger (rhettinger) * |
Date: 2009-04-08 16:37 |
The idea is to ignore the current 3.0 version and just redo the 2-to-3
conversion from 2.7 and do it well this time. Compute the 3.1 patch as
if the current 3.0 version was blown away (reverted).
|
msg85781 - (view) |
Author: Christian Heimes (christian.heimes) * |
Date: 2009-04-08 18:16 |
+1 for Raymond's suggestion
The 3.0 version of json was more like a last minute patch work than
thorough work. You might wanna svn rm the 3.0 code, svn cp the 2.7 code
to the py3k branch and start all over.
|
msg85814 - (view) |
Author: Dirkjan Ochtman (djc) * |
Date: 2009-04-09 12:32 |
I'll take a stab at doing it Raymond's way this weekend.
|
msg86942 - (view) |
Author: Benjamin Peterson (benjamin.peterson) * |
Date: 2009-05-02 12:37 |
Since no other patches were proposed, I applied Antoine's patch in r72194.
|
|
Date |
User |
Action |
Args |
2022-04-11 14:56:40 | admin | set | github: 48386 |
2009-05-02 12:37:10 | benjamin.peterson | set | status: open -> closed
messages:
+ msg86942 |
2009-04-09 12:32:29 | djc | set | messages:
+ msg85814 |
2009-04-09 12:32:00 | djc | set | nosy:
+ djc
|
2009-04-08 18:16:35 | christian.heimes | set | messages:
+ msg85781 |
2009-04-08 16:37:29 | rhettinger | set | messages:
+ msg85779 |
2009-04-08 16:30:59 | pitrou | set | messages:
+ msg85778 |
2009-04-08 16:14:24 | rhettinger | set | messages:
+ msg85777 |
2009-04-08 16:12:09 | pitrou | set | messages:
+ msg85776 |
2009-04-08 16:08:12 | pitrou | set | files:
+ json_py3k-3.patch
messages:
+ msg85775 |
2009-04-08 00:07:33 | pitrou | set | files:
+ json_py3k-2.patch
messages:
+ msg85759 |
2009-04-07 22:58:07 | pitrou | set | messages:
+ msg85757 |
2009-04-07 22:49:38 | pitrou | set | nosy:
+ christian.heimes
|
2009-04-07 22:29:20 | pitrou | set | messages:
+ msg85753 |
2009-04-07 22:23:54 | benjamin.peterson | set | files:
+ json_py3k.patch
messages:
+ msg85752 |
2009-04-04 23:34:45 | benjamin.peterson | set | priority: deferred blocker -> release blocker |
2009-04-01 23:19:38 | benjamin.peterson | set | priority: critical -> deferred blocker nosy:
+ benjamin.peterson messages:
+ msg85118
|
2009-04-01 05:02:56 | orsenthil | link | issue3763 superseder |
2009-03-18 00:04:41 | rhettinger | set | messages:
+ msg83721 |
2009-03-17 23:41:03 | pitrou | set | status: closed -> open
messages:
+ msg83715 versions:
- Python 2.7 |
2009-03-17 23:35:47 | bob.ippolito | set | status: open -> closed
messages:
+ msg83713 |
2009-03-17 22:44:33 | rhettinger | set | resolution: accepted messages:
+ msg83706 |
2009-03-17 22:37:55 | loewis | set | messages:
+ msg83705 |
2009-03-17 22:20:38 | bob.ippolito | set | messages:
+ msg83704 |
2009-03-17 22:06:54 | pitrou | set | messages:
+ msg83703 |
2009-03-17 06:58:12 | rhettinger | set | messages:
+ msg83662 |
2009-03-05 00:36:01 | rhettinger | set | messages:
+ msg83172 |
2009-02-28 18:32:56 | bob.ippolito | set | messages:
+ msg82937 |
2009-02-28 10:43:51 | loewis | set | messages:
+ msg82900 |
2009-02-28 09:28:14 | loewis | set | messages:
+ msg82892 |
2009-02-28 00:51:02 | ajaksu2 | set | nosy:
+ ajaksu2 messages:
+ msg82887 |
2009-02-27 21:54:49 | pitrou | set | messages:
+ msg82877 |
2009-02-27 21:44:14 | rhettinger | set | nosy:
+ rhettinger messages:
+ msg82875 |
2009-02-27 21:39:13 | bob.ippolito | set | messages:
+ msg82874 |
2009-02-27 21:10:58 | pitrou | set | messages:
+ msg82873 |
2009-02-22 22:11:39 | bob.ippolito | set | files:
+ json_issue4136_r69885.diff messages:
+ msg82613 |
2009-02-16 16:51:57 | bob.ippolito | set | messages:
+ msg82252 |
2009-02-16 12:46:10 | pitrou | set | keywords:
- 26backport messages:
+ msg82234 |
2009-02-16 12:40:36 | pitrou | set | messages:
+ msg82233 |
2009-02-16 05:23:30 | bob.ippolito | set | files:
+ json_issue4136_r69662.diff |
2009-02-16 05:22:07 | bob.ippolito | set | messages:
+ msg82218 |
2009-02-14 13:56:34 | pitrou | set | versions:
- Python 2.6, Python 3.0 nosy:
+ pitrou title: merge json library with simplejson 2.0.3 -> merge json library with latest simplejson 2.0.x messages:
+ msg82053 type: behavior stage: needs patch |
2009-01-06 01:35:07 | vstinner | set | nosy:
- vstinner |
2009-01-05 01:35:58 | bob.ippolito | set | messages:
+ msg79100 |
2009-01-04 13:22:32 | loewis | set | messages:
+ msg79054 title: merge json library with simplejson 2.0.4 -> merge json library with simplejson 2.0.3 |
2009-01-01 11:48:47 | georg.brandl | set | priority: critical nosy:
+ georg.brandl messages:
+ msg78697 |
2008-10-24 16:48:08 | bob.ippolito | set | title: merge json library with simplejson 2.0.3 -> merge json library with simplejson 2.0.4 |
2008-10-24 16:47:11 | bob.ippolito | set | files:
+ json_issue4136_r67009.diff messages:
+ msg75171 |
2008-10-17 23:39:45 | bob.ippolito | set | messages:
+ msg74947 |
2008-10-17 23:34:16 | bob.ippolito | set | messages:
+ msg74946 |
2008-10-17 22:27:37 | loewis | set | messages:
+ msg74941 |
2008-10-17 19:39:47 | bob.ippolito | set | messages:
+ msg74933 |
2008-10-17 19:35:40 | bob.ippolito | set | messages:
+ msg74932 |
2008-10-17 19:30:54 | amaury.forgeotdarc | set | nosy:
+ amaury.forgeotdarc messages:
+ msg74931 |
2008-10-17 18:45:25 | bob.ippolito | set | keywords:
+ patch, 26backport files:
+ json_issue4136_r66961.diff messages:
+ msg74929 versions:
+ Python 3.1, Python 2.7 |
2008-10-16 22:48:37 | loewis | set | nosy:
+ loewis messages:
+ msg74877 |
2008-10-16 22:39:05 | bob.ippolito | set | messages:
+ msg74875 |
2008-10-16 22:25:49 | vstinner | set | nosy:
+ vstinner messages:
+ msg74874 |
2008-10-16 22:08:48 | bob.ippolito | create | |