DONE quotes getting chomped?
- State "DONE" from "PROPOSED"
- State "PROPOSED" from ""
commit
commit 22fc3b2d333e0d440cdc972a6478a834180b188d Author: Dan Davison <davison@stats.ox.ac.uk> Date: Fri Feb 19 11:34:16 2010 -0500
babel: Fix unquoting of strings
Before this change we have
["1", "3"]
After, we have
["1", "3"]
bug
Look at second line of output below. Looks like initial and terminal single quotes have been chomped.
python
- code
import os, time print time.ctime() print os.uname() print os.getcwd() print '\n' ## We have a bug involving losing final lines
- local
import os, time print time.ctime() print os.uname() print os.getcwd() print '\n' ## We have a bug involving losing final lines