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: docs/SPECIFICATION.html
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -330,7 +330,9 @@
330
330
331
331
## 8. Standard Library
332
332
333
-
The standard library is a group of modules for common use cases distributed with the interpreter. at the Prefix directory \lib (or /lib on non-Windows systems).
333
+
The standard library is a group of modules for common use cases distributed with the interpreter. These bundled modules live under `stdlib/`. Module/package search paths for `IMPORT` and `IMPORT_PATH` MUST include `stdlib/` immediately before `lib/` so that standard, bundled modules take precedence over legacy or user-installed modules in `lib/`.
334
+
335
+
Extension libraries shipped with the interpreter live under `stdext/`. Extension search paths MUST include `stdext/` immediately before `ext/` so that bundled extensions are preferred over user-installed `ext/` copies.
if (primary_src_entry&&primary_src_entry->initialized&&primary_src_entry->value.type==VAL_STR&&primary_src_entry->value.as.s&&primary_src_entry->value.as.s[0] !='\0') {
0 commit comments