Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion six.py
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ def print_(*args, **kwargs):

_add_doc(reraise, """Reraise an exception.""")

if sys.version_info[0:2] < (3, 4):
if not PY34:
# This does exactly the same what the :func:`py3:functools.update_wrapper`
# function does on Python versions after 3.2. It sets the ``__wrapped__``
# attribute on ``wrapper`` object and it doesn't raise an error if any of
Expand Down