some more rules about naming

This commit is contained in:
sebd 2004-06-24 21:26:30 +00:00
parent fb2d66d69f
commit ea551b8948
1 changed files with 5 additions and 0 deletions

View File

@ -35,6 +35,11 @@ And they are camelCased.
So:
serverIpAddressAndPortCouple and NOT serverAddress (or, God forbid, address)
XML element names are also camelCased: <requestForm/>.
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
-----------