1. 22 Nov, 2021 2 commits
  2. 29 Sep, 2021 1 commit
  3. 25 Aug, 2021 3 commits
  4. 14 Jul, 2021 6 commits
  5. 26 Jun, 2021 3 commits
  6. 25 Jun, 2021 2 commits
  7. 16 Jun, 2021 1 commit
  8. 14 Jun, 2021 1 commit
  9. 12 Jun, 2021 2 commits
  10. 11 Jun, 2021 2 commits
  11. 19 Mar, 2021 1 commit
    • Cyril Roelandt's avatar
      Fix tests with Python 3.10 · d528842b
      Cyril Roelandt authored
      In Python 3, error messages have become a bit more precise. For
      instance, the following code snippet:
      
      ----
      class Foo():
          def bar(self, a):
              pass
      
      try:
          Foo().bar(1, 2)
      except TypeError as e:
          print(e)
      ----
      
      will return:
      
      - in Python 3.9: "bar() takes 2 positional arguments but 3 were given"
      - in Python 3.10: "Foo.bar() takes 2 positional arguments but 3 were
        given"
      
      Fix our tests accordingly.
      d528842b
  12. 08 Mar, 2021 2 commits
  13. 04 Mar, 2021 1 commit
  14. 25 Feb, 2021 7 commits
  15. 22 Feb, 2021 1 commit
  16. 03 Dec, 2020 2 commits
  17. 02 Dec, 2020 3 commits