Skip to content
Snippets Groups Projects
  1. Jun 14, 2019
  2. Jun 10, 2019
  3. Jun 07, 2019
  4. Mar 01, 2019
  5. Nov 29, 2018
  6. Jul 26, 2017
  7. May 19, 2017
  8. Apr 29, 2017
  9. Sep 23, 2016
  10. Sep 16, 2016
  11. May 13, 2016
  12. May 06, 2016
    • Kernc's avatar
      pylintrc: change some defaults · d9478cb9
      Kernc authored
      We need more arguments in parameterized scientific functions,
      more methods in Qt subclasses.
      
      Functions map and filter can be nice and even clearer than
      comprehension in some cases, e.g.
      
          max(map(len, rows), default=0)
          filter(len, transactions)
      
      vs.
      
          max((len(row) for row in rows), default=0)
          (t for t in transactions if len(t))
      d9478cb9
  13. Apr 14, 2016
  14. Mar 31, 2016
  15. Mar 30, 2016
    • Miha Zidar's avatar
      Add numpy to pylint ignored modules · ac68385a
      Miha Zidar authored
      Numpy has a unique dynamic way of loading its members which causes false
      positives for pylint. Best option is to disable this check, since any
      bad imports will fail the unittests anyway.
      ac68385a
    • Miha Zidar's avatar
      Change pylint evaluation function · fb2014fa
      Miha Zidar authored
      This function turns the pylint score into a normal issue count, which
      can be used for comparing code style on pull requests. Relying only on
      code score is not good, since it is possible to introduce new issues as
      long as there are enough new lines of code without issues.
      fb2014fa
  16. Mar 25, 2016
  17. Feb 07, 2012
Loading