Skip to content

Commit

Permalink
New-style classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Mar 5, 2013
1 parent 5708c85 commit c416756
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/zodbpickle/pickle.py
Expand Up @@ -172,7 +172,7 @@ def __init__(self, value):

# Pickling machinery

class _Pickler:
class _Pickler(object):

def __init__(self, file, protocol=None, *, fix_imports=True,
bytes_as_strings=False):
Expand Down Expand Up @@ -802,7 +802,7 @@ def whichmodule(func, funcname):

# Unpickling machinery

class _Unpickler:
class _Unpickler(object):

def __init__(self, file, *, fix_imports=True,
encoding="ASCII", errors="strict"):
Expand Down

0 comments on commit c416756

Please sign in to comment.