About 51 results
Open links in new tab
  1. Python coding standard for Safety Critical Applications

    Oct 22, 2021 · Coming from C/C++ background, I am aware of coding standards that apply for Safety Critical applications (like the classic trio Medical-Automotive-Aerospace) in the context …

  2. python - How to check pep8 standards in my code - Stack Overflow

    Aug 8, 2016 · A Python module called Pylint is available. It checks for coding standards and errors with full customizability. It can be run from the command line, as part of a continuous …

  3. What is the naming convention in Python for variables and …

    The coding style is usually part of an organization's internal policy/convention standards, but I think in general, the all_lower_case_underscore_separator style (also called snake_case) is …

  4. Tool to enforce python code style/standards - Stack Overflow

    Oct 3, 2014 · I'm trying to find a tool to check for coding style in python. For PHP I've seen there is the Code Sniffer, and a small perl script used by Drupal. Is there such a tool for python code?

  5. python - Coding standards: Should one always write 'return' at the …

    Mar 31, 2019 · Coding standards: Should one always write 'return' at the end of every method or function? [duplicate] Asked 6 years, 8 months ago Modified 6 years, 8 months ago Viewed 415 …

  6. Why does PEP-8 specify a maximum line length of 79 characters?

    Why in this millennium should Python PEP-8 specify a maximum line length of 79 characters? Pretty much every code editor under the sun can handle longer lines. What to do with …

  7. python - Complete code example that demonstrates all PEP-8 …

    Jan 13, 2012 · I want my code to be PEP-8 compliant. However, reading the PEP8-page everytime I forgot any of the rules is time-consuming. Much faster would be if I had a code …

  8. python - Does anything supercede PEP 8? - Stack Overflow

    Jan 14, 2023 · Are there coding standards or a style guide for Python programs? Yes. The coding style required for standard library modules is documented as PEP 8. No mention of anything …

  9. Any good python open source projects exemplifying coding …

    May 23, 2010 · Any good python open source projects exemplifying coding standards and best practices? [closed] Asked 15 years, 7 months ago Modified 15 years, 6 months ago Viewed …

  10. Python coding style enforcement - Stack Overflow

    Jul 29, 2011 · Possible Duplicate: Tool to enforce python code style/standards Are there any tools to enforce code standards in Python and print out a list of violations? I am looking for a tool …