diff options
author | Maggie Moss <MaggieMoss@users.noreply.github.com> | 2020-09-09 20:23:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-09 20:23:24 (GMT) |
commit | 1b4552c5e8e925f24c15f707050f22c977171125 (patch) | |
tree | 15102b9c349e4cde9904a1eb3ec1cf3099b877bc /Makefile.pre.in | |
parent | fa8c9e70104b0aef966a518eb3a80a4881906ae0 (diff) | |
download | cpython-1b4552c5e8e925f24c15f707050f22c977171125.zip cpython-1b4552c5e8e925f24c15f707050f22c977171125.tar.gz cpython-1b4552c5e8e925f24c15f707050f22c977171125.tar.bz2 |
bpo-41428: Implementation for PEP 604 (GH-21515)
See https://www.python.org/dev/peps/pep-0604/ for more information.
Co-authored-by: Pablo Galindo <pablogsal@gmail.com>
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 5d3ac70..921bd08 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -432,6 +432,7 @@ OBJECT_OBJS= \ Objects/typeobject.o \ Objects/unicodeobject.o \ Objects/unicodectype.o \ + Objects/unionobject.o \ Objects/weakrefobject.o ########################################################################## @@ -1128,6 +1129,7 @@ PYTHON_HEADERS= \ $(srcdir)/Include/internal/pycore_sysmodule.h \ $(srcdir)/Include/internal/pycore_traceback.h \ $(srcdir)/Include/internal/pycore_tuple.h \ + $(srcdir)/Include/internal/pycore_unionobject.h \ $(srcdir)/Include/internal/pycore_warnings.h \ $(DTRACE_HEADERS) |