Skip to content

Commit 982b340

Browse files
committed
formatting and copyrights
1 parent e580275 commit 982b340

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

graalpython/com.oracle.graal.python.test/src/tests/test_for.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/SREModuleBuiltins.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,14 @@ protected List<? extends NodeFactory<? extends PythonBuiltinBaseNode>> getNodeFa
9494
abstract static class BuildRegexEngine extends PythonUnaryBuiltinNode {
9595
@Specialization(guards = "!getFlag(context, WithTRegex)")
9696
Object useSRE(@SuppressWarnings("unused") String code,
97-
@SuppressWarnings("unused") @CachedContext(PythonLanguage.class) PythonContext context) {
97+
@SuppressWarnings("unused") @CachedContext(PythonLanguage.class) PythonContext context) {
9898
return PNone.NONE;
9999
}
100100

101101
@Specialization(guards = "getFlag(context, WithTRegex)")
102102
@TruffleBoundary
103103
Object run(String code,
104-
@SuppressWarnings("unused") @CachedContext(PythonLanguage.class) PythonContext context) {
104+
@SuppressWarnings("unused") @CachedContext(PythonLanguage.class) PythonContext context) {
105105
return getContext().getEnv().parse(Source.newBuilder("regex", code, "build-regex-engine").build()).call();
106106
}
107107
}

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/control/BreakTargetNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, 2018, Oracle and/or its affiliates.
2+
* Copyright (c) 2017, 2019, Oracle and/or its affiliates.
33
* Copyright (c) 2014, Regents of the University of California
44
*
55
* All rights reserved.

0 commit comments

Comments
 (0)