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 a7628ac commit 2bceb13Copy full SHA for 2bceb13
src/runtime/pyobject.cs
@@ -181,7 +181,7 @@ public bool HasAttr(PyObject name)
181
{
182
return Runtime.PyObject_HasAttr(obj, name.obj) != 0;
183
}
184
-
+
185
186
/// <summary>
187
/// GetAttr Method
@@ -274,7 +274,7 @@ public void SetAttr(string name, PyObject value)
274
throw new PythonException();
275
276
277
278
279
280
/// SetAttr Method
@@ -887,6 +887,7 @@ public override int GetHashCode()
887
return Runtime.PyObject_Hash(obj).ToInt32();
888
889
890
891
892
/// ToObject Method
893
/// </summary>
0 commit comments