Skip to content

Commit 12493ab

Browse files
authored
correct the import location (duh...)
1 parent 9e6143e commit 12493ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sage/misc/lazy_import.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1069,7 +1069,7 @@ def lazy_import(module, names, as_=None, *,
10691069
sage: lazy_import('sage.rings.padics.factory', 'Qp', 'my_Qp', deprecation=14275)
10701070
sage: my_Qp(5)
10711071
doctest:...: DeprecationWarning:
1072-
Importing my_Qp from here is deprecated; please use "from sage.all import Qp as my_Qp" instead.
1072+
Importing my_Qp from here is deprecated; please use "from sage.rings.padics.factory import Qp as my_Qp" instead.
10731073
See https://github.com/sagemath/sage/issues/14275 for details.
10741074
5-adic Field with capped relative precision 20
10751075

0 commit comments

Comments
 (0)