Skip to content
  1. Aug 29, 2019
  2. Aug 21, 2019
  3. Aug 19, 2019
  4. Aug 18, 2019
  5. Aug 17, 2019
  6. Jul 29, 2019
  7. Jul 09, 2019
  8. Jul 08, 2019
  9. Jun 12, 2019
  10. Jun 11, 2019
  11. May 20, 2019
  12. May 16, 2019
  13. Apr 12, 2019
  14. Apr 11, 2019
    • Matt Wala's avatar
      Fix use of Indexed for sympy 1.4 (closes #11) · b947da32
      Matt Wala authored
      This test passes for me on sympy 1.3 as well, so I think the change is
      backwards compatible.
      b947da32
    • Matt Wala's avatar
      get_dot_dependency_graph(): Don't use repr() to get statement labels · 27ee11a8
      Matt Wala authored
      Sometimes, it is useful to have labels that include escape sequences
      significant to the dot language. The string that comes from repr()
      doesn't allow us to do that because it escapes all the backslashes.
      
      >>> print(str("a\lb"))
      a\lb
      
      >>> print(repr("a\lb"))
      'a\\lb'
      
      This change removes the use of repr() and documents that the
      statements are turned into strings using str().
      27ee11a8
  15. Mar 26, 2019