Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
66da347ef0034ad9bddc7fad112025c886249f0d
/
Python
a0d4aac
[3.8] bpo-38121: Sync importlib.metadata with 0.22 backport (GH-15993) (GH-16064)
by Jason R. Coombs
· 6 years ago
2bb6bf0
bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895) (GH-15961)
by Paul Ganssle
· 6 years ago
a5a7102
closes bpo-38124: Fix bounds check in PyState_AddModule. (GH-16007)
by Miss Islington (bot)
· 6 years ago
0a6693a
[3.8] bpo-37409: fix relative import with no parent (GH-14956) (GH-15913)
by Brett Cannon
· 6 years ago
97c2f68
[3.8] bpo-38086: Sync importlib.metadata with importlib_metadata 0.21. (GH-15840) (#15861)
by Jason R. Coombs
· 6 years ago
45bc392
bpo-38090: Fix reference leak in ceval.c (GH-15848)
by Miss Islington (bot)
· 6 years ago
2d5594f
bpo-20490: Improve circular import error message (GH-15308)
by Steve Dower
· 6 years ago
353053d
[3.8] bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630) (GH-15635)
by Serhiy Storchaka
· 6 years ago
4bd1d05
Fix typos mostly in comments, docs and test names (GH-15209)
by Miss Islington (bot)
· 6 years ago
27f4186
bpo-37976: Prevent shadowing of TypeError in zip() (GH-15592) (GH-15608)
by Miss Islington (bot)
· 6 years ago
96631dc
[3.8] bpo-37034: Display argument name on errors with keyword arguments with Argument Clinic. (GH-13593). (GH-15599)
by Serhiy Storchaka
· 6 years ago
384c6d7
bpo-37947: Avoid double-decrement in symtable recursion counting (GH-15593)
by Miss Islington (bot)
· 6 years ago
f92bb6e
bpo-18049: Define THREAD_STACK_SIZE for AIX to pass default recursion limit test (GH-15081)
by Miss Islington (bot)
· 6 years ago
d5ba8bb
Fix unused variable and signed/unsigned warnings (GH-15537) (GH-15551)
by Miss Islington (bot)
· 6 years ago
ed8af33
bpo-37954: Fix reference leak in the symtable (GH-15514)
by Miss Islington (bot)
· 6 years ago
3769425
[3.8] bpo-37947: Adjust correctly the recursion level in symtable for named expressions (GH-15499) (GH-15515)
by Pablo Galindo
· 6 years ago
6ca0307
[3.8] bpo-37757: Disallow PEP 572 cases that expose implementation details (GH-15491)
by Nick Coghlan
· 6 years ago
21161d7
[3.8] bpo-37942: Improve argument clinic float converter (GH-15470) (GH-15480)
by Raymond Hettinger
· 6 years ago
ed146b5
[3.8] bpo-37830: Fix compilation of break and continue in finally. (GH-15320) (GH-15456)
by Serhiy Storchaka
· 6 years ago
920ec4b
bpo-28269: Replace strcasecmp with system function _stricmp. (GH-13095)
by Miss Islington (bot)
· 6 years ago
076d0b9
bpo-29535: Remove promize about hash randomization of datetime objects. (GH-15269)
by Miss Islington (bot)
· 6 years ago
af84a88
bpo-36763: PyConfig_Read() handles PySys_AddXOption() (GH-15431) (GH-15435)
by Victor Stinner
· 6 years ago
3921d12
bpo-37549: os.dup() fails for standard streams on Windows 7 (GH-15389)
by Miss Islington (bot)
· 6 years ago
a6427cb
bpo-36763: Implement PyWideStringList_Insert() of PEP 587 (GH-15423)
by Miss Islington (bot)
· 6 years ago
ca9ae94
bpo-37926: Fix PySys_SetArgvEx(0, NULL, 0) crash (GH-15415) (GH-15420)
by Victor Stinner
· 6 years ago
9eb3d54
bpo-37834: Normalise handling of reparse points on Windows (GH-15370)
by Steve Dower
· 6 years ago
786a4e1
bpo-36266: Add module name in ImportError when DLL not found on Windows (GH-15180)
by Miss Islington (bot)
· 6 years ago
4c5b6ba
[3.8] bpo-32912: Revert SyntaxWarning on invalid escape sequences (GH-15142)
by Serhiy Storchaka
· 6 years ago
8399641
bpo-18049: Sync thread stack size to main thread size on macOS (GH-14748)
by Miss Islington (bot)
· 6 years ago
9ea738e
bpo-37500: Make sure dead code does not generate bytecode but also detect syntax errors (GH-14612)
by Miss Islington (bot)
· 6 years ago
f96334c
bpo-37697: Sync with importlib_metadata 0.19 (GH-14993) (GH-14995)
by Miss Islington (bot)
· 6 years ago
bf8e82f
[3.8] bpo-36974: separate vectorcall functions for each calling convention (GH-13781) (#14782)
by Jeroen Demeyer
· 6 years ago
24b5b36
[3.8] Fix typos in docs, comments and test assert messages (GH-14872). (#14900)
by Kyle Stanley
· 6 years ago
3015191
Adjust builtins.zip() docstring to better communicate its signature (GH-14833)
by Miss Islington (bot)
· 6 years ago
cf9a63c
bpo-37593: Swap the positions of posonlyargs and args in the constructor of ast.parameters nodes (GH-14778)
by Miss Islington (bot)
· 6 years ago
c7be35c
bpo-18374: fix wrong col_offset of some ast.BinOp instances (GH-14607)
by Miss Islington (bot)
· 6 years ago
96f581c
bpo-36763: Add PyConfig_SetWideStringList() (GH-14444)
by Miss Islington (bot)
· 6 years ago
2683ded
bpo-37467: Fix PyErr_Display() for bytes filename (GH-14504)
by Miss Islington (bot)
· 6 years ago
cb083f7
bpo-37221: Add PyCode_NewWithPosOnlyArgs to be used internally and set PyCode_New as a compatibility wrapper (GH-13959) (#14505)
by Miss Islington (bot)
· 6 years ago
323e743
bpo-37369: Fix initialization of sys members when launched via an app container (GH-14467)
by Steve Dower
· 6 years ago
8763d43
bpo-37363: Add audit events for a range of modules (GH-14301)
by Miss Islington (bot)
· 6 years ago
175b2e9
bpo-35224: Bump the pyc magic number by 1 instead of by 10 in last modification (GH-14320)
by Miss Islington (bot)
· 6 years ago
5c8b4e2
bpo-35224: Bump the pyc magic number after the change in MAP_ADD (GH-14313)
by Miss Islington (bot)
· 6 years ago
874ff65
bpo-35224: Reverse evaluation order of key: value in dict comprehensions (GH-14139)
by Miss Islington (bot)
· 6 years ago
6c79477
bpo-37316: mmap.mmap() passes the wrong variable to PySys_Audit() (GH-14152)
by Steve Dower
· 6 years ago
693945d
bpo-37267: Do not check for FILE_TYPE_CHAR in os.dup() on Windows (GH-14051) (GH-14140)
by Miss Islington (bot)
· 6 years ago
284daea
bpo-37289: Remove 'if False' handling in the peephole optimizer (GH-14099) (GH-14112)
by Miss Islington (bot)
· 6 years ago
7cd581a
bpo-37269: Correctly optimise conditionals with constant booleans (GH-14071)
by Miss Islington (bot)
· 6 years ago
886d83e
bpo-37077: Add native thread ID (TID) for AIX (GH-13624)
by Miss Islington (bot)
· 6 years ago
5282b3b
bpo-37213: Handle negative line deltas correctly in the peephole optimizer (GH-13969)
by Miss Islington (bot)
· 6 years ago
032bf30
bpo-37253: Remove PyAST_obj2mod_ex() function (GH-14020)
by Miss Islington (bot)
· 6 years ago
92e836c
bpo-37253: Add _PyCompilerFlags_INIT macro (GH-14018)
by Miss Islington (bot)
· 6 years ago
c9ca96d
bpo-37160: Thread native ID NetBSD support (GH-13835)
by Miss Islington (bot)
· 6 years ago
b2fd32b
bpo-35766: compile(): rename feature_version parameter (GH-13994) (GH-14001)
by Victor Stinner
· 6 years ago
0fd2c30
Revert "bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)" (GH-13795)
by Victor Stinner
· 6 years ago
eddef86
bpo-37146: disable opcache when Py_DEBUG is defined (GH-13787)
by Inada Naoki
· 6 years ago
e225beb
Revert "bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-13714)" (GH-13780)
by Victor Stinner
· 6 years ago
0b9956e
bpo-37087: Adding native ID support for OpenBSD (GH-13654)
by David Carlier
· 6 years ago
395420e
bpo-26219: remove unused code (GH-13775)
by Inada Naoki
· 6 years ago
91234a1
bpo-26219: per opcode cache for LOAD_GLOBAL (GH-12884)
by Inada Naoki
· 6 years ago
8565f6b
bpo-35814: Allow unpacking in r.h.s of annotated assignment expressions (GH-13760)
by Pablo Galindo
· 6 years ago
6a150bc
bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-13714)
by Eric Snow
· 6 years ago
938d9a0
Fix compiler warnings in the pystrehex module (GH-13730)
by Pablo Galindo
· 6 years ago
cd74e66
bpo-37122: Make co->co_argcount represent the total number of positonal arguments in the code object (GH-13726)
by Pablo Galindo
· 6 years ago
396e0a8
bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)
by Eric Snow
· 6 years ago
a0c01bf
bpo-37115: Support annotations in positional-only arguments (GH-13698)
by Pablo Galindo
· 6 years ago
2f58a84
bpo-37112: Allow compile to work on AST with positional only arguments with defaults (GH-13697)
by Pablo Galindo
· 6 years ago
530f506
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464)
by Jeroen Demeyer
· 6 years ago
37788bc
bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653)
by Jeroen Demeyer
· 6 years ago
249b7d5
bpo-20602: Do not clear sys.flags and sys.float_info during shutdown (GH-8096)
by Zackery Spytz
· 6 years ago
0c2f930
bpo-22385: Support output separators in hex methods. (#13578)
by Gregory P. Smith
· 6 years ago
aacc77f
bpo-36974: implement PEP 590 (GH-13185)
by Jeroen Demeyer
· 6 years ago
f83d1db
bpo-37070: Cleanup fstring debug handling (GH-13607)
by Eric V. Smith
· 6 years ago
77f0ed7
bpo-37072: Fix crash in PyAST_FromNodeObject() when flags is NULL (#13634)
by Guido van Rossum
· 6 years ago
4154069
bpo-37001: Makes symtable.symtable have parity with compile for input (#13483)
by Dino Viehland
· 6 years ago
a85a1d3
bpo-36829: sys.excepthook and sys.unraisablehook flush (GH-13620)
by Victor Stinner
· 6 years ago
9ea277a
bpo-36900: Fix compilation on HP-UX (GH-13614)
by Victor Stinner
· 6 years ago
3880f26
bpo-36933: Remove sys.set_coroutine_wrapper (marked for removal in 3.8) (GH-13577)
by Matthias Bussonnier
· 6 years ago
cd590a7
bpo-1230540: Add threading.excepthook() (GH-13515)
by Victor Stinner
· 6 years ago
6f6ff8a
bpo-37050: Remove expr_text from FormattedValue ast node, use Constant node instead (GH-13597)
by Eric V. Smith
· 6 years ago
331a6a5
bpo-36763: Implement the PEP 587 (GH-13592)
by Victor Stinner
· 6 years ago
71c52e3
bpo-36829: Add _PyErr_WriteUnraisableMsg() (GH-13488)
by Victor Stinner
· 6 years ago
1bbf7b6
bpo-34632: Add importlib.metadata (GH-12547)
by Jason R. Coombs
· 6 years ago
438a12d
bpo-36710: Add tstate parameter in ceval.c (GH-13547)
by Victor Stinner
· 6 years ago
b4bdecd
bpo-36710: Add tstate parameter in errors.c (GH-13540)
by Victor Stinner
· 6 years ago
b82e17e
bpo-36842: Implement PEP 578 (GH-12613)
by Steve Dower
· 6 years ago
20e1e25
bpo-36763: Fix _PyPreConfig_InitCompatConfig() utf8_mode (GH-13518)
by Victor Stinner
· 6 years ago
df22c03
bpo-36829: PyErr_WriteUnraisable() normalizes exception (GH-13507)
by Victor Stinner
· 6 years ago
5edcf26
bpo-36763: Rename private Python initialization functions (GH-13511)
by Victor Stinner
· 6 years ago
022be02
bpo-36763: Add _PyPreConfig._config_init (GH-13481)
by Victor Stinner
· 6 years ago
b121f63
bpo-36084: Add native thread ID (TID) to threading.Thread (GH-13463)
by Jake Tesler
· 6 years ago
933e150
bpo-36878: Track extra text added to 'type: ignore' in the AST (GH-13479)
by Michael J. Sullivan
· 6 years ago
ef9d9b6
bpo-36829: Add sys.unraisablehook() (GH-13187)
by Victor Stinner
· 6 years ago
565b4f1
bpo-34616: Add PyCF_ALLOW_TOP_LEVEL_AWAIT to allow top-level await (GH-13148)
by Matthias Bussonnier
· 6 years ago
ad098b6
Annotate the unexplained assignment in exception unbinding (GH-11448)
by Chris Angelico
· 6 years ago
d12e757
Revert "bpo-36084: Add native thread ID to threading.Thread objects (GH-11993)" (GH-13458)
by Victor Stinner
· 6 years ago
0f72147
bpo-36763: Fix _PyRuntime.preconfig.coerce_c_locale (GH-13444)
by Victor Stinner
· 6 years ago
6d1c467
bpo-36763: Fix Python preinitialization (GH-13432)
by Victor Stinner
· 6 years ago
ed48866
bpo-35134: Split traceback.h header (GH-13430)
by Victor Stinner
· 6 years ago
da6129e
bpo-36961: Handle positional-only arguments in uparse.c (GH-13412)
by Pablo Galindo
· 6 years ago
Next »