Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
08faf0016e1ee590c78f64ddb244767c7801866a
/
Python
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
9229eee
bpo-39877: take_gil() checks tstate_must_exit() twice (GH-18890)
by Victor Stinner
· 5 years ago
b7e9525
bpo-36287: Make ast.dump() not output optional fields and attributes with default values. (GH-18843)
by Serhiy Storchaka
· 5 years ago
85f5a69
bpo-39877: Refactor take_gil() function (GH-18885)
by Victor Stinner
· 5 years ago
111e4ee
bpo-39877: Py_Initialize() pass tstate to PyEval_InitThreads() (GH-18884)
by Victor Stinner
· 5 years ago
3225b9f
bpo-39877: Remove useless PyEval_InitThreads() calls (GH-18883)
by Victor Stinner
· 5 years ago
eebaa9b
bpo-38249: Expand Py_UNREACHABLE() to __builtin_unreachable() in the release mode. (GH-16329)
by Serhiy Storchaka
· 5 years ago
fc72ab6
bpo-38691: importlib ignores PYTHONCASEOK if -E is used (GH-18627)
by idomic
· 5 years ago
28ca43b
closes bpo-39898: Remove unused arg from append_formattedvalue. (GH-18840)
by Andy Lester
· 5 years ago
eb4e2ae
bpo-39877: Fix PyEval_RestoreThread() for daemon threads (GH-18811)
by Victor Stinner
· 5 years ago
d5aa2e9
bpo-39890: Don't mutate the AST when compiling starred assignments (GH-18833)
by Brandt Bucher
· 5 years ago
aa450a0
closes bpo-39886: Remove unused arg from config_get_stdio_errors. (GH-18823)
by Andy Lester
· 5 years ago
ad0c775
closes bpo-39878: Remove unused arguments from static functions. (GH-18822)
by Andy Lester
· 5 years ago
9e5d30c
bpo-39882: Py_FatalError() logs the function name (GH-18819)
by Victor Stinner
· 5 years ago
7b3c252
bpo-39877: _PyRuntimeState.finalizing becomes atomic (GH-18816)
by Victor Stinner
· 5 years ago
5572870
bpo-39573: Use Py_IS_TYPE() macro to check for types (GH-18809)
by Andy Lester
· 5 years ago
9566842
closes bpo-39872: Remove unused args from symtable_exit_block and symtable_visit_annotations. (GH-18800)
by Andy Lester
· 5 years ago
da4d656
closes bpo-39870: Remove unused arg from sys_displayhook_unencodable. (GH-18796)
by Andy Lester
· 5 years ago
efc28bb
Add a comment to _Py_RestoreSignals() (GH-18792)
by Victor Stinner
· 5 years ago
d82e469
bpo-39639: Remove the AST "Suite" node and associated code (GH-18513)
by Batuhan Taşkaya
· 5 years ago
dffe4c0
bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)
by Andy Lester
· 5 years ago
be501ca
bpo-39702: Relax grammar restrictions on decorators (PEP 614) (GH-18570)
by Brandt Bucher
· 5 years ago
ae75a29
bpo-39831: Remove outdated comment. (GH-18764)
by Serhiy Storchaka
· 5 years ago
6daa37f
bpo-38091: Import deadlock detection causes deadlock (GH-17518)
by Armin Rigo
· 5 years ago
b3b9ade
bpo-39776: Lock ++interp->tstate_next_unique_id. (GH-18746) (#18746)
by Stefan Krah
· 5 years ago
2d2f855
bpo-39831: Fix a reference leak in PyErr_WarnEx(). (GH-18750)
by Serhiy Storchaka
· 5 years ago
66b7973
bpo-39796: Fix _warnings module initialization (GH-18739)
by Victor Stinner
· 5 years ago
28d0bca
bpo-38913: Fix segfault in Py_BuildValue("(s#O)", ...) if entered with exception raised. (GH-18656)
by Serhiy Storchaka
· 5 years ago
3fe9117
closes bpo-39803: Remove unused str from _PyLong_FormatAdvancedWriter. (GH-18709)
by Andy Lester
· 5 years ago
185903d
bpo-39520: Fix un-parsing of ext slices with no dimensions (GH-18304)
by Batuhan Taşkaya
· 5 years ago
baf29b2
Reuse identifier of PREDICT macros as PREDICT_ID (GH-17155)
by Denis Chernikov
· 5 years ago
4dee92b
Revert "bpo-38691 Added a switch to ignore PYTHONCASEOK when -E or -I flags passed (#18314)" (GH-18553)
by Victor Stinner
· 5 years ago
1b55b65
bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521)
by Dong-hee Na
· 5 years ago
d83b660
bpo-38691 Added a switch to ignore PYTHONCASEOK when -E or -I flags passed (#18314)
by idomic
· 5 years ago
7386a70
closes bpo-39630: Update pointers to string literals to be const char *. (GH-18510)
by Andy Lester
· 5 years ago
e9e7d28
bpo-35081: Move dtoa.h header to the internal C API (GH-18489)
by Victor Stinner
· 5 years ago
6e619c4
bpo-39474: Fix AST pos for expressions like (a)(b), (a)[b] and (a).b. (GH-18477)
by Serhiy Storchaka
· 5 years ago
8c579b1
bpo-32856: Optimize the assignment idiom in comprehensions. (GH-16814)
by Serhiy Storchaka
· 5 years ago
e6be9b5
closes bpo-39605: Fix some casts to not cast away const. (GH-18453)
by Andy Lester
· 5 years ago
ffd9753
bpo-39245: Switch to public API for Vectorcall (GH-18460)
by Petr Viktorin
· 6 years ago
d2e1098
bpo-39579: Fix Attribute end_col_offset to point at the current node (GH-18405)
by Lysandros Nikolaou
· 6 years ago
60ac6ed
bpo-39573: Use Py_SET_SIZE() function (GH-18402)
by Victor Stinner
· 6 years ago
de6f38d
bpo-39502: Fix 64-bit Python PyTime_localtime() on AIX (GH-18285)
by Michael Felt
· 6 years ago
a102ed7
bpo-39573: Use Py_TYPE() macro in Python and Include directories (GH-18391)
by Victor Stinner
· 6 years ago
a93c51e
bpo-39573: Use Py_REFCNT() macro (GH-18388)
by Victor Stinner
· 6 years ago
d2f9667
bpo-38823: Fix refleaks in _ast initialization error path (GH-17276)
by Brandt Bucher
· 6 years ago
3d06953
bpo-39127: Make _Py_HashPointer's argument be const (GH-17690)
by Andy Lester
· 6 years ago
58f4e1a
bpo-39542: Declare _Py_AddToAllObjects() in pycore_object.h (GH-18368)
by Victor Stinner
· 6 years ago
b439a71
bpo-39553: Delete HAVE_SXS protected code (GH-18356)
by Zackery Spytz
· 6 years ago
4590f72
bpo-38076 Clear the interpreter state only after clearing module globals (GH-18039)
by Eddie Elizondo
· 6 years ago
Next »