summaryrefslogtreecommitdiff
path: root/AppPkg/Applications/Python/Efi/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'AppPkg/Applications/Python/Efi/config.c')
-rw-r--r--AppPkg/Applications/Python/Efi/config.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/AppPkg/Applications/Python/Efi/config.c b/AppPkg/Applications/Python/Efi/config.c
index 2fd6019abd..7ae26319bd 100644
--- a/AppPkg/Applications/Python/Efi/config.c
+++ b/AppPkg/Applications/Python/Efi/config.c
@@ -82,6 +82,7 @@ struct _inittab _PyImport_Inittab[] = {
//{"_ast", init_ast},
//{"_bisect", init_bisect}, /* A fast version of bisect.py */
+ //{"_csv", init_csv},
//{"_heapq", init_heapq}, /* A fast version of heapq.py */
//{"_io", init_io},
//{"_json", init_json},
@@ -90,6 +91,7 @@ struct _inittab _PyImport_Inittab[] = {
//{"_sha256", init_sha256},
//{"_sha512", init_sha512},
//{"_socket", init_socket},
+ //{"_symtable", init_symtable},
//{"array", initarray},
//{"cmath", initcmath},
@@ -100,6 +102,7 @@ struct _inittab _PyImport_Inittab[] = {
//{"select", initselect},
//{"signal", initsignal},
//{"strop", initstrop}, /* redefines some string operations that are 100-1000 times faster */
+ //{"unicodedata", initunicodedata},
//{"xxsubtype", initxxsubtype},
//{"zipimport", initzipimport},
//{"zlib", initzlib},
@@ -117,9 +120,6 @@ struct _inittab _PyImport_Inittab[] = {
{"thread", initthread},
#endif
- //{"_symtable", init_symtable},
- //{"_csv", init_csv},
-
/* These modules are required for the full built-in help() facility provided by pydoc. */
{"_codecs", init_codecs},
{"_collections", init_collections},