1. 14 Oct, 2013 1 commit
    • Jason Swails's avatar
      Corrected minor bug in GBneck screening parameter assignment. The existing logic · f7b98d01
      Jason Swails authored
      was:
      
      if symbl[0] == ('c' or 'C'):
         ...do stuff...
      
      This logic will match only 'c' as ('c' or 'C') evaluates to 'c' while
      ('c' and 'C') evaluates to 'C':
      
      >>> 'c' or 'C'
      'c'
      >>> 'C' == ('c' or 'C')
      False
      
      The correct logic is either
      
      if symbl[0].upper() == 'C':
         ...do stuff...
      
      or
      
      if symbl[0] in ('C', 'c'):
         ...do stuff...
      
      (Alternatives can be [ if symbl[0] in 'cC' ] or [ if symbl[0].lower() == 'c'])
      f7b98d01
  2. 08 Oct, 2013 6 commits
  3. 07 Oct, 2013 2 commits
  4. 02 Oct, 2013 8 commits
  5. 01 Oct, 2013 9 commits
  6. 30 Sep, 2013 10 commits
  7. 29 Sep, 2013 1 commit
  8. 27 Sep, 2013 3 commits