Skip to content
This repository has been archived by the owner on Jun 21, 2022. It is now read-only.

Commit

Permalink
fixes #40
Browse files Browse the repository at this point in the history
  • Loading branch information
jpivarski committed Dec 21, 2017
1 parent af13d77 commit 98fb6b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion uproot/interp/numerical.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def __repr__(self):

return "asdtype(" + ", ".join(args) + ")"

_byteorder_transform = {"!": "B", ">": "B", "<": "L", "=": "B" if numpy.dtype(">f8").isnative else "L"}
_byteorder_transform = {"!": "B", ">": "B", "<": "L", "|": "L", "=": "B" if numpy.dtype(">f8").isnative else "L"}

@property
def identifier(self):
Expand Down
2 changes: 1 addition & 1 deletion uproot/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

import re

__version__ = "2.5.11"
__version__ = "2.5.12"
version = __version__
version_info = tuple(re.split(r"[-\.]", __version__))

Expand Down

0 comments on commit 98fb6b2

Please sign in to comment.