Closed K-gihu closed 1 year ago
It should be defined as:
def MAKELONG(StartRow, RowCount): return StartRow + (RowCount << 16)
but now it is defined as
def MAKELONG(StartRow, RowCount): return StartRow + RowCount << 16
The parenthesis makes a difference because in python + sign takes priority over <<.
+
<<
It should be defined as:
but now it is defined as
The parenthesis makes a difference because in python
+
sign takes priority over<<
.