Richard Townsend wrote:
> On Fri, 24 Feb 2006 18:21:59 +0100, Magnus Lycka wrote:
>>Concerning element names, it's your coice of course, but I agree
>>more and more with Guido and PEP008 that camelCase is ugly. (Not
>>that ALLCAPS is better...)
>
> I can see in PEP008 where it says Capitalized_Wor
On Fri, 24 Feb 2006 18:21:59 +0100, Magnus Lycka wrote:
> Concerning element names, it's your coice of course, but I agree
> more and more with Guido and PEP008 that camelCase is ugly. (Not
> that ALLCAPS is better...)
I can see in PEP008 where it says Capitalized_Words_With_Underscores is
ugly,
[EMAIL PROTECTED] wrote:
> Yes I am but, I'm using a DOM Serializer in Firefox which for some
> reason turns myCamelNames into MYCAMELNAMES for the nodenames. I'll
> therefore need to control the case-spelling of these things as I'm
> formatting the XML string.
I am almost certain there is somethi
[EMAIL PROTECTED] wrote:
> Yes I am but, I'm using a DOM Serializer in Firefox which for some
> reason turns myCamelNames into MYCAMELNAMES for the nodenames. I'll
> therefore need to control the case-spelling of these things as I'm
> formatting the XML string.
I realize that it's difficult to mak
Yes I am but, I'm using a DOM Serializer in Firefox which for some
reason turns myCamelNames into MYCAMELNAMES for the nodenames. I'll
therefore need to control the case-spelling of these things as I'm
formatting the XML string.
--
http://mail.python.org/mailman/listinfo/python-list
..I hope that you are aware that xml is *case sensitive*
--
http://mail.python.org/mailman/listinfo/python-list
I have an XML string coming in from one system that I'd like to tidy up
and return in a very particular format. I'm picky!
If the input is
Then the output must be
The file might have comments and namespaces and all of this should be
preserved as it was when it came in.
I was hoping to use Ele