Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUG: Fix __truediv__ numexpr error #3764

Merged
merged 5 commits into from
Jun 18, 2013

Commits on Jun 18, 2013

  1. TST: Add numexpr arithmetic tests.

    Only add 'div' if not python 3
    
    Also checks dtype in test cases for series
    jtratner committed Jun 18, 2013
    Configuration menu
    Copy the full SHA
    273946a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ae8b7ab View commit details
    Browse the repository at this point in the history
  3. BUG: Fix __truediv__ numexpr error

    by passing truediv=True to evaluate for __truediv__
    and truediv=False for __div__.
    jtratner committed Jun 18, 2013
    Configuration menu
    Copy the full SHA
    5d69a4d View commit details
    Browse the repository at this point in the history
  4. BUG: Remove broken frame mod and floordiv str_rep

    `%` (modulus) intermittently causes floating point exceptions when used with
    numexpr.
    
    `//` (floordiv) is inconsistent between unaccelerated and accelerated
    when dividing by zero (unaccelerated produces 0.0000, accelerated
    produces `inf`)
    jtratner committed Jun 18, 2013
    Configuration menu
    Copy the full SHA
    f927fed View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0e7781c View commit details
    Browse the repository at this point in the history