1. 05 Feb, 2018 1 commit
  2. 03 Feb, 2018 6 commits
  3. 02 Feb, 2018 1 commit
  4. 31 Jan, 2018 2 commits
  5. 30 Jan, 2018 2 commits
  6. 26 Jan, 2018 1 commit
  7. 24 Jan, 2018 3 commits
    • cclauss's avatar
      Use r-string to avoid raising Python 3 SyntaxError · 65abca9a
      cclauss authored
      In Python 2 the string and the r-string behave the same:
      $ __python2__
      ```
      >>> '$\Uparrow$ '
      '$\\Uparrow$ '
      >>> r'$\Uparrow$ '
      '$\\Uparrow$ '
      >>> '$\Uparrow$ ' == r'$\Uparrow$ '
      True
      ```
      
      In Python 3 the string raises a Syntax Error while the r-string works just like Python 2.
      ```
      >>> '$\Uparrow$ '
        File "<stdin>", line 1
      SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 1-2: truncated \UXXXXXXXX escape
      >>> r'$\Uparrow$ '
      '$\\Uparrow$ '
      ```
      65abca9a
    • cclauss's avatar
      file() was removed in Python 3 (en masse) · 9cac7637
      cclauss authored
      9cac7637
    • cclauss's avatar
      Fix Python 3 Syntax Errors (en masse) · c9202db9
      cclauss authored
      c9202db9
  8. 23 Jan, 2018 3 commits
  9. 22 Jan, 2018 1 commit
  10. 20 Jan, 2018 1 commit
  11. 13 Jan, 2018 1 commit
  12. 12 Jan, 2018 1 commit
  13. 10 Jan, 2018 2 commits
  14. 09 Jan, 2018 2 commits
  15. 08 Jan, 2018 1 commit
  16. 05 Jan, 2018 2 commits
  17. 04 Jan, 2018 1 commit
  18. 03 Jan, 2018 1 commit
  19. 30 Dec, 2017 1 commit
    • josher19's avatar
      Update README.md · 32d19541
      josher19 authored
      Fix typo: "the most is mostly converged" vs "the model is mostly converged"
      32d19541
  20. 29 Dec, 2017 1 commit
  21. 27 Dec, 2017 2 commits
  22. 26 Dec, 2017 1 commit
  23. 25 Dec, 2017 1 commit
  24. 21 Dec, 2017 1 commit
  25. 20 Dec, 2017 1 commit