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: Polynomials now copy properly (#22669) #22866

Merged
merged 2 commits into from Dec 22, 2022

Commits on Dec 22, 2022

  1. BUG: Polynomials now copy properly (numpy#22669)

    On line 502, self.symbol.copy() was called, which
    causes an AttributeError, since self.symbol is a
    string, so it doesn't have a copy() method. To fix
    it, I simply removed the copy() and directly assigned
    the string.
    MatteoRaso authored and charris committed Dec 22, 2022
    Configuration menu
    Copy the full SHA
    94e405b View commit details
    Browse the repository at this point in the history
  2. Added pickle test for polynomials

    MatteoRaso authored and charris committed Dec 22, 2022
    Configuration menu
    Copy the full SHA
    cc7800d View commit details
    Browse the repository at this point in the history