File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
com.oracle.graal.python.shell/src/com/oracle/graal/python/shell
com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/code Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -512,7 +512,7 @@ protected void printHelp(OptionCategory maxCategory) {
512
512
" GraalPython does not use bytecode, and thus this flag has no effect\n " +
513
513
"-OO : remove doc-strings in addition to the -O optimizations;\n " +
514
514
" 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 " +
516
516
" hash()values of various types be unpredictable between separate\n " +
517
517
" invocations of the interpreter, as a defense against denial-of-service\n " +
518
518
" attacks; GraalPython always enables this and the flag has no effect.\n " +
Original file line number Diff line number Diff line change 85
85
86
86
public final class PCode extends PythonBuiltinObject {
87
87
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
92
92
// modules
93
93
94
94
private final RootCallTarget callTarget ;
You can’t perform that action at this time.
0 commit comments