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