We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d964098 commit a693b3bCopy full SHA for a693b3b
vm/src/object/core.rs
@@ -713,7 +713,7 @@ impl PyObject {
713
/// Set the dict field. Returns `Err(dict)` if this object does not have a dict field
714
/// in the first place.
715
pub fn set_dict(&self, dict: PySetterValue<PyDictRef>) -> Option<()> {
716
- // NOTE(hanif) - So far, this is the only error condition that I know of so we can use Option
+ // NOTE: So far, this is the only error condition that I know of so we can use Option
717
// for now.
718
if self.payload_is::<crate::builtins::function::PyFunction>() {
719
return None;
0 commit comments