1. 12 May, 2019 1 commit
  2. 03 May, 2019 1 commit
  3. 07 Apr, 2019 2 commits
  4. 06 Apr, 2019 1 commit
    • CI fixes (#1744) · ae951ca0
      * Fix warning that not including a cmake source or build dir will be a fatal error (it is now on newest CMakes)
          * Fixes appveyor
      * Travis uses CMake 3.9 for more than a year now
      * Travis dropped sudo: false in December
      * Dropping Sphinx 2
      - clang7: Suppress self-assign warnings; fix missing virtual dtors
      - pypy:
        - Keep old version (newer stuff breaks)
        - Pin packages to extra index for speed
      - travis:
        - Make docker explicit; remove docker if not needed
        - Make commands more verbose (for debugging / repro)
        - Make Ubuntu dist explicit per job
      - Fix Windows
      - Add names to travis
      Henry Schreiner committed
  5. 04 Feb, 2019 5 commits
  6. 03 Jan, 2019 3 commits
  7. 01 Dec, 2018 1 commit
  8. 20 Nov, 2018 1 commit
  9. 16 Nov, 2018 2 commits
  10. 13 Nov, 2018 1 commit
  11. 11 Nov, 2018 3 commits
  12. 09 Nov, 2018 3 commits
  13. 03 Nov, 2018 1 commit
  14. 01 Nov, 2018 1 commit
  15. 24 Oct, 2018 4 commits
  16. 14 Oct, 2018 1 commit
  17. 11 Oct, 2018 1 commit
  18. 10 Oct, 2018 1 commit
  19. 02 Oct, 2018 1 commit
  20. 27 Sep, 2018 1 commit
  21. 25 Sep, 2018 1 commit
    • Fix potential crash when calling an overloaded function (#1327) · e7761e33
      * Fix potential crash when calling an overloaded function
      
      The crash would occur if:
      - dispatcher() uses two-pass logic (because the target is overloaded and some arguments support conversions)
      - the first pass (with conversions disabled) doesn't find any matching overload
      - the second pass does find a matching overload, but its return value can't be converted to Python
      
      The code for formatting the error message assumed `it` still pointed to the selected overload,
      but during the second-pass loop `it` was nullptr. Fix by setting `it` correctly if a second-pass
      call returns a nullptr `handle`. Add a new test that segfaults without this fix.
      
      * Make overload iteration const-correct so we don't have to iterate again on second-pass error
      
      * Change test_error_after_conversions dependencies to local classes/variables
      oremanj committed
  22. 14 Sep, 2018 2 commits
  23. 11 Sep, 2018 2 commits