summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Collapse)AuthorAgeFilesLines
* Python 3.8.9v3.8.9Łukasz Langa2021-04-021-2/+2
|
* Post 3.8.8Łukasz Langa2021-02-191-1/+1
|
* Python 3.8.8v3.8.8Łukasz Langa2021-02-191-3/+3
|
* Post 3.8.8rc1Łukasz Langa2021-02-161-1/+1
|
* Python 3.8.8rc1v3.8.8rc1Łukasz Langa2021-02-161-4/+4
|
* bpo-43030: Fixed a compiler warning in Py_UNICODE_ISSPACE with signed ↵Miss Islington (bot)2021-01-311-1/+1
| | | | | | | | wchar_t (GH-24350) (GH-24397) (cherry picked from commit 42b1806af90b86ec393ca7da14e99ce95ec6c53b) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* [3.8] bpo-40052: Fix alignment issue in PyVectorcall_Function() (GH-23999) ↵Petr Viktorin2021-01-121-3/+3
| | | | | | | | | | (GH-24120) Co-Authored-By: Andreas Schneider <asn@cryptomilk.org> Co-Authored-By: Antoine Pitrou <antoine@python.org>. Co-authored-by: Petr Viktorin <encukou@gmail.com> (cherry picked from commit 056c08211b402b4dbc1530a9de9d00ad5309909f) https://bugs.python.org/issue40052
* Post 3.8.7Łukasz Langa2020-12-211-1/+1
|
* Python 3.8.7v3.8.7Łukasz Langa2020-12-211-3/+3
|
* Post 3.8.7rc1Łukasz Langa2020-12-081-1/+1
|
* Python 3.8.7rc1v3.8.7rc1Łukasz Langa2020-12-071-4/+4
|
* bpo-41686: Always create the SIGINT event on Windows (GH-23344) (GH-23347) ↵Victor Stinner2020-11-171-0/+2
| | | | | | | | | | (GH-23349) bpo-41686, bpo-41713: On Windows, the SIGINT event, _PyOS_SigintEvent(), is now created even if Python is configured to not install signal handlers (PyConfig.install_signal_handlers=0 or Py_InitializeEx(0)). (cherry picked from commit 05a5d697f4f097f37c5c1e2ed0e2338a33c3fb6a)
* bpo-41986: Add Py_FileSystemDefaultEncodeErrors and Py_UTF8Mode back to ↵Miss Skeleton (bot)2020-10-102-8/+7
| | | | | | | limited API (GH-22621) (cherry picked from commit 637a09b0d6e3ad4e34e0b5e0fc82f5afeae6f74b) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* Post 3.8.6Łukasz Langa2020-09-241-1/+1
|
* Python 3.8.6v3.8.6Łukasz Langa2020-09-231-3/+3
|
* Post 3.8.6rc1Łukasz Langa2020-09-081-1/+1
|
* Python 3.8.6rc1v3.8.6rc1Łukasz Langa2020-09-071-4/+4
|
* bpo-41098: Doc: Add missing deprecated directives (GH-21162)Miss Islington (bot)2020-08-071-2/+8
| | | | | | | PyUnicodeEncodeError_Create has been deprecated with `Py_DEPRECATED` macro. But it was not documented. (cherry picked from commit 46e19b61d31ba99f049258efa4ff1334856a3643) Co-authored-by: Inada Naoki <songofacandy@gmail.com>
* Post 3.8.5Łukasz Langa2020-07-201-1/+1
|
* Python 3.8.5v3.8.5Łukasz Langa2020-07-201-2/+2
| | | | Contains security fixes for CVE-2019-20907, CVE-2020-15801, and BPO-39603.
* Post 3.8.4Łukasz Langa2020-07-131-1/+1
|
* Python 3.8.4v3.8.4Łukasz Langa2020-07-131-3/+3
|
* Post 3.8.4rc1Łukasz Langa2020-06-301-1/+1
|
* Python 3.8.4rc1v3.8.4rc1Łukasz Langa2020-06-291-4/+4
|
* [3.9] bpo-40826: Fix GIL usage in PyOS_Readline() (GH-20613) (GH-20616)Victor Stinner2020-06-031-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | * bpo-40826: Fix GIL usage in PyOS_Readline() (GH-20579) Fix GIL usage in PyOS_Readline(): lock the GIL to set an exception. Pass tstate to my_fgets() and _PyOS_WindowsConsoleReadline(). Cleanup these functions. (cherry picked from commit c353764fd564e401cf47a5d9efab18c72c60014e) * bpo-40826: Add _PyOS_InterruptOccurred(tstate) function (GH-20599) my_fgets() now calls _PyOS_InterruptOccurred(tstate) to check for pending signals, rather calling PyOS_InterruptOccurred(). my_fgets() is called with the GIL released, whereas PyOS_InterruptOccurred() must be called with the GIL held. test_repl: use text=True and avoid SuppressCrashReport in test_multiline_string_parsing(). Fix my_fgets() on Windows: fgets(fp) does crash if fileno(fp) is closed. (cherry picked from commit fa7ab6aa0f9a4f695e5525db5a113cd21fa93787)
* Post 3.8.3Łukasz Langa2020-05-131-1/+1
|
* Python 3.8.3v3.8.3Łukasz Langa2020-05-131-3/+3
|
* [3.8] bpo-39562: Prevent collision of future and compiler flags (GH-19230) ↵Pablo Galindo2020-05-012-13/+19
| | | | | | | | | | | (GH-19835) The constant values of future flags in the __future__ module is updated in order to prevent collision with compiler flags. Previously PyCF_ALLOW_TOP_LEVEL_AWAIT was clashing with CO_FUTURE_DIVISION.. (cherry picked from commit 4454057269b995341b04d13f0bf97f96080f27d0) Co-authored-by: Batuhan Taşkaya <batuhanosmantaskaya@gmail.com>
* Post 3.8.3rc1Łukasz Langa2020-04-291-1/+1
|
* Python 3.8.3rc1v3.8.3rc1Łukasz Langa2020-04-291-4/+4
|
* Remove extraneous ')' in abstract.h (GH-19146) (#19451)Miss Islington (bot)2020-04-091-1/+1
| | | | | | (cherry picked from commit ac2cfe6631b77a2005d8f16f034dbb6154f04ab2) Co-authored-by: Jimmy Yang <codingExpert123@gmail.com>
* bpo-20526: Fix PyThreadState_Clear(): don't decref frame (GH-19120) (GH-19136)Victor Stinner2020-03-241-0/+1
| | | | | | | | | | PyThreadState.frame is a borrowed reference, not a strong reference: PyThreadState_Clear() must not call Py_CLEAR(tstate->frame). Remove test_threading.test_warnings_at_exit(): we cannot warranty that the Python thread state of daemon threads is cleared in a reliable way during Python shutdown. (cherry picked from commit 5804f878e779712e803be927ca8a6df389d82cdf)
* Post 3.8.2Łukasz Langa2020-02-251-1/+1
|
* Python 3.8.2v3.8.2Łukasz Langa2020-02-241-3/+3
|
* Post 3.8.2rc2Łukasz Langa2020-02-181-1/+1
|
* Python 3.8.2rc2v3.8.2rc2Łukasz Langa2020-02-171-2/+2
|
* Post 3.8.2rc1Łukasz Langa2020-02-111-1/+1
|
* Python 3.8.2rc1v3.8.2rc1Łukasz Langa2020-02-101-4/+4
|
* Post 3.8.1Łukasz Langa2019-12-191-1/+1
|
* Python 3.8.1v3.8.1Łukasz Langa2019-12-181-3/+3
|
* Post 3.8.1rc1Łukasz Langa2019-12-101-1/+1
|
* Python 3.8.1rc1v3.8.1rc1Łukasz Langa2019-12-091-4/+4
|
* [3.8] bpo-38600: Change the mark up of NULL in the C API documentation. ↵Serhiy Storchaka2019-10-301-3/+3
| | | | | | | (GH-16950) (GH-16999) Replace all *NULL* with ``NULL``. (cherry picked from commit 25fc088607c855060ed142296dc1bd0125fad1af)
* [3.8] bpo-36389: Backport debug enhancements from master (GH-16796)Victor Stinner2019-10-151-4/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * bpo-36389: _PyObject_CheckConsistency() available in release mode (GH-16612) bpo-36389, bpo-38376: The _PyObject_CheckConsistency() function is now also available in release mode. For example, it can be used to debug a crash in the visit_decref() function of the GC. Modify the following functions to also work in release mode: * _PyDict_CheckConsistency() * _PyObject_CheckConsistency() * _PyType_CheckConsistency() * _PyUnicode_CheckConsistency() Other changes: * _PyMem_IsPtrFreed(ptr) now also returns 1 if ptr is NULL (equals to 0). * _PyBytesWriter_CheckConsistency() now returns 1 and is only used with assert(). * Reorder _PyObject_Dump() to write safe fields first, and only attempt to render repr() at the end. (cherry picked from commit 6876257eaabdb30f27ebcbd7d2557278ce2e5705) * bpo-36389: Fix _PyBytesWriter in release mode (GH-16624) Fix _PyBytesWriter API when Python is built in release mode with assertions. (cherry picked from commit 60ec6efd96d95476fe5e38c491491add04f026e5) * bpo-38070: Enhance visit_decref() debug trace (GH-16631) subtract_refs() now pass the parent object to visit_decref() which pass it to _PyObject_ASSERT(). So if the "is freed" assertion fails, the parent is used in debug trace, rather than the freed object. The parent object is more likely to contain useful information. Freed objects cannot be inspected are are displayed as "<object at xxx is freed>" with no other detail. (cherry picked from commit 4d5f94b8cd20f804c7868c5395a15aa6032f874c) * Fix also a typo in PYMEM_DEADBYTE macro comment * bpo-36389: Add newline to _PyObject_AssertFailed() (GH-16629) Add a newline between the verbose object dump and the Py_FatalError() logs for readability. (cherry picked from commit 7775349895088a7ae68cecf0c74cf817f15e2c74)
* Post v3.8.0Łukasz Langa2019-10-141-1/+1
|
* v3.8.0v3.8.0Łukasz Langa2019-10-141-3/+3
|
* bpo-38376: Fix _PyUnicode_CheckConsistency() definition (GH-16623)Victor Stinner2019-10-073-11/+4
| | | Always define _PyUnicode_CheckConsistency() in the CPython C API.
* Post v3.8.0rc1Łukasz Langa2019-10-011-1/+1
|
* v3.8.0rc1v3.8.0rc1Łukasz Langa2019-10-011-3/+3
|
* bpo-38304: PyConfig_InitPythonConfig() cannot fail anymore (GH-16509)Miss Islington (bot)2019-10-012-3/+3
| | | | | | | PyConfig_InitPythonConfig() and PyConfig_InitIsolatedConfig() no longer return PyStatus: they cannot fail anymore. (cherry picked from commit 8462a4936b3a551dc546a6adea04a70b0a07ca67) Co-authored-by: Victor Stinner <vstinner@redhat.com>