Skip to content

Commit 926844e

Browse files
committed
Fix style.
1 parent 04d63d0 commit 926844e

File tree

2 files changed

+5
-5
lines changed
  • graalpython
    • com.oracle.graal.python.shell/src/com/oracle/graal/python/shell
    • com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/code

2 files changed

+5
-5
lines changed

graalpython/com.oracle.graal.python.shell/src/com/oracle/graal/python/shell/GraalPythonMain.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ protected void printHelp(OptionCategory maxCategory) {
512512
" GraalPython does not use bytecode, and thus this flag has no effect\n" +
513513
"-OO : remove doc-strings in addition to the -O optimizations;\n" +
514514
" GraalPython does not use bytecode, and thus this flag has no effect\n" +
515-
"-R : on CPython, this enables the use of a pseudo-random salt to make\n"+
515+
"-R : on CPython, this enables the use of a pseudo-random salt to make\n" +
516516
" hash()values of various types be unpredictable between separate\n" +
517517
" invocations of the interpreter, as a defense against denial-of-service\n" +
518518
" attacks; GraalPython always enables this and the flag has no effect.\n" +

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/code/PCode.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,10 @@
8585

8686
public final class PCode extends PythonBuiltinObject {
8787
private static final String[] EMPTY_STRINGS = new String[0];
88-
private final static long FLAG_GENERATOR = 32;
89-
private final static long FLAG_VAR_ARGS = 0x0004;
90-
private final static long FLAG_VAR_KW_ARGS = 0x0008;
91-
private final static long FLAG_MODULE = 0x0040; // CO_NOFREE on CPython, we only set it on
88+
private static final long FLAG_GENERATOR = 32;
89+
private static final long FLAG_VAR_ARGS = 0x0004;
90+
private static final long FLAG_VAR_KW_ARGS = 0x0008;
91+
private static final long FLAG_MODULE = 0x0040; // CO_NOFREE on CPython, we only set it on
9292
// modules
9393

9494
private final RootCallTarget callTarget;

0 commit comments

Comments
 (0)