Skip to content

Commit b8dccb7

Browse files
committed
[GR-24682] Minor fixes: use uinon merge for some files, bump serialization version, fix args parsing in graalpytest.
PullRequest: graalpython/1175
2 parents 9545d94 + 4e6ef31 commit b8dccb7

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CHANGELOG.md merge=union
2+
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/ErrorMessages.java merge=union

graalpython/com.oracle.graal.python.test/src/graalpytest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,8 @@ class TextTestResult():
705705
patterns.append(argv.pop(idx))
706706
except IndexError:
707707
print("-k needs an argument")
708-
idx += 1
708+
else:
709+
idx += 1
709710

710711
if argv[1] == "-v":
711712
verbose = True

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/parser/sst/SerializationUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
import com.oracle.graal.python.nodes.expression.UnaryArithmetic;
4646

4747
public class SerializationUtils {
48-
public static byte VERSION = 3;
48+
public static byte VERSION = 4;
4949

5050
public static enum SSTId {
5151
AndID,

0 commit comments

Comments
 (0)