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: HISTORY.md
+4
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,10 @@ Language changes
52
52
* Errors during `getfield` now raise a new `FieldError` exception type instead of the generic
53
53
`ErrorException` ([#54504]).
54
54
* Macros in function-signature-position no longer require parentheses. E.g. `function @main(args) ... end` is now permitted, whereas `function (@main)(args) ... end` was required in prior Julia versions.
55
+
* Calling `using` on a package name inside of that package of that name (especially relevant
56
+
for a submodule) now explicitly uses that package without examining the Manifest and
57
+
environment, which is identical to the behavior of `..Name`. This appears to better match
58
+
how users expect this to behave in the wild. ([#57727])
Copy file name to clipboardexpand all lines: doc/src/manual/modules.md
+14-16
Original file line number
Diff line number
Diff line change
@@ -371,7 +371,7 @@ There are three important standard modules:
371
371
372
372
Modules can contain *submodules*, nesting the same syntax `module ... end`. They can be used to introduce separate namespaces, which can be helpful for organizing complex codebases. Note that each `module` introduces its own [scope](@ref scope-of-variables), so submodules do not automatically “inherit” names from their parent.
373
373
374
-
It is recommended that submodules refer to other modules within the enclosing parent module (including the latter) using *relative module qualifiers* in `using` and `import` statements. A relative module qualifier starts with a period (`.`), which corresponds to the current module, and each successive `.` leads to the parent of the current module. This should be followed by modules if necessary, and eventually the actual name to access, all separated by `.`s.
374
+
It is recommended that submodules refer to other modules within the enclosing parent module (including the latter) using *relative module qualifiers* in `using` and `import` statements. A relative module qualifier starts with a period (`.`), which corresponds to the current module, and each successive `.` leads to the parent of the current module. This should be followed by modules if necessary, and eventually the actual name to access, all separated by `.`s. As a special case, however, referring to the module root can be written without `.`, avoiding the need to count the depth to reach that module.
375
375
376
376
Consider the following example, where the submodule `SubA` defines a function, which is then extended in its “sibling” module:
377
377
@@ -386,19 +386,24 @@ julia> module ParentModule
386
386
export add_D # export it from ParentModule too
387
387
module SubB
388
388
import ..SubA: add_D # relative path for a “sibling” module
389
+
# import ParentModule.SubA: add_D # when in a package, such as when this is loaded by using or import, this would be equivalent to the previous import, but not at the REPL
389
390
struct Infinity end
390
391
add_D(x::Infinity) = x
391
392
end
392
393
end;
393
394
394
395
```
395
396
396
-
You may see code in packages, which, in a similar situation, uses
397
+
You may see code in packages, which, in a similar situation, uses import without the `.`:
398
+
```jldoctest
399
+
julia> import ParentModule.SubA: add_D
400
+
ERROR: ArgumentError: Package ParentModule not found in current path.
401
+
```
402
+
However, since this operates through [code loading](@ref code-loading), it only works if `ParentModule` is in a package in a file. If `ParentModule` was defined at the REPL, it is necessary to use use relative paths:
397
403
```jldoctest module_manual
398
404
julia> import .ParentModule.SubA: add_D
399
405
400
406
```
401
-
However, this operates through [code loading](@ref code-loading), and thus only works if `ParentModule` is in a package. It is better to use relative paths.
402
407
403
408
Note that the order of definitions also matters if you are evaluating values. Consider
404
409
@@ -491,8 +496,12 @@ In particular, if you define a `function __init__()` in a module, then Julia wil
491
496
immediately *after* the module is loaded (e.g., by `import`, `using`, or `require`) at runtime
492
497
for the *first* time (i.e., `__init__` is only called once, and only after all statements in the
493
498
module have been executed). Because it is called after the module is fully imported, any submodules
494
-
or other imported modules have their `__init__` functions called *before* the `__init__` of the
495
-
enclosing module.
499
+
or other imported modules have their `__init__` functions called *before* the `__init__` of
500
+
the enclosing module. This is also synchronized across threads, so that code can safely rely upon
501
+
this ordering of effects, such that all `__init__` will have run, in dependency ordering,
502
+
before the `using` result is completed. They may run concurrently with other `__init__`
503
+
methods which are not dependencies however, so be careful when accessing any shared state
504
+
outside the current module to use locks when needed.
496
505
497
506
Two typical uses of `__init__` are calling runtime initialization functions of external C libraries
498
507
and initializing global constants that involve pointers returned by external libraries. For example,
@@ -524,17 +533,6 @@ pointer value must be called at runtime for precompilation to work ([`Ptr`](@ref
524
533
null pointers unless they are hidden inside an [`isbits`](@ref) object). This includes the return values
525
534
of the Julia functions [`@cfunction`](@ref) and [`pointer`](@ref).
526
535
527
-
Dictionary and set types, or in general anything that depends on the output of a `hash(key)` method,
528
-
are a trickier case. In the common case where the keys are numbers, strings, symbols, ranges,
529
-
`Expr`, or compositions of these types (via arrays, tuples, sets, pairs, etc.) they are safe to
530
-
precompile. However, for a few other key types, such as `Function` or `DataType` and generic
531
-
user-defined types where you haven't defined a `hash` method, the fallback `hash` method depends
532
-
on the memory address of the object (via its `objectid`) and hence may change from run to run.
533
-
If you have one of these key types, or if you aren't sure, to be safe you can initialize this
534
-
dictionary from within your `__init__` function. Alternatively, you can use the [`IdDict`](@ref)
535
-
dictionary type, which is specially handled by precompilation so that it is safe to initialize
536
-
at compile-time.
537
-
538
536
When using precompilation, it is important to keep a clear sense of the distinction between the
539
537
compilation phase and the execution phase. In this mode, it will often be much more clearly apparent
540
538
that Julia is a compiler which allows execution of arbitrary Julia code, not a standalone interpreter
0 commit comments