1. 31 Jan, 2018 2 commits
  2. 30 Jan, 2018 1 commit
  3. 26 Jan, 2018 1 commit
  4. 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
  5. 23 Jan, 2018 3 commits
  6. 22 Jan, 2018 1 commit
  7. 20 Jan, 2018 1 commit
  8. 13 Jan, 2018 1 commit
  9. 12 Jan, 2018 1 commit
  10. 10 Jan, 2018 2 commits
  11. 09 Jan, 2018 2 commits
  12. 08 Jan, 2018 1 commit
  13. 05 Jan, 2018 2 commits
  14. 04 Jan, 2018 1 commit
  15. 03 Jan, 2018 1 commit
  16. 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
  17. 29 Dec, 2017 1 commit
  18. 27 Dec, 2017 2 commits
  19. 26 Dec, 2017 1 commit
  20. 25 Dec, 2017 1 commit
  21. 21 Dec, 2017 1 commit
  22. 20 Dec, 2017 1 commit
  23. 19 Dec, 2017 1 commit
  24. 14 Dec, 2017 2 commits
  25. 08 Dec, 2017 1 commit
  26. 07 Dec, 2017 2 commits
  27. 05 Dec, 2017 1 commit
  28. 01 Dec, 2017 1 commit
  29. 30 Nov, 2017 1 commit