Set the script prefix for the current thread.
(prefix)
| 118 | |
| 119 | |
| 120 | def set_script_prefix(prefix): |
| 121 | """ |
| 122 | Set the script prefix for the current thread. |
| 123 | """ |
| 124 | if not prefix.endswith("/"): |
| 125 | prefix += "/" |
| 126 | _prefixes.value = prefix |
| 127 | |
| 128 | |
| 129 | def get_script_prefix(): |
no outgoing calls