Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
0400a7f2f8abec8d441990e951cc25f69a2a4036
0400a7f
Minor code cleanups for statistics (GH-19873)
by Raymond Hettinger
· 5 years ago
8aab843
Fix missing space in docs(GH-19866)
by Mathieu Dupuy
· 5 years ago
190fac9
bpo-40465: Deprecate the optional argument to random.shuffle(). (#19867)
by Raymond Hettinger
· 5 years ago
7663523
bpo-40419: timeit CLI docs now mention 1,2,5,10,... trials instead of powers of 10 (GH-19752)
by Sander
· 5 years ago
b7226eb
Call $(MKDIR_P) before regenerating the PEG meta-parser (GH-19861)
by Pablo Galindo
· 5 years ago
531d1e5
bpo-39435: Make the first argument of pickle.loads() positional-only. (GH-19846)
by Serhiy Storchaka
· 5 years ago
d2baff4
bpo-40334: regenerate metaparser as part of regen-all (GH-19854)
by Pablo Galindo
· 5 years ago
9dbaa8d
Fix some scripts in the peg generator folder (GH-19853)
by Pablo Galindo
· 5 years ago
0204726
bpo-29587: Update gen.throw() to chain exceptions (#19823)
by Chris Jerdonek
· 5 years ago
f40bd46
bpo-40417: Fix deprecation warning in PyImport_ReloadModule (GH-19750)
by Robert Rouhani
· 5 years ago
7ba08ff
bpo-40334: use the TOKENS file when checking dangling rules (GH-19849)
by Pablo Galindo
· 5 years ago
6bd99d5
Fix the Tools/peg_generator/scripts/benchmark.py script (GH-19848)
by Pablo Galindo
· 5 years ago
289842a
bpo-39435: Fix docs for pickle.loads (GH-18160)
by Shantanu
· 5 years ago
64224a4
bpo-40412: Nullify inittab_copy during finalization (GH-19746)
by Gregory Szorc
· 5 years ago
831d58d
bpo-39691: Clarify io.open_code behavior (GH-19824)
by Shantanu
· 5 years ago
4168f1e
Simplify choice()'s interaction with the private _randbelow() method (GH-19831)
by Raymond Hettinger
· 5 years ago
03b7642
bpo-40334: Make the PyPegen* and PyParser* APIs more consistent (GH-19839)
by Lysandros Nikolaou
· 5 years ago
d9d6ead
Ensure that tok->type_comments is set on every path (GH-19828)
by Guido van Rossum
· 5 years ago
3941d97
bpo-40334: Refactor lambda_parameters similar to parameters (GH-19830)
by Guido van Rossum
· 5 years ago
d955241
bpo-40334: Correct return value of func_type_comment (GH-19833)
by Pablo Galindo
· 5 years ago
ea7297c
bpo-40334: unskip test_function_type in test_unparse with the new parser (GH-19837)
by Pablo Galindo
· 5 years ago
76c1b4d
bpo-40334: Improve column offsets for thrown syntax errors by Pegen (GH-19782)
by Batuhan Taskaya
· 5 years ago
719e14d
bpo-40462: fix variable and function names (GH-19832)
by Furkan Önder
· 5 years ago
8727664
bpo-32494: Use gdbm_count for dbm_length if possible (GH-19814)
by Dong-hee Na
· 5 years ago
b796b3f
bpo-40334: Simplify type handling in the PEG c_generator (GH-19818)
by Pablo Galindo
· 5 years ago
252346a
bpo-40453: Add PyConfig._isolated_subinterpreter (GH-19820)
by Victor Stinner
· 5 years ago
8bcfd31
Change 'exception happened' to 'exception occurred' in two places (#19767)
by Noah Doersing
· 5 years ago
3e0a6f3
bpo-40334: Add support for feature_version in new PEG parser (GH-19827)
by Lysandros Nikolaou
· 5 years ago
eb0d359
bpo-40443: Remove unused imports in stdlib (GH-19815)
by Victor Stinner
· 5 years ago
2935e65
bpo-40275: Fix name error in support.socket_helper (GH-19825)
by Victor Stinner
· 5 years ago
17014e4
Remove dead code in test__xxsubinterpreters (GH-19826)
by Victor Stinner
· 5 years ago
b66c0ff
bpo-1635741: Fix compiler warning in _stat.c (GH-19822)
by Victor Stinner
· 5 years ago
3c7f9db
Revert "bpo-29587: Enable implicit exception chaining with gen.throw() (GH-19811)" (#19821)
by Victor Stinner
· 5 years ago
2514a63
bpo-29587: Enable implicit exception chaining with gen.throw() (GH-19811)
by Chris Jerdonek
· 5 years ago
c001c09
bpo-40334: Support type comments (GH-19780)
by Guido van Rossum
· 5 years ago
efb8dd5
compileall: Fix typos in docstring (GH-19810)
by Jelle Zijlstra
· 5 years ago
e488e30
bpo-40443: Remove unused imports in distutils (GH-19802)
by Victor Stinner
· 5 years ago
9054967
bpo-40443: Remove unused imports in the stdlib (GH-19803)
by Victor Stinner
· 5 years ago
3209cbd
bpo-40394 - difflib.SequenceMatched.find_longest_match default args (GH-19742)
by lrjball
· 5 years ago
6900f16
bpo-40443: Remove unused imports in idlelib (GH-19801)
by Victor Stinner
· 5 years ago
138a9b9
bpo-40389: Improve repr of typing.Optional (#19714)
by Vlad Serebrennikov
· 5 years ago
b1e11c3
bpo-40443: Remove unused imports in tests (GH-19804)
by Victor Stinner
· 5 years ago
57572b1
bpo-40443: Remove unused imports in tests (GH-19805)
by Victor Stinner
· 5 years ago
69e802e
bpo-40334: Fix test_peg_parser to actually use the old parser (GH-19778)
by Lysandros Nikolaou
· 5 years ago
360371f
bpo-40291: Add support for CAN_J1939 sockets (GH-19538)
by karl ding
· 5 years ago
fd33cdb
Fix plural typo in documentation (GH-19799)
by Alex Povel
· 5 years ago
84724dd
bpo-1635741: Port _stat module to multiphase initialization (GH-19798)
by Dong-hee Na
· 5 years ago
113feb3
bpo-40328: Add tool for generating cjk mapping headers (GH-19602)
by Dong-hee Na
· 5 years ago
2d87577
bpo-40286: Remove C implementation of Random.randbytes() (GH-19797)
by Victor Stinner
· 5 years ago
e3dfb9b
bpo-9216: Expose OpenSSL FIPS_mode() as _hashlib.get_fips_mode() (GH-19703)
by Victor Stinner
· 5 years ago
e5963ee
What's New in Python 3.9: Reorganize C API Changes (GH-19794)
by Victor Stinner
· 5 years ago
5769724
bpo-40228: More robust frame.setlineno. (GH-19437)
by Mark Shannon
· 5 years ago
ec9bea4
bpo-40436: Fix code parsing gdb version (GH-19792)
by Victor Stinner
· 5 years ago
9a8c131
bpo-40428: Cleanup free list part of C API Changes doc (GH-19793)
by Victor Stinner
· 5 years ago
5089bcd
Add missing sys import to socket_helper.py (GH-19791)
by Pablo Galindo
· 5 years ago
4db245e
bpo-40334: refactor and cleanup for the PEG generators (GH-19775)
by Pablo Galindo
· 5 years ago
9b64ef3
bpo-40432 Fix MSBuild project for Pegen grammars (#GH-9785)
by Anthony Shaw
· 5 years ago
bfb1cf4
bpo-40275: Move transient_internet from test.support to socket_helper (GH-19711)
by Serhiy Storchaka
· 5 years ago
bb4a585
bpo-40428: Remove references to Py*_ClearFreeList in the docs (GH-19783)
by Zackery Spytz
· 5 years ago
6d65087
bpo-40334: Disallow invalid single statements in the new parser (GH-19774)
by Lysandros Nikolaou
· 5 years ago
a4dfe8e
bpo-39995: Fix concurrent.futures _ThreadWakeup (GH-19760)
by Victor Stinner
· 5 years ago
7036477
bpo-40421: Add PyFrame_GetBack() function (GH-19765)
by Victor Stinner
· 5 years ago
66abe98
bpo-40275: Move requires_hashdigest() to test.support.hashlib_helper (GH-19716)
by Hai Shi
· 5 years ago
2208134
bpo-40334: Explicitly cast to int in pegen.c to fix a compiler warning (GH-19779)
by Pablo Galindo
· 5 years ago
4386b90
bpo-40429: PyThreadState_GetFrame() returns a strong ref (GH-19781)
by Victor Stinner
· 5 years ago
37af21b
bpo-40334: Fix shifting of nested f-strings in the new parser (GH-19771)
by Lysandros Nikolaou
· 5 years ago
ae00a5a
bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769)
by Victor Stinner
· 5 years ago
cc0dc7e
bpo-40429: Refactor super_init() (GH-19776)
by Victor Stinner
· 5 years ago
f7bbf58
bpo-38880: List interpreters associated with a channel end (GH-17323)
by Lewis Gaul
· 5 years ago
49f70db
bpo-40431: Fix syntax typo in turtledemo (GH-19777)
by Miro Hrončok
· 5 years ago
8852ad4
bpo-40429: PyFrame_GetCode() now returns a strong reference (GH-19773)
by Victor Stinner
· 5 years ago
5e8c691
bpo-32604: Add support for a "default" arg in channel_recv(). (GH-19770)
by Eric Snow
· 5 years ago
6d86a23
bpo-40429: PyFrame_GetCode() result cannot be NULL (GH-19772)
by Victor Stinner
· 5 years ago
521c8d6
bpo-39966: Revert "bpo-25597: Ensure wraps' return value is used for magic methods in MagicMock" (GH-19734)
by Karthikeyan Singaravelan
· 5 years ago
d9a43e2
bpo-40025: Require _generate_next_value_ to be defined before members (GH-19098)
by Ethan Onstott
· 5 years ago
a42ca74
bpo-40421: Add PyFrame_GetCode() function (GH-19757)
by Victor Stinner
· 5 years ago
b8f704d
bpo-40421: Add Include/cpython/code.h header file (GH-19756)
by Victor Stinner
· 5 years ago
7c59d7c
bpo-40421: Add pyframe.h header file (GH-19755)
by Victor Stinner
· 5 years ago
5da3526
Post 3.9.0a6
by Łukasz Langa
· 5 years ago
d66685a
Merge tag 'v3.9.0a6'
by Łukasz Langa
· 5 years ago
5b9f498
bpo-40334: Refactor peg_generator to receive a Tokens file when building c code (GH-19745)
by Pablo Galindo
· 5 years ago
3d53d87
bpo-40334: Don't skip test_parser:test_trigget_memory_error (GH-19744)
by Lysandros Nikolaou
· 5 years ago
d55133f
bpo-40334: Catch E_EOF error, when the tokenizer returns ERRORTOKEN (GH-19743)
by Lysandros Nikolaou
· 5 years ago
bc1c8af
Python 3.9.0a6
by Łukasz Langa
· 5 years ago
5d1f32d
bpo-39995: Split test_concurrent_futures.test_crash() into sub-tests (GH-19739)
by Victor Stinner
· 5 years ago
1a27501
bpo-30966: concurrent.futures.Process.shutdown() closes queue (GH-19738)
by Victor Stinner
· 5 years ago
b94dbd7
bpo-40334: Support PyPARSE_DONT_IMPLY_DEDENT in the new parser (GH-19736)
by Pablo Galindo
· 5 years ago
2b74c83
bpo-40334: Support CO_FUTURE_BARRY_AS_BDFL in the new parser (GH-19721)
by Pablo Galindo
· 5 years ago
9adccc1
bpo-30966: Add multiprocessing.SimpleQueue.close() (GH-19735)
by Victor Stinner
· 5 years ago
c5c4281
bpo-40375: Implement imaplib.IMAP4.unselect (GH-19712)
by Dong-hee Na
· 5 years ago
91a5ae1
bpo-40217: Clean code in PyType_FromSpec_Alloc and add NEWS entry (GH-19733)
by Pablo Galindo
· 5 years ago
0169d30
bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSpec types (GH-19414)
by Pablo Galindo
· 5 years ago
4044c84
Add files in tests/test_peg_generator to the install target lists (GH-19723)
by Pablo Galindo
· 5 years ago
6292be7
bpo-40398: Fix typing.get_args() for special generic aliases. (GH-19720)
by Serhiy Storchaka
· 5 years ago
caf1aad
bpo-40348: Fix typos in the programming FAQ (GH-19729)
by Zackery Spytz
· 5 years ago
b54e46c
bpo-38387: Formally document PyDoc_STRVAR and PyDoc_STR macros (GH-16607)
by Brad Solomon
· 5 years ago
a494caa
bpo-40401: Remove duplicate pyhash.h include from pythoncore.vcxproj (GH-19725)
by Ammar Askar
· 5 years ago
88499f1
bpo-40387: Improve queue join() example. (GH-19724)
by Raymond Hettinger
· 5 years ago
68b352a
bpo-40396: Support GenericAlias in the typing functions. (GH-19718)
by Serhiy Storchaka
· 5 years ago
cfaf4c0
Fix typo in Lib/typing.py (GH-19717)
by Nickolena Fisher
· 5 years ago
Next »