2009/9/28 Andrea Grandi <[email protected]>: > A question: is "CreditChecker" or "libcreditchecker" a good name? Any > other name to suggest to this library? I'd like to register this > project somewhere but first I'd like to be sure about the name :)
I don't have a better suggestion for the name (don't put "lib" in front of it if possible), but some naming style remarks for the code: According to PEP-8[1], package and module names should have "short, all-lowercase names". so maybe you can rename the module "CreditChecker" to "credit_checker" while retaining the name for the class in it (PEP-8: "class names use the CapWords convention"). Also, the function names should have a different style, as PEP-8 says: "lowercase, with words separated by underscores". Thomas [1] http://python.org/dev/peps/pep-0008/ _______________________________________________ maemo-developers mailing list [email protected] https://lists.maemo.org/mailman/listinfo/maemo-developers
