You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: registry.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,10 +13,10 @@ Because there is no good platform independent equivalent of the Windows Registry
13
13
14
14
## Registry Properties
15
15
16
-
The following properties are recognized by Jython. More detailed documentation may be found in comments in the registry file provided with the Jython distribution.
16
+
The following properties are recognized by Jython. More detailed documentation may be found in comments in the `registry` file provided with the Jython distribution.
17
17
18
18
**python.path**
19
-
Equivalent to CPython's PYTHONPATH environment variable
19
+
Equivalent to CPython's `PYTHONPATH` environment variable
20
20
21
21
**python.cachedir**
22
22
The directory to use for caches - currently just package information. This directory must be writable by the user. If the directory is an absolute path, it is used as given, otherwise it is interpreted as relative to sys.prefix.
@@ -25,10 +25,10 @@ The directory to use for caches - currently just package information. This direc
25
25
Sets the verbosity level for varying degrees of informative messages. Valid values in order of increasing verbosity are "error", "warning", "message", "comment", "debug"
26
26
27
27
**python.security.respectJavaAccessibility**
28
-
Normally, Jython can only provide access to public members of classes. However if this property is set to false and you are using Java 1.2 then Jython can access non-public fields, methods, and constructors.
28
+
Normally, Jython can only provide access to public members of classes. If this property is set to false, and you are using a Java version before Java 9, then Jython can access non-public fields, methods, and constructors. This may be deprecated in the future due to Java changes to accessibility from version 9.
29
29
30
30
**python.console**
31
-
The name of a console class. An alternative console class that supports GNU readline can be installed with this property. Jython already include such a console class and it can be enabled by setting this property to org.python.util.ReadlineConsole
31
+
The name of a console class. An alternative console class that supports GNU readline can be installed with this property. Jython already include such a console class and it can be enabled by setting this property to `org.python.util.ReadlineConsole`.
32
32
33
33
**python.console.readlinelib**
34
34
Allow a choice of backing implementation for GNU readline support. Can be either GnuReadline or Editline. This property is only used when python.console is set to org.python.util.ReadlineConsole.
@@ -39,6 +39,10 @@ File to be run at the start of each interactive session, but not when dropping i
39
39
**python.modules.builtin**
40
40
Add, remove, or override built in modules.
41
41
42
+
**python.cpython2**
43
+
Command used to invoke CPython, when needed, as in the case of modules and methods longer than Java supports natively.
0 commit comments