[issue9668] strings in json.dump in '' instead of

2012-08-28 Thread Petri Lehtinen
Petri Lehtinen added the comment: No activity in 2 years, closing. -- nosy: +petri.lehtinen status: pending - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9668 ___

[issue9668] strings in json.dump in '' instead of

2010-08-27 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: 2.6.6 is the final 2.6 bugfix release. A bug would have to be demonstrated with 2.7 or 3.1/2. On 3.1, winxp, I get this also: import json json.dumps('foo') 'foo' -- nosy: +terry.reedy status: pending - open versions: -Python 2.6

[issue9668] strings in json.dump in '' instead of

2010-08-27 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- status: open - pending ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9668 ___ ___ Python-bugs-list

[issue9668] strings in json.dump in '' instead of

2010-08-27 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- components: +Library (Lib) -None status: pending - open ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9668 ___

[issue9668] strings in json.dump in '' instead of

2010-08-27 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- status: open - pending ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9668 ___ ___ Python-bugs-list

[issue9668] strings in json.dump in '' instead of

2010-08-25 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: refresh, can you provide an example that shows the problem you are seeing? Otherwise we'll close this. -- nosy: +r.david.murray resolution: - works for me stage: - committed/rejected status: open - pending

[issue9668] strings in json.dump in '' instead of

2010-08-24 Thread refresh
New submission from refresh refresh...@gmail.com: when you use json.dump() on object, the strings in the file it was written to are inside '' instead of -- components: None messages: 114781 nosy: refresh priority: normal severity: normal status: open title: strings in json.dump in ''

[issue9668] strings in json.dump in '' instead of

2010-08-24 Thread Jordan Szubert
Jordan Szubert joru...@gmail.com added the comment: could not reproduce: Python 2.6.5 (r265:79096, Mar 19 2010, 21:48:26) [MSC v.1500 32 bit (Intel)] on win32 Type help, copyright, credits or license for more information. from cStringIO import StringIO as F import json json.dumps('foo')