File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ Object sleep(double seconds) {
236
236
@ GenerateNodeFactory
237
237
@ TypeSystemReference (PythonArithmeticTypes .class )
238
238
public abstract static class StrfTimeNode extends PythonBuiltinNode {
239
- private static int IMPOSSIBLE = -2 ;
239
+ private static final int IMPOSSIBLE = -2 ;
240
240
@ Child private CastToIntegerFromIntNode castIntNode ;
241
241
242
242
@ CompilationFinal private ConditionProfile outOfRangeProfile ;
@@ -371,6 +371,7 @@ private static GregorianCalendar getCalendar(int[] time) {
371
371
372
372
// This taken from JPython + some switches were corrected to provide the
373
373
// same result as CPython
374
+ @ TruffleBoundary
374
375
private String format (String format , PTuple date ) {
375
376
376
377
int [] items = checkStructtime (date );
You can’t perform that action at this time.
0 commit comments