From ea551b89488979c1fc3b24eb50c31a89def69966 Mon Sep 17 00:00:00 2001 From: sebd <> Date: Thu, 24 Jun 2004 21:26:30 +0000 Subject: [PATCH] some more rules about naming --- CodingStyle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CodingStyle b/CodingStyle index 36476c5..e4cf101 100644 --- a/CodingStyle +++ b/CodingStyle @@ -35,6 +35,11 @@ And they are camelCased. So: serverIpAddressAndPortCouple and NOT serverAddress (or, God forbid, address) +XML element names are also camelCased: . + +Python class names and XML element type names have the first letter of each word capitalized: "Card", "RequestForm". +"XML" is a word. Therefore: class XmlHolder (not XMLHolder) + End of file -----------