Skip to content

Commit 522d1ab

Browse files
committed
Fix style and copryights.
1 parent ef6a03c commit 522d1ab

File tree

7 files changed

+8
-7
lines changed

7 files changed

+8
-7
lines changed

graalpython/com.oracle.graal.python.cext/src/capsule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* The Universal Permissive License (UPL), Version 1.0

graalpython/com.oracle.graal.python.cext/src/listobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* The Universal Permissive License (UPL), Version 1.0

graalpython/com.oracle.graal.python.cext/src/memoryobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* The Universal Permissive License (UPL), Version 1.0

graalpython/com.oracle.graal.python.test/src/tests/cpyext/test_capsule.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
1+
# Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
22
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
33
#
44
# The Universal Permissive License (UPL), Version 1.0

graalpython/com.oracle.graal.python.test/src/tests/cpyext/test_complex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
1+
# Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
22
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
33
#
44
# The Universal Permissive License (UPL), Version 1.0

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/PythonCextBuiltins.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2618,12 +2618,12 @@ Object doGeneric(VirtualFrame frame, Object module, String source, int reportPos
26182618
}
26192619

26202620
@TruffleBoundary
2621-
private Number parse(String source, ParsePosition pp) {
2621+
private static Number parse(String source, ParsePosition pp) {
26222622
return DecimalFormat.getInstance().parse(source, pp);
26232623
}
26242624

26252625
@TruffleBoundary
2626-
private Number parse(String source) throws ParseException {
2626+
private static Number parse(String source) throws ParseException {
26272627
return DecimalFormat.getInstance().parse(source);
26282628
}
26292629
}

mx.graalpython/copyrights/overrides

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ graalpython/com.oracle.graal.python.cext/src/getbuildinfo.c,python.copyright
126126
graalpython/com.oracle.graal.python.cext/src/getcompiler.c,python.copyright
127127
graalpython/com.oracle.graal.python.cext/src/getversion.c,python.copyright
128128
graalpython/com.oracle.graal.python.cext/src/mysnprintf.c,python.copyright
129+
graalpython/com.oracle.graal.python.cext/src/mystrtoul.c,python.copyright
129130
graalpython/com.oracle.graal.python.cext/src/pystrhex.c,python.copyright
130131
graalpython/com.oracle.graal.python.cext/src/sliceobject.c,python.copyright
131132
graalpython/com.oracle.graal.python.cext/src/unicodectype.c,python.copyright

0 commit comments

Comments
 (0)