1. 14 Dec, 2015 6 commits
  2. 13 Dec, 2015 2 commits
  3. 04 Dec, 2015 3 commits
  4. 03 Dec, 2015 1 commit
  5. 17 Nov, 2015 1 commit
  6. 16 Nov, 2015 1 commit
  7. 15 Nov, 2015 1 commit
  8. 11 Nov, 2015 1 commit
  9. 05 Nov, 2015 1 commit
  10. 04 Nov, 2015 4 commits
  11. 03 Nov, 2015 9 commits
  12. 28 Oct, 2015 1 commit
  13. 10 Sep, 2015 1 commit
  14. 04 Sep, 2015 1 commit
  15. 02 Sep, 2015 1 commit
  16. 27 Aug, 2015 1 commit
  17. 26 Aug, 2015 2 commits
  18. 24 Jul, 2015 1 commit
  19. 09 Jul, 2015 1 commit
  20. 19 Jun, 2015 1 commit
    • Jason Swails's avatar
      Delete now out-of-date docs as well as adding __array_priority__ to Quantity. · ba1af1ee
      Jason Swails authored
      This should be *lower* than that of Unit (and ScaledUnit/BaseUnit), since we
      still want Units to take priority over Quantities (but Quantity to take
      precedence over regular ndarrays) for reasons like this:
      
      >>> a = np.array([1]) * u.angstroms
      >>> b = a * u.angstroms # should be np.array([1])*u.angstroms**2
      >>> np.arange(10) * a # utilize broadcasting
      [1 2 3 4 5 6 7 8 9 10] A**2
      ba1af1ee