Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
2a58b0636d1f620f8a85a2e4c030cc10551936a5
/
Misc
eea47e0
bpo-36953: Delay removal of ABCs from collections. (GH-13409)
by Matthias Bussonnier
· 6 years ago
5437ccc
bpo-36342: Fix test_multiprocessing in test_venv (GH-12513)
by xdegaye
· 6 years ago
98ef920
bpo-36999: Add asyncio.Task.get_coro() (GH-13680)
by Alex Grönholm
· 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
6eb814b
bpo-37098: Skip memfd_create test before Linux 3.17 (GH-13677)
by Christian Heimes
· 6 years ago
413d955
bpo-36610: shutil.copyfile(): use sendfile() on Linux only (GH-13675)
by Giampaolo Rodola
· 6 years ago
a16387a
bpo-24564: shutil.copystat(): ignore EINVAL on os.setxattr() (GH-13369)
by Ying Wang
· 6 years ago
8f96c9f
bpo-37007: Implement socket.if_nametoindex(), if_indextoname() and if_nameindex() on Windows (GH-13522)
by Zackery Spytz
· 6 years ago
ada319b
bpo-32388: Remove cross-version binary compatibility requirement in tp_flags (GH-4944)
by Antoine Pitrou
· 6 years ago
43fdbd2
bpo-26836: Add os.memfd_create() (#13567)
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
d30da5d
bpo-36983: Fix typing.__all__ and add test for exported names (GH-13456)
by Anthony Sottile
· 6 years ago
4dd3e3f
bpo-32972: Async test case (GH-13386)
by Andrew Svetlov
· 6 years ago
ca80495
bpo-22454: Add shlex.join() (the opposite of shlex.split()) (GH-7605)
by Bo Bayles
· 6 years ago
744c08a
bpo-35246: fix support for path-like args in asyncio subprocess (GH-13628)
by 依云
· 6 years ago
8b09500
bpo-37076: _thread.start_new_thread() calls _PyErr_WriteUnraisableMsg() (GH-13617)
by Victor Stinner
· 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
ab0716e
bpo-22102: Fixes zip files with disks set to 0 (GH-5985)
by Francisco Facioni
· 6 years ago
9e3c452
bpo-31961: Fix support of path-like executables in subprocess. (GH-5914)
by Serhiy Storchaka
· 6 years ago
2e33ecd
bpo-22640: Add silent mode to py_compile.compile() (GH-12976)
by Joannah Nanjekye
· 6 years ago
3c8724f
bpo-33407: Implement Py_DEPRECATED() on MSVC (GH-8980)
by Zackery Spytz
· 6 years ago
17a5588
bpo-33725: multiprocessing uses spawn by default on macOS (GH-13603)
by Victor Stinner
· 6 years ago
05f1641
bpo-26423: Fix possible overflow in wrap_lenfunc() (GH-13606)
by Zackery Spytz
· 6 years ago
0453081
bpo-32299: Return patched dict when using patch.dict as a context manager (GH-11062)
by Mario Corchero
· 6 years ago
eb65e24
bpo-36922: implement PEP-590 Py_TPFLAGS_METHOD_DESCRIPTOR (GH-13338)
by Jeroen Demeyer
· 6 years ago
9a7e5b1
bpo-35279: reduce default max_workers of ThreadPoolExecutor (GH-13618)
by Inada Naoki
· 6 years ago
bafd4b5
bpo-29883: Asyncio proactor udp (GH-13440)
by Andrew Svetlov
· 6 years ago
74d7f76
bpo-37058: PEP 544: Add Protocol to typing module (GH-13585)
by Ivan Levkivskyi
· 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
436c2b0
bpo-36996: Handle async functions when mock.patch is used as a decorator (GH-13562)
by Xtreak
· 6 years ago
f0d4c64
bpo-36686: Improve the documentation of the std* params in loop.subprocess_exec (GH-13586)
by sbstp
· 6 years ago
a356841
bpo-37054, _pyio: Fix BytesIO and TextIOWrapper __del__() (GH-13601)
by Victor Stinner
· 6 years ago
cd590a7
bpo-1230540: Add threading.excepthook() (GH-13515)
by Victor Stinner
· 6 years ago
23b4b69
bpo-36889: Merge asyncio streams (GH-13251)
by Andrew Svetlov
· 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
02db696
bpo-32941: Add madvise() for mmap objects (GH-6172)
by Zackery Spytz
· 6 years ago
331a6a5
bpo-36763: Implement the PEP 587 (GH-13592)
by Victor Stinner
· 6 years ago
8cd5165
bpo-37027: Return a proxy socket object from transp.get_extra_info('socket') (GH-13530)
by Yury Selivanov
· 6 years ago
674ee12
bpo-35397: Remove deprecation and document urllib.parse.unwrap (GH-11481)
by Rémi Lapeyre
· 6 years ago
1f39c28
bpo-37035: Don't log OSError (GH-13548)
by Andrew Svetlov
· 6 years ago
ff6b2e6
bpo-37047: Refactor AsyncMock setup logic for autospeccing (GH-13574)
by Xtreak
· 6 years ago
431b540
bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528)
by Yury Selivanov
· 6 years ago
16cefb0
bpo-37028: asyncio REPL; activated via 'python -m asyncio'. (GH-13472)
by Yury Selivanov
· 6 years ago
b821868
bpo-36772 Allow lru_cache to be used as decorator without making a function call (GH-13048)
by Raymond Hettinger
· 6 years ago
aaf47ca
bpo-37053: handle strings like u"bar" correctly in Tools/parser/unparse.py (GH-13583)
by Chih-Hsuan Yen
· 6 years ago
91f4380
bpo-36785: PEP 574 implementation (GH-7076)
by Antoine Pitrou
· 6 years ago
180dc1b
bpo-28866: No type cache for types with specialized mro, invalidation is hard. (#13157)
by Julien Palard
· 6 years ago
135c6a5
bpo-37049: PEP 589: Add TypedDict to typing module (GH-13573)
by Ivan Levkivskyi
· 6 years ago
b891c46
bpo-37046: PEP 586: Add Literal to typing module (#13572)
by Ivan Levkivskyi
· 6 years ago
f367242
bpo-37045: PEP 591: Add final qualifiers to typing module (GH-13571)
by Ivan Levkivskyi
· 6 years ago
47dd2f9
bpo-37017: PyObject_CallMethodObjArgs uses LOAD_METHOD optimization (GH-13516)
by Michael J. Sullivan
· 6 years ago
81bb97d
bpo-37038: Make idlelib.run runnable; add test clause (GH-13560)
by Terry Jan Reedy
· 6 years ago
1bbf7b6
bpo-34632: Add importlib.metadata (GH-12547)
by Jason R. Coombs
· 6 years ago
a9f05d6
bpo-37032: Add CodeType.replace() method (GH-13542)
by Victor Stinner
· 6 years ago
1c9debd
bpo-35907: Fix typo in the NEWS entry (GH-13559)
by Victor Stinner
· 6 years ago
4585603
bpo-36969: Make PDB args command display positional only arguments (GH-13459)
by Rémi Lapeyre
· 6 years ago
deffee5
bpo-35907: Clarify the NEWS entry (GH-13523)
by Victor Stinner
· 6 years ago
14738ff
bpo-8138: Initialize wsgiref's SimpleServer as single-threaded (GH-12977)
by Berker Peksag
· 6 years ago
c994c8f
bpo-21536: On Cygwin, C extensions must be linked with libpython (GH-13549)
by E. M. Bray
· 6 years ago
2a37f8f
bpo-36045: builtins.help() now prefixes `async` for async functions (GH-12010)
by Dan Rose
· 6 years ago
c95c93d
bpo-20285: Improve help docs for object (GH-4759)
by Cheryl Sabella
· 6 years ago
608876b
bpo-23395: Fix PyErr_SetInterrupt if the SIGINT signal is ignored or not handled (GH-7778)
by Matěj Cepl
· 6 years ago
b82e17e
bpo-36842: Implement PEP 578 (GH-12613)
by Steve Dower
· 6 years ago
394119a
bpo-37008: make mock_open handle able to honor next() (GH-13492)
by Damien Nadé
· 6 years ago
51aa35e
bpo-33164: update blake2 implementation (GH-6286)
by David Carlier
· 6 years ago
0a8e572
bpo-36721: Add --embed option to python-config (GH-13500)
by Victor Stinner
· 6 years ago
ef5bb25
bpo-27737: Allow whitespace only headers encoding (#13478)
by Batuhan Taşkaya
· 6 years ago
df22c03
bpo-36829: PyErr_WriteUnraisable() normalizes exception (GH-13507)
by Victor Stinner
· 6 years ago
e4d300e
bpo-36829: Add test.support.catch_unraisable_exception() (GH-13490)
by Victor Stinner
· 6 years ago
904e34d
bpo-24882: Let ThreadPoolExecutor reuse idle threads before creating new thread (#6375)
by Sean
· 6 years ago
2a3a2ec
bpo-33110: Catch errors raised when running add_done_callback on already completed futures (GH-13141)
by Sam Martin
· 6 years ago
d8a82e2
bpo-36878: Only allow text after `# type: ignore` if first character ASCII (GH-13504)
by Michael J. Sullivan
· 6 years ago
0c2b6a3
bpo-35907, CVE-2019-9948: urllib rejects local_file:// scheme (GH-13474)
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
b3be407
bpo-33482: fix codecs.StreamRecoder.writelines (GH-6779)
by Jelle Zijlstra
· 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
4c7a46e
bpo-36972: Add SupportsIndex (GH-13448)
by Paul Dagnelie
· 6 years ago
33e71e0
bpo-31862: Port binascii to PEP 489 multiphase initialization (GH-4108)
by Marcel Plch
· 6 years ago
77aa396
bpo-36907: fix refcount bug in _PyStack_UnpackDict() (GH-13381)
by Jeroen Demeyer
· 6 years ago
ef9d9b6
bpo-36829: Add sys.unraisablehook() (GH-13187)
by Victor Stinner
· 6 years ago
7abf8c6
bpo-25652: Fix __rmod__ of UserString (GH-13326)
by Batuhan Taşkaya
· 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
aa32a7e
bpo-23378: Add an extend action to argparse (GH-13305)
by Batuhan Taşkaya
· 6 years ago
d5c120f
bpo-36035: fix Path.rglob for broken links (GH-11988)
by Jörg Stucke
· 6 years ago
ccb7ca7
bpo-36929: Modify io/re tests to allow for missing mod name (#13392)
by Max Bernstein
· 6 years ago
4fb1502
bpo-36648: fix mmap issue for VxWorks (GH-12394)
by Lihua Zhao
· 6 years ago
f2d7ac7
bpo-31904: Add posix module support for VxWorks (GH-12118)
by pxinwr
· 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
925af1d
bpo-36965: Fix includes in main.c on Windows with non-MSC compilers (GH-13421)
by Erik Janssens
· 6 years ago
bf457c7
bpo-36969: Make PDB args command display keyword only arguments (GH-13452)
by Rémi Lapeyre
· 6 years ago
1a3faf9
bpo-36952: Remove the bufsize parameter in fileinput.input(). (GH-13400)
by Matthias Bussonnier
· 6 years ago
4011d86
bpo-23896: Add a grammar where exec isn't a stmt (#13272)
by Batuhan Taşkaya
· 6 years ago
c09a9f5
bpo-36888: Add multiprocessing.parent_process() (GH-13247)
by Thomas Moreau
· 6 years ago
5ae1c84
bpo-36949: Implement __repr__ on WeakSet (GH-13415)
by Batuhan Taşkaya
· 6 years ago
77b3b77
bpo-26467: Adds AsyncMock for asyncio Mock library support (GH-9296)
by Lisa Roach
· 6 years ago
522ccef
bpo-22865: Expand on documentation for the pty.spawn function (GH-11980)
by Geoff Shannon
· 6 years ago
9932fd9
bpo-35721: Close socket pair if Popen in _UnixSubprocessTransport fails (GH-11553)
by Niklas Fiekas
· 6 years ago
6d965b3
bpo-36958: In IDLE, print exit message (GH-13435)
by Terry Jan Reedy
· 6 years ago
Next »