Victor Stinner
|
6d8bc46cc0
|
Catch EPERM error in py_getrandom()
Issue #27955: Fallback on reading /dev/urandom device when the getrandom()
syscall fails with EPERM, for example when blocked by SECCOMP.
|
10 years ago |
Benjamin Peterson
|
918aa89483
|
remove trailing whitespace
|
10 years ago |
Raymond Hettinger
|
7eb1becc25
|
Issue #28189: dictitems_contains no longer swallows compare errors.
(Patch by Xiang Zhang)
|
10 years ago |
Christian Heimes
|
96b2dd5997
|
Issue #26661: setup.py now detects system libffi with multiarch wrapper.
|
10 years ago |
Steve Dower
|
1ec262be80
|
Issue #27932: Prevent memory leak in win32_ver().
|
10 years ago |
Steve Dower
|
1c75c18ed2
|
Issue #28110: launcher.msi has different product codes between 32-bit and 64-bit
|
10 years ago |
Berker Peksag
|
bcfb35f80d
|
Issue #26384: Fix UnboundLocalError in socket._sendfile_use_sendfile
|
10 years ago |
Berker Peksag
|
0b4dc4846b
|
Issue #28075: Check for ERROR_ACCESS_DENIED in Windows implementation of os.stat()
Patch by Eryk Sun.
|
10 years ago |
Berker Peksag
|
4a72a7b6c4
|
Issue #25270: Prevent codecs.escape_encode() from raising SystemError when an empty bytestring is passed
|
10 years ago |
Christian Heimes
|
a4961e555b
|
Issue #28181: Get antigravity over HTTPS. Patch by Kaartic Sivaraam.
|
10 years ago |
Berker Peksag
|
f676748a05
|
Issue #25895: Enable WebSocket URL schemes in urllib.parse.urljoin
Patch by Gergely Imreh and Markus Holtermann.
|
10 years ago |
Martin Panter
|
2dc77f0e19
|
Issue #28145: Spelling fixes
|
10 years ago |
Yury Selivanov
|
525aedc5fa
|
Issue #27759: Fix selectors incorrectly retain invalid file descriptors.
Patch by Mark Williams.
|
10 years ago |
Yury Selivanov
|
d6c6771fc9
|
Issue #28176: Fix callbacks race in asyncio.SelectorLoop.sock_connect.
|
10 years ago |
Yury Selivanov
|
4c5bf3bc52
|
Issue #26909: Fix slow pipes IO in asyncio.
Patch by INADA Naoki.
|
10 years ago |
Yury Selivanov
|
45dccdad93
|
Issue #26654: Inspect functools.partial in asyncio.Handle.__repr__.
Patch by iceboy.
|
10 years ago |
Yury Selivanov
|
5587d7c071
|
Issue #28174: Handle when SO_REUSEPORT isn't properly supported (asyncio)
Patch by Seth Michael Larson.
|
10 years ago |
Yury Selivanov
|
a1b0e7db73
|
Issue #27906: Fix socket accept exhaustion during high TCP traffic.
Patch by Kevin Conway.
|
10 years ago |
Serhiy Storchaka
|
e6265e92bf
|
Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp().
|
10 years ago |
Berker Peksag
|
d751040b1a
|
Issue #26171: Prevent buffer overflow in get_data
Backport of 01ddd608b85c.
|
10 years ago |
Berker Peksag
|
4aa74c429c
|
Issue #28131: Fix a regression in zipimport's compile_source()
zipimport should use the same optimization level as the interpreter.
|
10 years ago |
Martin Panter
|
134192630a
|
Issue #15819: Remove old unconditional -IInclude option
A newer instance of this option, enabled in the configure script when
building outside the source tree, made this redundant.
|
10 years ago |
Raymond Hettinger
|
076366c2a5
|
Issue #17582: xml.etree.ElementTree nows preserves whitespaces in attributes
(Patch by Duane Griffin. Reviewed and approved by Stefan Behnel.)
|
10 years ago |
Martin Panter
|
c5ee3caa80
|
Issue #28066: Fix include search directory logic for out-of-tree builds
|
10 years ago |
Yury Selivanov
|
44c19eccf9
|
Issue #27456: asyncio: Set TCP_NODELAY by default.
|
10 years ago |
R David Murray
|
0e0cfd7135
|
#19003: Only replace \r and/or \n line endings in email.generator.
This is a further restoration of backward compatibility, as well as
being correct per the RFCs.
|
10 years ago |
Martin Panter
|
b7665386bc
|
Issue #27952: Get fixcid.py working with the re module
|
10 years ago |
Terry Jan Reedy
|
d92cecb9f1
|
IDLE newx items.
|
10 years ago |
Mark Dickinson
|
36820dd5a9
|
Issue #25221: Fix corrupted result from PyLong_FromLong(0) when Python is compiled with NSMALLPOSINTS = 0.
|
10 years ago |
Steve Dower
|
f028d9f71a
|
Issue #27932: Backs out change
|
10 years ago |
Serhiy Storchaka
|
8ddcf3abf7
|
Issue #28019: itertools.count() no longer rounds non-integer step in range
between 1.0 and 2.0 to 1.
|
10 years ago |
Steve Dower
|
528db31bd9
|
Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach)
|
10 years ago |
Steve Dower
|
f2bdb6b8ca
|
Issue #27705: Update message in validate_ucrtbase.py
|
10 years ago |
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)
|
28325749c0
|
Issue #25969: Update the lib2to3 grammar to handle the unpacking
generalizations added in 3.5.
|
10 years ago |
Steve Dower
|
6a294a54de
|
Issue #27932: Fixes memory leak in platform.win32_ver()
|
10 years ago |
Steve Dower
|
8dcc48ee3b
|
Issue #25758: Prevents zipimport from unnecessarily encoding a filename (patch by Eryk Sun)
|
10 years ago |
R David Murray
|
347dc95cd3
|
#14977: Make mailcap respect the order of the lines in the mailcap file.
This is required by RFC 1542, so despite the subtle behavior change we
are treating it as a bug. Patch by Michael Lazar.
|
10 years ago |
Raymond Hettinger
|
ae9e5f032d
|
Issue #22450: Use "Accept: */*" in the default headers for urllib.request
|
10 years ago |
Steve Dower
|
c87ae806ab
|
Issue #25144: Ensures TargetDir is set before continuing with custom install.
|
10 years ago |
Zachary Ware
|
9b32bda851
|
Issue #19489: Add NEWS and ACKS
|
10 years ago |
Steve Dower
|
6ceda631af
|
Issue #24594: Validates persist parameter when opening MSI database
|
10 years ago |
R David Murray
|
94a7927cc6
|
#28047: Fix calculation of base64 line length.
This is buggy in the old email code as well, but it doesn't affect anything
there because only the default line length is ever used there.
|
10 years ago |
Raymond Hettinger
|
262b6793e0
|
Issue #26020: Fix evaluation order for set literals
|
10 years ago |
Davin Potts
|
37156a70b9
|
Issue #21201: Improves readability of multiprocessing error message from server to client for certain exceptions
|
10 years ago |
Berker Peksag
|
2b2a9be913
|
Issue #27445: Don't pass str(_charset) to MIMEText.set_payload()
Patch by Claude Paroz.
|
10 years ago |
Gregory P. Smith
|
bfac23a4c0
|
Move my news entries to the build section.
|
10 years ago |
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)
|
dd1c638b92
|
lib2to3.pgen3.driver.load_grammar() now creates a stable cache file
between runs given the same Grammar.txt input regardless of the hash
randomization setting.
|
10 years ago |
Vinay Sajip
|
d61910c598
|
Fixes #27930: improved QueueListener behaviour.
|
10 years ago |
Martin Panter
|
0f0eac431f
|
Issue #27993: Fix problems with plural objects in docs and comments
|
10 years ago |
Martin Panter
|
0be894b2f6
|
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
|
10 years ago |