[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 ___ __

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

2010-08-27 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

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

2010-08-27 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +Library (Lib) -None status: pending -> open ___ Python tracker ___ ___ Python-bugs-list mai

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

2010-08-27 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

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

2010-08-27 Thread Terry J. Reedy
Terry J. Reedy 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-25 Thread R. David Murray
R. David Murray 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 Jordan Szubert
Jordan Szubert 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') '"fo

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

2010-08-24 Thread refresh
New submission from refresh : 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 '' instead of "" type: