1. 24 May, 2016 2 commits
    • Marius Wachtler's avatar
      str: use tp_as_sequence instead of tp_as_number · 19bf0665
      Marius Wachtler authored
      string is special in that it is a c++ type which has tp_as_number and tp_as_sequence.
      This causes problems because when we fixup the slot dispatcher we will set the tp_as_number fields but not the
      tp_as_sequence because setting both can cause problems.
      Some extensions (e.g. numpy) require that we use the sq_* functions instead of nb_*.
      Therefore clear the tp_as_number fields (except nb_remainder which cpython has set too because it is not part of
      tp_as_sequence).
      19bf0665
    • Marius Wachtler's avatar
      Merge pull request #1205 from undingen/BoxIteratorGeneric_fix · a6fca70a
      Marius Wachtler authored
      BoxIteratorGeneric call PyIter_Next() lazily
      a6fca70a
  2. 23 May, 2016 17 commits
  3. 22 May, 2016 5 commits
  4. 21 May, 2016 4 commits
  5. 20 May, 2016 8 commits
  6. 19 May, 2016 4 commits