We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e2fefa commit 41552efCopy full SHA for 41552ef
orso/cityhash/__init__.py
@@ -3,12 +3,12 @@ def CityHash32(data: bytes) -> int:
3
4
if not isinstance(data, bytes):
5
data = str(data).encode()
6
- return xxh32(data)
+ return xxh32(data).intdigest()
7
8
9
def CityHash64(data: bytes) -> int:
10
from xxhash import xxh64
11
12
13
14
- return xxh64(data)
+ return xxh64(data).intdigest()
orso/version.py
@@ -10,5 +10,5 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-__version__: str = "0.0.195"
+__version__: str = "0.0.196"
__author__: str = "@joocer"
0 commit comments