Skip to content

Commit e6787a7

Browse files
committed
clarify docstring
1 parent ac84e5a commit e6787a7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/PythonBuiltins.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,10 @@ public abstract class PythonBuiltins {
5353
protected abstract List<? extends NodeFactory<? extends PythonBuiltinBaseNode>> getNodeFactories();
5454

5555
/**
56-
* Initialize everything that is truly independent of commandline arguments and that can be
57-
* initialized and frozen into an SVM image.
56+
* Initialize everything that is truly independent of commandline arguments
57+
* and that can be initialized and frozen into an SVM image. When in a
58+
* subclass, any modifications to {@link #builtinConstants} or such should
59+
* be made before calling {@code super.initialize(core)}.
5860
*/
5961
public void initialize(PythonCore core) {
6062
if (builtinFunctions.size() > 0) {

0 commit comments

Comments
 (0)