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 bug pickling namedtuple. #113

Merged
merged 6 commits into from
Oct 25, 2017
Merged

BUG: Fix bug pickling namedtuple. #113

merged 6 commits into from
Oct 25, 2017

Commits on Aug 30, 2017

  1. BUG: Fix bug pickling namedtuple.

    Fixes a crash when trying to set `__dict__` onto a type when `__dict__`
    is a property.
    Scott Sanderson committed Aug 30, 2017
    Configuration menu
    Copy the full SHA
    8675793 View commit details
    Browse the repository at this point in the history
  2. MAINT: Fix namedtuple tests.

    Scott Sanderson committed Aug 30, 2017
    Configuration menu
    Copy the full SHA
    b3f2af9 View commit details
    Browse the repository at this point in the history
  3. MAINT: Handle builtin type __new__ attrs.

    Scott Sanderson committed Aug 30, 2017
    Configuration menu
    Copy the full SHA
    28e9e7e View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2017

  1. MAINT: assertIs doesn't exist in 2.6.

    Scott Sanderson committed Aug 31, 2017
    Configuration menu
    Copy the full SHA
    a953a59 View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2017

  1. BUG: Hit the builtin type cache for any function.

    On PyPy, built-in type constructors aren't necessarily
    builtin_function_or_method instances, so we need to check for them in
    `save_function` rather than just in `save_builtin_function`.
    Scott Sanderson committed Oct 22, 2017
    Configuration menu
    Copy the full SHA
    70e3a46 View commit details
    Browse the repository at this point in the history
  2. TEST: assertIsInstance doesn't exist on 2.6.

    Scott Sanderson committed Oct 22, 2017
    Configuration menu
    Copy the full SHA
    6fb05ca View commit details
    Browse the repository at this point in the history