You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avro.apache.org by Jeff Hammerbacher <ha...@cloudera.com> on 2009/11/06 01:08:03 UTC

Use of escaped double quotes in the Python implementation

Hey,

Are we using "\"This text is double-quoted\"" instead of '"This text is
double-quoted"' for any good reason? There are a lot of unnecessary
backslashes cluttering up the code that could be removed in place of single
quotes, and I want to make sure there's no good reason to keep the escaped
double-quotes before submitting a patch.

Thanks,
Jeff

Re: Use of escaped double quotes in the Python implementation

Posted by Sharad Agarwal <sh...@yahoo-inc.com>.
Jeff Hammerbacher wrote:
> I want to make sure there's no good reason to keep the escaped
> double-quotes before submitting a patch.
>   

No specific reason. Just it matches java style and python is happy with 
either. Go ahead to submit the patch to convert to single quote. I agree 
it will increase readability.

Sharad