diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-07-17 21:10:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-17 21:10:21 (GMT) |
commit | 03aad3049d1591c76a219dfe089e5367f88f167e (patch) | |
tree | 175acc35bac01a1cf8c7ef160096cc33f2e0064f /Objects/typeobject.c | |
parent | 2d055ce13250a4074f66a945381a149a3cf8c46f (diff) | |
download | cpython-03aad3049d1591c76a219dfe089e5367f88f167e.zip cpython-03aad3049d1591c76a219dfe089e5367f88f167e.tar.gz cpython-03aad3049d1591c76a219dfe089e5367f88f167e.tar.bz2 |
[3.10] bpo-44654: Refactor and clean up the union type implementation (GH-27196) (GH-27219)
(cherry picked from commit 0fd27375cabd12e68a2f12cfeca11a2d5043429e)
Diffstat (limited to 'Objects/typeobject.c')
-rw-r--r-- | Objects/typeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 5199c26..21e90e1 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -8,7 +8,7 @@ #include "pycore_object.h" #include "pycore_pyerrors.h" #include "pycore_pystate.h" // _PyThreadState_GET() -#include "pycore_unionobject.h" // _Py_Union(), _Py_union_type_or +#include "pycore_unionobject.h" // _Py_union_type_or #include "frameobject.h" #include "structmember.h" // PyMemberDef |