Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

camelCase #6

Open
calvinmetcalf opened this issue Aug 25, 2013 · 2 comments
Open

camelCase #6

calvinmetcalf opened this issue Aug 25, 2013 · 2 comments

Comments

@calvinmetcalf
Copy link
Owner

remove

@scardine
Copy link

Style recommendations from PEP-8:

  • CapWords: class names, exceptions
  • lower_case: use lower case names (separated by underscores if necessary) for variables, function names, method names, "public" attributes
  • _underscore: weak "internal use" indicator for variables, methods and attributes - E.g. from M import * does not import objects whose name starts with an underscore.
  • __two_underscores: private variables and methods
  • ALL_CAPS: module level constants, for example: MAX_OVERFLOW, TOTAL.

@calvinmetcalf
Copy link
Owner Author

yeah I think there are a few lowercase classes still

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants