Skip to content

Commit 9fb7070

Browse files
authored
Merge pull request #3469 from youknowone/dis-py
rename native dis to _dis and add python module
2 parents c65130c + d622ceb commit 9fb7070

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Lib/dis.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from _dis import *

stdlib/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ pub fn get_module_inits() -> impl Iterator<Item = (Cow<'static, str>, StdlibInit
7979
"_bisect" => bisect::make_module,
8080
"cmath" => cmath::make_module,
8181
"_csv" => csv::make_module,
82-
"dis" => dis::make_module,
82+
"_dis" => dis::make_module,
8383
"gc" => gc::make_module,
8484
"hashlib" => hashlib::make_module,
8585
"_json" => json::make_module,

0 commit comments

Comments
 (0)