Skip to content

Commit b437aa3

Browse files
authored
Merge pull request RustPython#4216 from gilteunchoi/class-doc-fixed
class-doc-fixed
2 parents 3bd46b0 + af2f857 commit b437aa3

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

vm/src/builtins/type.rs

-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ use indexmap::{map::Entry, IndexMap};
2828
use itertools::Itertools;
2929
use std::{borrow::Borrow, collections::HashSet, fmt, ops::Deref, pin::Pin, ptr::NonNull};
3030

31-
/// type(object_or_name, bases, dict)
32-
/// type(object) -> the object's type
33-
/// type(name, bases, dict) -> a new type
3431
#[pyclass(module = false, name = "type")]
3532
pub struct PyType {
3633
pub base: Option<PyTypeRef>,

0 commit comments

Comments
 (0)