- 27 May, 2017 5 commits
-
-
Mariatta authored
Calling Ctypes functions is deprecated in 3.6.2 and will be removed in 3.7
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
Also document that some attributes may be None.
-
Serhiy Storchaka authored
Unlikely to the simplejson module, json.JSONDecodeError doesn't accept the end argument.
-
Sanyam Khurana authored
The "iterable iterable" phrasing created confusion between the term reference and the parameter name. This simplifies the phrasing to just use the parameter name without linking directly to the term definition.
-
- 26 May, 2017 2 commits
-
-
Aaron Hall, MBA authored
* correct __slots__ documentation with minimal changes * add multiple inheritance info * remove mapping from description
-
Alex Gaynor authored
Partially clarify the subprocess convenience API documentation by explicitly listing the `cwd` parameter in their abbreviated signatures. While this has been merged as an improvement, it doesn't fully resolve the issue, as the `cwd` should also be covered in the "Frequently Used Arguments" section, and the fact these APIs pass unlisted keyword arguments down to the lower level APIs is currently still unclear.
-
- 25 May, 2017 5 commits
-
-
Eric Snow authored
-
grzgrzgrz3 authored
* bpo-30414: multiprocesing.Queue._feed do not break from main loop on exc Queue background running thread was not handling exceptions correctly. Any exception occurred inside thread (putting unpickable object) cause feeder to finish running. After that every message put into queue is silently ignored. * bpo-30414: multiprocesing.Queue._feed do not break from main loop on exc Queue background running thread was not handling exceptions correctly. Any exception occurred inside thread (putting unpickable object) cause feeder to finish running. After that every message put into queue is silently ignored.
-
Segev Finer authored
-
Serhiy Storchaka authored
-
Eric Snow authored
-
- 24 May, 2017 15 commits
-
-
Garvit Khatri authored
-
codedragon authored
Running under coverage sometimes causes 'in comparison' to be added to the end of the RecursionError message, which is acceptable. Patched by Maria Mckinley
-
Eric N. Vander Weele authored
Clean up `Misc/README.AIX` for addressed known issues. - Issues that have been marked fixed: #11184, #11185 - Issues resolved by new AIX version: #1745108 - Issues resolved, but not yet marked fixed/closed: #11188 Signed-off-by: Eric N. Vander Weele <ericvw@gmail.com>
-
Kushal Das authored
-
jugglinmike authored
The library does not enforce compliance with the HTTP protocol, so violations are not technically disallowed. Extend the stream's description to avoid suggesting that intentional protocol violations are not supported.
-
Steve Dower authored
-
gfyoung authored
-
Albert-Jan Nijburg authored
-
Stéphane Wirtel authored
bpo-28707: Add the directory parameter to http.server.SimpleHTTPRequestHandler and http.server module (#1776) * bpo-28707: call the constructor of SimpleHTTPRequestHandler in the test with a mock object * bpo-28707: Add the directory parameter to http.server.SimpleHTTPRequestHandler and http.server module
-
Gregory P. Smith authored
This helps people in weird FIPS mode environments where common things like MD5 are not available in the binary as a matter of policy.
-
Brian Ward authored
-
Eric Snow authored
(patch by Nick Coghlan)
-
Joel Hillacre authored
-
Eric Snow authored
(patch by Nick Coghlan)
-
Serhiy Storchaka authored
* Revert "Fixed a typo in the HTMLParser.feed docstrings. The docstring started with an 'r', like a The docstring was correct. I read the patch in opposite direction, as *adding* the "r" prefix. This reverts commit 5ba18503.
-
- 23 May, 2017 13 commits
-
-
Eric Snow authored
-
Steve Dower authored
* Improves test_underpth_nosite_file to reveal why it fails. * Enable building with Windows 10 SDK. * Fix WinSDK detection * Fix initialization on Windows when a ._pth file exists. * Fix tabs * Adds comment about Py_GetPath call.
-
Christian Heimes authored
Drop handshake_done and peer_cert members from PySSLSocket struct. The peer certificate can be acquired from *SSL directly. SSL_get_peer_certificate() does not trigger any network activity. Instead of manually tracking the handshake state, simply use SSL_is_init_finished(). In combination these changes fix auto-handshake for non-blocking MemoryBIO connections. Signed-off-by: Christian Heimes <christian@python.org>
-
Eric Snow authored
-
Zachary Ware authored
-
Gregory P. Smith authored
use faulthandler._sigsegv() and ctypes.util.find_library('c')
-
Jani Šumak authored
Fixed a typo in the HTMLParser.feed docstrings. The docstring started with an 'r', like a rawstring. (#1759)
-
jimmylai authored
-
Roy Williams authored
* Allow FileInput to accept a single PathLike object as a parameter for `files` Fixes bpo-30432: FileInput doesn't accept PathLike objects for file names * Address comments from @ambv
-
Amit Kumar authored
-
Eric Snow authored
PEP 432 specifies a number of large changes to interpreter startup code, including exposing a cleaner C-API. The major changes depend on a number of smaller changes. This patch includes all those smaller changes.
-
Thomas Kluyver authored
Some objects (like test mocks) auto-generate new objects on attribute access, which can lead to an infinite loop in inspect.unwrap(). Ensuring references are retained to otherwise temporary objects and capping the size of the memo dict turns this case into a conventional exception instead.
-
Eric Snow authored
-