Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
refs/tags/v3.9.0a6
/
Python
2510494
bpo-40048: Fix _PyCode_InitOpcache() error path (GH-19691)
by Victor Stinner
· 5 years ago
bc28805
bpo-40334: Use old compiler when compile mode is func_type (GH-19692)
by Guido van Rossum
· 5 years ago
ebebb64
bpo-40334: Improve various PEG-Parser related stuff (GH-19669)
by Lysandros Nikolaou
· 5 years ago
ee40e4b
bpo-40334: Don't downcast from Py_ssize_t to int (GH-19671)
by Pablo Galindo
· 5 years ago
1def775
bpo-40334: Rename PyConfig.use_peg to _use_peg_parser (GH-19670)
by Victor Stinner
· 5 years ago
c5fc156
bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503)
by Pablo Galindo
· 5 years ago
4454057
bpo-39562: Prevent collision of future and compiler flags (GH-19230)
by Batuhan Taşkaya
· 5 years ago
6a9e80a
bpo-40313: speed up bytes.hex() (GH-19594)
by sweeneyde
· 5 years ago
ce57883
Add spaces around the ":=" operator in ast_unparse.c (GH-19568)
by Hakan Çelik
· 5 years ago
1a1bd2e
bpo-40302: Replace PY_INT64_T with int64_t (GH-19573)
by Victor Stinner
· 5 years ago
455df97
Optimize _Py_strhex_impl() (GH-19535)
by Victor Stinner
· 5 years ago
4f98f46
bpo-40268: Remove unused imports in pylifecycle.c (GH-19533)
by Victor Stinner
· 5 years ago
361dcdc
bpo-40268: Remove unused osdefs.h includes (GH-19532)
by Victor Stinner
· 5 years ago
d9ea5ca
bpo-40268: Remove unused pycore_pymem.h includes (GH-19531)
by Victor Stinner
· 5 years ago
4a21e57
bpo-40268: Remove unused structmember.h includes (GH-19530)
by Victor Stinner
· 5 years ago
62183b8
bpo-40268: Remove explicit pythread.h includes (#19529)
by Victor Stinner
· 5 years ago
d01628e
bpo-39481: PEP 585 for dataclasses, mailbox, contextvars (GH-19425)
by Ethan Smith
· 5 years ago
3398646
bpo-39522: Always initialise kind attribute in constant ast nodes (GH-19525)
by Pablo Galindo
· 5 years ago
43aeefa
bpo-39522: Use _PyUnicodeWriter_WriteStr instead of PyUnicode_AS_DATA (GH-19523)
by Batuhan Taşkaya
· 5 years ago
aade1cc
bpo-395222: Correctly unparse unicode prefix in ast_unparse.c (GH-19512)
by Batuhan Taşkaya
· 5 years ago
675d9a3
bpo-40170: Convert PyObject_IS_GC() macro to a function (GH-19464)
by Hai Shi
· 5 years ago
e560f90
bpo-40268: Move struct _gc_runtime_state to pycore_gc.h (GH-19515)
by Victor Stinner
· 5 years ago
62f75fe
bpo-40232: Update PyOS_AfterFork_Child() to use _PyThread_at_fork_reinit() (GH-19450)
by Dong-hee Na
· 5 years ago
e5014be
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
by Victor Stinner
· 5 years ago
81a7be3
bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509)
by Victor Stinner
· 5 years ago
4a3fe08
bpo-40268: Include explicitly pycore_interp.h (GH-19505)
by Victor Stinner
· 5 years ago
258f517
bpo-32894: Support unparsing of infinity numbers in ast_unparser.c (GH-17426)
by Batuhan Taşkaya
· 5 years ago
1c4cbdf
bpo-40268: Add pycore_runtime.h header file (GH-19493)
by Victor Stinner
· 5 years ago
da7933e
bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492)
by Victor Stinner
· 5 years ago
41d5b94
bpo-40246: Report a better error message for invalid string prefixes (GH-19476)
by Lysandros Nikolaou
· 5 years ago
8f87eef
bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (GH-19472)
by Serhiy Storchaka
· 5 years ago
cd8295f
bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data. (GH-19345)
by Serhiy Storchaka
· 5 years ago
b54a99d
bpo-40082: trip_signal() uses the main interpreter (GH-19441)
by Victor Stinner
· 5 years ago
cfc3c2f
bpo-37127: Remove _pending_calls.finishing (GH-19439)
by Victor Stinner
· 5 years ago
dda5d6e
bpo-40226: PyInterpreterState_Delete() deletes pending calls (GH-19436)
by Victor Stinner
· 5 years ago
a15e260
bpo-40170: Add _PyIndex_Check() internal function (GH-19426)
by Victor Stinner
· 5 years ago
87255be
bpo-40089: Add _at_fork_reinit() method to locks (GH-19195)
by Victor Stinner
· 5 years ago
08050e9
bpo-40147: Fix a compiler warning on Windows in Python/compile.c (GH-19389)
by Zackery Spytz
· 5 years ago
1b21573
closes bpo-40184: Only define pysiphash if the hash algorithm is SIPHASH24. (GH-19369)
by Batuhan Taşkaya
· 5 years ago
40cf35c
bpo-40141: Include the value in the column position for keyword AST nodes (GH-19348)
by Pablo Galindo
· 5 years ago
254ec78
bpo-40147: Move the check for duplicate keywords to the compiler (GH-19289)
by Pablo Galindo
· 5 years ago
168660b
bpo-40141: Add line and column information to ast.keyword nodes (GH-19283)
by Pablo Galindo
· 5 years ago
2c003ef
bpo-39943: Clean up marshal.c. (GH-19236)
by Serhiy Storchaka
· 5 years ago
400e1db
Document most common signals (GH-19245)
by Victor Stinner
· 5 years ago
8d84adc
bpo-32591: _PyErr_WarnUnawaitedCoroutine() sets source (GH-19247)
by Victor Stinner
· 5 years ago
fc2d8d6
bpo-39943: Remove unnecessary casts in import.c that remove constness (GH-19209)
by Andy Lester
· 5 years ago
1c1e68c
bpo-38644: Use _PySys_Audit(): pass tstate explicitly (GH-19183)
by Victor Stinner
· 5 years ago
71a3522
bpo-38644: Make tstate more explicit inside pystate.c (GH-19182)
by Victor Stinner
· 5 years ago
7281898
bpo-38644: Pass tstate explicitly in signalmodule.c (GH-19184)
by Victor Stinner
· 5 years ago
08faf00
bpo-38644: Add _PySys_Audit() which takes tstate (GH-19180)
by Victor Stinner
· 5 years ago
79ceccd
bpo-38410: Properly handle PySys_Audit() failures (GH-16657)
by Zackery Spytz
· 5 years ago
cb6534e
bpo-40067: Improve error messages for multiple star expressions in assignments (GH-19168)
by Furkan Önder
· 5 years ago
5c3cda0
bpo-39947: Add PyThreadState_GetID() function (GH-19163)
by Victor Stinner
· 5 years ago
0e427c6
bpo-39947: Add _PyThreadState_GetDict() function (GH-19160)
by Victor Stinner
· 5 years ago
87d3b9d
bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157)
by Victor Stinner
· 5 years ago
7668a8b
Use calloc-based functions, not malloc. (GH-19152)
by Andy Lester
· 5 years ago
83d46e0
bpo-40050: Fix importlib._bootstrap_external (GH-19135)
by Victor Stinner
· 5 years ago
5804f87
bpo-20526: Fix PyThreadState_Clear(): don't decref frame (GH-19120)
by Victor Stinner
· 5 years ago
bace59d
bpo-39999: Improve compatibility of the ast module. (GH-19056)
by Serhiy Storchaka
· 5 years ago
044cf94
bpo-22490: Remove __PYVENV_LAUNCHER__ from environment during launch (GH-9516)
by Ronald Oussoren
· 5 years ago
05e4a29
bpo-40024: Add PyModule_AddType() helper function (GH-19088)
by Dong-hee Na
· 5 years ago
6723e93
bpo-39946: Remove _PyThreadState_GetFrame (GH-19094)
by Victor Stinner
· 5 years ago
fd1e1a1
bpo-39947: Add PyThreadState_GetFrame() function (GH-19092)
by Victor Stinner
· 5 years ago
d831688
bpo-40010: Optimize pending calls in multithreaded applications (GH-19091)
by Victor Stinner
· 5 years ago
d2a8e5b
bpo-40010: COMPUTE_EVAL_BREAKER() checks for subinterpreter (GH-19087)
by Victor Stinner
· 5 years ago
da2914d
bpo-40010: Pass tstate to ceval GIL functions (GH-19077)
by Victor Stinner
· 5 years ago
a36adfa
bpo-39877: 4th take_gil() fix for daemon threads (GH-19080)
by Victor Stinner
· 5 years ago
5a3a71d
bpo-40010: Optimize signal handling in multithreaded applications (GH-19067)
by Victor Stinner
· 5 years ago
9052f7a
bpo-39562: Allow executing asynchronous comprehensions in the asyncio REPL (GH-18968)
by Batuhan Taşkaya
· 5 years ago
0ac59f9
bpo-40000: Improve error messages when validating invalid ast.Constant nodes (GH-19055)
by Batuhan Taşkaya
· 5 years ago
50e6e99
bpo-39984: Move pending calls to PyInterpreterState (GH-19066)
by Victor Stinner
· 5 years ago
d112c60
bpo-39220: Do not optimise annotation if 'from __future__ import annotations' is used (GH-17866)
by Pablo Galindo
· 5 years ago
8849e59
bpo-39984: trip_signal() uses PyGILState_GetThisThreadState() (GH-19061)
by Victor Stinner
· 5 years ago
56bfdeb
bpo-39984: Pass tstate to _PyEval_SignalAsyncExc() (GH-19049)
by Victor Stinner
· 5 years ago
29356e0
bpo-39877: Fix take_gil() for daemon threads (GH-19054)
by Victor Stinner
· 5 years ago
23ef89d
bpo-39984: _PyThreadState_DeleteCurrent() takes tstate (GH-19051)
by Victor Stinner
· 5 years ago
d7fabc1
bpo-39984: Pass tstate to handle_signals() (GH-19050)
by Victor Stinner
· 5 years ago
6b97598
bpo-39988: Remove ast.AugLoad and ast.AugStore node classes. (GH-19038)
by Serhiy Storchaka
· 5 years ago
dab8423
bpo-39984: Add PyInterpreterState.ceval (GH-19047)
by Victor Stinner
· 5 years ago
61cb3d0
bpo-39987: Simplify setting lineno in the compiler. (GH-19037)
by Serhiy Storchaka
· 5 years ago
f6a5850
bpo-35370: PyEval_SetTrace() logs unraisable error (GH-18977)
by Victor Stinner
· 5 years ago
87ec86c
bpo-37207: Add _PyArg_NoKwnames() helper function (GH-18980)
by Dong-hee Na
· 5 years ago
4ab362c
bpo-39638: Keep ASDL signatures in the AST nodes (GH-18515)
by Batuhan Taşkaya
· 5 years ago
8689209
bpo-39969: Remove ast.Param node class as is no longer used (GH-19020)
by Batuhan Taşkaya
· 5 years ago
9023581
bpo-39965: Correctly raise SyntaxError if await is used outside async functions when PyCF_ALLOW_TOP_LEVEL_AWAIT is set (GH-19010)
by Pablo Galindo
· 5 years ago
57c7810
bpo-39585: Delete a pending comment in _warning.c (GH-18414)
by Hai Shi
· 5 years ago
8fb02b6
bpo-39947: Add PyThreadState_GetInterpreter() (GH-18981)
by Victor Stinner
· 5 years ago
be79373
bpo-39947: Add PyInterpreterState_Get() function (GH-18979)
by Victor Stinner
· 5 years ago
ff4584c
bpo-39947: Use _PyInterpreterState_GET_UNSAFE() (GH-18978)
by Victor Stinner
· 5 years ago
309d7cc
bpo-35370: Add _PyEval_SetTrace() function (GH-18975)
by Victor Stinner
· 5 years ago
0b72b23
bpo-38500: Add _PyInterpreterState_SetEvalFrameFunc() (GH-17340)
by Victor Stinner
· 5 years ago
75cd5bf
Remove unused args from two pylifecycle.c functions (GH-18867)
by Andy Lester
· 5 years ago
64838ce
bpo-39847: EnterNonRecursiveMutex() uses GetTickCount64() (GH-18780)
by bobince
· 5 years ago
76d5877
closes bpo-39922: Remove unused args from four functions. (GH-18893)
by Andy Lester
· 5 years ago
4e53abb
bpo-38631: _PyGILState_Init() returns PyStatus (GH-18908)
by Victor Stinner
· 5 years ago
13d52c2
bpo-34822: Simplify AST for subscription. (GH-9605)
by Serhiy Storchaka
· 5 years ago
8510f43
bpo-1294959: Add sys.platlibdir attribute (GH-18381)
by Victor Stinner
· 5 years ago
b4698ec
bpo-39877: Deprecate PyEval_InitThreads() (GH-18892)
by Victor Stinner
· 5 years ago
175a704
bpo-39877: PyGILState_Ensure() don't call PyEval_InitThreads() (GH-18891)
by Victor Stinner
· 5 years ago
9ad58ac
bpo-19466: Py_Finalize() clears daemon threads earlier (GH-18848)
by Victor Stinner
· 5 years ago
Next »