Skip to content

Commit a4badbc

Browse files
Remove a commented out code.
1 parent 76a60ac commit a4badbc

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

‎Objects/unionobject.c‎

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -229,13 +229,6 @@ _Py_union_type_or(PyObject* self, PyObject* other)
229229
Py_RETURN_NOTIMPLEMENTED;
230230
}
231231

232-
// if (self == Py_None) {
233-
// self = (PyObject *)&_PyNone_Type;
234-
// }
235-
// if (other == Py_None) {
236-
// other = (PyObject *)&_PyNone_Type;
237-
// }
238-
239232
Py_ssize_t size1, size2;
240233
PyObject **items1 = get_types(&self, &size1);
241234
PyObject **items2 = get_types(&other, &size2);

0 commit comments

Comments
 (0)