We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3306eaf commit 2d63c5aCopy full SHA for 2d63c5a
Python/import.c
@@ -1187,7 +1187,8 @@ set_frozen_error(frozen_status status, PyObject *modname)
1187
err = "No such frozen object named %R";
1188
break;
1189
case FROZEN_DISABLED:
1190
- err = "Frozen modules are disabled and the frozen object named %R is not essential";
+ err = "Non-essential frozen stdlib modules are disabled. " \
1191
+ "See the '-X frozen_stdlib' documentation.";
1192
1193
case FROZEN_EXCLUDED:
1194
err = "Excluded frozen object named %R";
0 commit comments