diff hgext/remotefilelog/shallowutil.py @ 48932:176f1a0d15dc

py3: use int instead of pycompat.long pycompat.long is aliased to int. So this should have no change in functionality. Differential Revision: https://phab.mercurial-scm.org/D12338
author Gregory Szorc <gregory.szorc@gmail.com>
date Tue, 01 Mar 2022 20:50:34 -0800
parents 0fe003495f72
children d44e3c45f0e4
line wrap: on
line diff
--- a/hgext/remotefilelog/shallowutil.py	Mon Feb 21 11:13:37 2022 -0700
+++ b/hgext/remotefilelog/shallowutil.py	Tue Mar 01 20:50:34 2022 -0800
@@ -175,8 +175,8 @@
 
 
 _metaitemtypes = {
-    constants.METAKEYFLAG: (int, pycompat.long),
-    constants.METAKEYSIZE: (int, pycompat.long),
+    constants.METAKEYFLAG: (int, int),
+    constants.METAKEYSIZE: (int, int),
 }