Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions 9 Lib/test/test_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -747,6 +747,15 @@ def __eq__(self, other):
with self.assertRaises(TypeError):
issubclass(list, type_)

def test_or_type_operator_with_bad_module(self):
class TypeVar:
@property
def __module__(self):
1 / 0
# Crashes in Issue44483
with self.assertRaises(ZeroDivisionError):
str | TypeVar()

def test_ellipsis_type(self):
self.assertIsInstance(Ellipsis, types.EllipsisType)

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Fix a crash in ``types.Union`` objects when creating a union of an object
with bad ``__module__`` field.
17 changes: 14 additions & 3 deletions 17 Objects/unionobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -284,17 +284,28 @@ is_new_type(PyObject *obj)
return is_typing_module(obj);
}

// Emulates short-circuiting behavior of the ``||`` operator
// while also checking negative values.
#define CHECK_RES(res) { \
int result = res; \
if (result) { \
return result; \
} \
}

// Returns 1 on true, 0 on false, and -1 on error.
static int
is_unionable(PyObject *obj)
{
if (obj == Py_None) {
return 1;
}
PyTypeObject *type = Py_TYPE(obj);
CHECK_RES(is_typevar(obj));
CHECK_RES(is_new_type(obj));
CHECK_RES(is_special_form(obj));
return (
is_typevar(obj) ||
is_new_type(obj) ||
is_special_form(obj) ||
// The following checks never fail.
PyType_Check(obj) ||
PyObject_TypeCheck(obj, &Py_GenericAliasType) ||
type == &_Py_UnionType);
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.