1. 24 Mar, 2016 6 commits
  2. 22 Mar, 2016 5 commits
  3. 21 Mar, 2016 1 commit
  4. 20 Mar, 2016 3 commits
  5. 19 Mar, 2016 1 commit
  6. 18 Mar, 2016 1 commit
  7. 17 Mar, 2016 5 commits
  8. 11 Mar, 2016 7 commits
  9. 05 Mar, 2016 2 commits
  10. 04 Mar, 2016 4 commits
  11. 03 Mar, 2016 2 commits
  12. 29 Feb, 2016 3 commits
    • scoder's avatar
      Merge pull request #494 from Nikratio/bugfix2 · 812cd069
      scoder authored
      __Pyx_PyInt_TrueDivideObjC: switch comparison order
      812cd069
    • scoder's avatar
      Merge pull request #493 from Nikratio/master · ebf10c7f
      scoder authored
      FROM_PY_FUNCTION: Cast to sdigit after unary minus, not before
      ebf10c7f
    • Nikolaus Rath's avatar
      __Pyx_PyInt_TrueDivideObjC: switch comparison order · 81290209
      Nikolaus Rath authored
      The current order results in compiler warnings on 32 bit machines, e.g.
      
      src/llfuse.c: In function '__Pyx_PyInt_TrueDivideObjC':
      src/llfuse.c:43980:17: warning: left shift count >= width of type
                       if (8 * sizeof(long) <= 53 || (__Pyx_sst_abs(size) <= 52 / PyLong_SHIFT) || likely(labs(a) <= (1L << 53))) {
      
      Switching the order so that the left shift is closer to the sizeof test
      avoids the warning, presumably because it makes it easier for the
      compiler to see that the left shift is only executed on 64 bit.
      
      Thanks to Christian Neukirchen for doing most of the work!
      81290209