Merge pull request #3469 from youknowone/dis-py

rename native dis to _dis and add python module
This commit is contained in:
Jeong YunWon
2021-11-28 17:52:15 +09:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

1
Lib/dis.py vendored Normal file
View File

@@ -0,0 +1 @@
from _dis import *

View File

@@ -79,7 +79,7 @@ pub fn get_module_inits() -> impl Iterator<Item = (Cow<'static, str>, StdlibInit
"_bisect" => bisect::make_module,
"cmath" => cmath::make_module,
"_csv" => csv::make_module,
"dis" => dis::make_module,
"_dis" => dis::make_module,
"gc" => gc::make_module,
"hashlib" => hashlib::make_module,
"_json" => json::make_module,