Skip to content

Commit 29e0a5d

Browse files
psifertexplafosse
authored andcommitted
add note to console docs about shared vs unified python instance, resolves #6651
1 parent 6e3e682 commit 29e0a5d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

docs/guide/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -890,6 +890,9 @@ The scripting console is not a full IDE, but it has several convenience features
890890
- `<CTRL>-R` allows for reverse-searching your console history
891891
- `<UP>` and `<DOWN>` can be used to view the command-history
892892

893+
???+ Tip "Tip"
894+
All scripting consoles share a single python instance. This is an intentional design choice and has the following benefits: you can create variables in one tab/window and then access it in another. The downside is that if you run a long-running script for example, the console will still be blocked in other tabs and windows. This is a known trade-off and not expected to change.
895+
893896
### Magic Console Variables
894897

895898
The interactive python prompt also has several built-in "magic" functions and variables. Some are read-only, and some are writable to provide convenient interactivity between the UI and console:

0 commit comments

Comments
 (0)