cpython/Python
Miss Islington (bot) 92135775ce
Fix compiler warning on Windows (GH-18012)
Python-ast.h contains a macro named Yield that conflicts with the Yield macro
in Windows system headers. While Python-ast.h has an "undef Yield" directive
to prevent this, it means that Python-ast.h must be included before Windows
header files or we run into a re-declaration warning. In commit c96be811fa
an include for pycore_pystate.h was added which indirectly includes Windows
header files. In this commit we re-order the includes to fix this warning.
(cherry picked from commit e92d39303f)

Co-authored-by: Ammar Askar <ammar@ammaraskar.com>
2020-01-15 09:07:09 -08:00
..
clinic bpo-38237: Shorter docstring (GH-16322) (GH-16323) 2019-09-21 13:32:07 -07:00
Python-ast.c bpo-38425: Fix ‘res’ may be used uninitialized warning (GH-16688) 2019-10-10 01:00:19 -07:00
README
_warnings.c Fix typo in _warnings.warn_explicit() docstring (GH-16625) 2019-10-08 02:16:06 -07:00
asdl.c
ast.c bpo-39235: Fix end location for genexp in call args (GH-17925) 2020-01-09 11:39:00 -08:00
ast_opt.c Fix constant folding optimization for positional only arguments (GH-17837) 2020-01-05 09:21:47 -08:00
ast_unparse.c bpo-37050: Remove expr_text from FormattedValue ast node, use Constant node instead (GH-13597) 2019-05-27 15:31:52 -04:00
bltinmodule.c Correct signature of __build_class__ (GH-16735) 2019-10-13 08:53:54 -07:00
bootstrap_hash.c bpo-36763: Implement the PEP 587 (GH-13592) 2019-05-27 16:39:22 +02:00
ceval.c bpo-38090: Fix reference leak in ceval.c (GH-15848) 2019-09-10 15:31:07 +01:00
ceval_gil.h Revert "bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-13714)" (GH-13780) 2019-06-03 18:14:24 +02:00
codecs.c
compile.c Fix compiler warning on Windows (GH-18012) 2020-01-15 09:07:09 -08:00
condvar.h [3.8] Typo fix: "throuhgh" should be "through". (GH-16713) 2019-10-10 21:02:38 -07:00
context.c bpo-38979: fix ContextVar "__class_getitem__" method (GH-17497) 2019-12-08 04:49:07 -08:00
dtoa.c
dup2.c
dynamic_annotations.c
dynload_aix.c
dynload_dl.c
dynload_hpux.c bpo-36900: Fix compilation on HP-UX (GH-13614) 2019-05-28 12:24:00 +02:00
dynload_shlib.c
dynload_stub.c
dynload_win.c bpo-28269: Replace strcasecmp with system function _stricmp. (GH-13095) 2019-08-24 03:22:14 -07:00
errors.c bpo-38920: Add audit hooks for when sys.excepthook and sys.unraisablehook are invoked (GH-17392) 2019-11-28 08:46:23 -08:00
fileutils.c bpo-37549: os.dup() fails for standard streams on Windows 7 (GH-15389) 2019-08-23 12:04:27 -07:00
formatter_unicode.c Fix typo in formatter_unicode (GH-16831) 2019-10-25 10:03:23 -07:00
frozen.c bpo-36540: PEP 570 -- Implementation (GH-12701) 2019-04-29 13:36:57 +01:00
frozenmain.c bpo-38304: PyConfig_InitPythonConfig() cannot fail anymore (GH-16509) 2019-10-01 03:26:04 -07:00
future.c
getargs.c bpo-38540: Fix possible leak in PyArg_Parse for "esGH-" and "etGH-". (GH-16869) 2019-10-21 02:12:37 -07:00
getcompiler.c
getcopyright.c Bring Python into the next decade. (GH-17801) 2020-01-02 19:15:37 -08:00
getopt.c bpo-36763: Cleanup precmdline in _PyCoreConfig_Read() (GH-13371) 2019-05-17 03:15:12 +02:00
getplatform.c
getversion.c
graminit.c bpo-35814: Allow unpacking in r.h.s of annotated assignment expressions (GH-13760) 2019-06-03 08:34:20 +01:00
hamt.c closes bpo-37446: resolve undefined behavior in Python/hamt.c (GH-17727) 2019-12-30 18:51:18 -08:00
import.c [3.8] bpo-37409: fix relative import with no parent (GH-14956) (GH-15913) 2019-09-11 12:38:22 +01:00
importdl.c bpo-36842: Implement PEP 578 (GH-12613) 2019-05-23 08:45:22 -07:00
importdl.h
importlib.h [3.8] bpo-37830: Fix compilation of break and continue in finally. (GH-15320) (GH-15456) 2019-08-24 13:41:53 +03:00
importlib_external.h [3.8] bpo-38121: Sync importlib.metadata with 0.22 backport (GH-15993) (GH-16064) 2019-09-12 16:41:31 +01:00
importlib_zipimport.h [3.8] bpo-39033: Fix NameError in zipimport during hash validation (GH-17588) (GH-17642) 2020-01-14 03:39:19 -08:00
initconfig.c Add PYTHONUTF8 to commandline usage. (GH-17587) 2019-12-14 19:38:35 +09:00
makeopcodetargets.py
marshal.c bpo-38823: Fix refleak in marshal init error path (GH-17260) 2019-11-20 02:16:02 -08:00
modsupport.c
mysnprintf.c
mystrtoul.c
opcode_targets.h
pathconfig.c bpo-29778: Fix incorrect NULL check in _PyPathConfig_InitDLLPath() (GH-17818) 2020-01-06 09:17:36 -08:00
peephole.c Fix unused variable and signed/unsigned warnings (GH-15537) (GH-15551) 2019-08-27 10:13:52 -07:00
preconfig.c bpo-38304: Remove PyConfig.struct_size (GH-16500) 2019-10-01 08:46:42 +10:00
pyarena.c
pyctype.c
pyfpe.c
pyhash.c
pylifecycle.c bpo-38304: PyConfig_InitPythonConfig() cannot fail anymore (GH-16509) 2019-10-01 03:26:04 -07:00
pymath.c
pystate.c bpo-38304: PyConfig_InitPythonConfig() cannot fail anymore (GH-16509) 2019-10-01 03:26:04 -07:00
pystrcmp.c
pystrhex.c Fix unused variable and signed/unsigned warnings (GH-15537) (GH-15551) 2019-08-27 10:13:52 -07:00
pystrtod.c bpo-27268: Fix incorrect error message on float('') (GH-2745) 2019-05-17 18:32:44 -04:00
pythonrun.c bpo-38920: Add audit hooks for when sys.excepthook and sys.unraisablehook are invoked (GH-17392) 2019-11-28 08:46:23 -08:00
pytime.c
strdup.c
structmember.c
symtable.c Fix SystemError when nested function has annotation on positional-only argument (GH-17826) 2020-01-04 18:14:58 -08:00
sysmodule.c bpo-39008: Require Py_ssize_t for PySys_Audit formats rather than raise a deprecation warning (GH-17540) 2019-12-09 11:22:30 -08:00
thread.c bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895) (GH-15961) 2019-09-11 19:50:29 -07:00
thread_nt.h bpo-36084: Add native thread ID (TID) to threading.Thread (GH-13463) 2019-05-22 17:43:16 +02:00
thread_pthread.h bpo-18049: Define THREAD_STACK_SIZE for AIX to pass default recursion limit test (GH-15081) 2019-08-28 22:35:41 -07:00
traceback.c [3.8] bpo-38070: Py_FatalError() logs runtime state (GH-16258) 2019-09-18 14:10:16 +02:00
wordcode_helpers.h

README

Miscellaneous source files for the main Python shared library