Skip to content

Commit dfbaf3c

Browse files
committed
Remove pub from PyDict.entries (easy TODO)
1 parent c9b479c commit dfbaf3c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

vm/src/obj/objdict.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ pub type DictContentType = dictdatatype::Dict;
1919

2020
#[derive(Default)]
2121
pub struct PyDict {
22-
// TODO: should be private
23-
pub entries: RefCell<DictContentType>,
22+
entries: RefCell<DictContentType>,
2423
}
2524
pub type PyDictRef = PyRef<PyDict>;
2625

0 commit comments

Comments
 (0)