We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a45c3e commit 9c3ced0Copy full SHA for 9c3ced0
1 file changed
vm/src/builtins/type.rs
@@ -43,7 +43,6 @@ pub struct PyType {
43
pub struct HeapTypeExt {
44
pub name: PyRwLock<PyStrRef>,
45
pub slots: Option<PyTupleTyped<PyStrRef>>,
46
- pub number_methods: PyNumberMethods,
47
pub sequence_methods: PySequenceMethods,
48
pub mapping_methods: PyMappingMethods,
49
}
@@ -149,7 +148,6 @@ impl PyType {
149
148
let heaptype_ext = HeapTypeExt {
150
name: PyRwLock::new(name),
151
slots: None,
152
- number_methods: PyNumberMethods::default(),
153
sequence_methods: PySequenceMethods::default(),
154
mapping_methods: PyMappingMethods::default(),
155
};
@@ -765,7 +763,6 @@ impl PyType {
765
763
766
764
767
slots: heaptype_slots.to_owned(),
768
769
770
771
0 commit comments