Skip to content

Commit

Permalink
Drop the load-time equivalient of 'bytes_as_strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Jun 7, 2013
1 parent 7aabb79 commit 4d04693
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ZODB/_compat.py
Expand Up @@ -29,7 +29,7 @@ def __init__(self, f, protocol=None):

class Unpickler(zodbpickle.pickle.Unpickler):
def __init__(self, f):
super(Unpickler, self).__init__(f, encoding='ASCII', errors='bytes')
super(Unpickler, self).__init__(f)

# Py3: Python 3 doesn't allow assignments to find_global,
# instead, find_class can be overridden
Expand Down

0 comments on commit 4d04693

Please sign in to comment.