Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add support for .parent and .joinpath in zipfile.Path (#13213) | Jason R. Coombs | 2019-05-09 | 2 | -1/+24 |
| | |||||
* | bpo-36239: Skip comments in gettext infos (GH-12255) | Julien Palard | 2019-05-09 | 3 | -0/+17 |
| | |||||
* | bpo-36831: Do not apply default namespace to unprefixed attributes in ↵ | Stefan Behnel | 2019-05-09 | 2 | -11/+29 |
| | | | | | ElementPath. (#13201) Also provide better grouping of the tokenizer tests. | ||||
* | closes bpo-36861: Update Unicode database to 12.1.0. (GH-13214) | Benjamin Peterson | 2019-05-09 | 10 | -15377/+15381 |
| | | | Adds ㋿. | ||||
* | bpo-35900: Enable custom reduction callback registration in _pickle (GH-12499) | Pierre Glaser | 2019-05-08 | 6 | -24/+227 |
| | | | | Enable custom reduction callback registration for functions and classes in _pickle.c, using the new Pickler's attribute ``reducer_override``. | ||||
* | bpo-36817: Add f-string debugging using '='. (GH-13123) | Eric V. Smith | 2019-05-08 | 11 | -49/+286 |
| | | | If a "=" is specified a the end of an f-string expression, the f-string will evaluate to the text of the expression, followed by '=', followed by the repr of the value of the expression. | ||||
* | bpo-35900: Add a state_setter arg to save_reduce (GH-12588) | Pierre Glaser | 2019-05-08 | 5 | -15/+114 |
| | | | | | Allow reduction methods to return a 6-item tuple where the 6th item specifies a custom state-setting method that's called instead of the regular ``__setstate__`` method. | ||||
* | bpo-26903: Limit ProcessPoolExecutor to 61 workers on Windows (GH-13132) | Brian Quinlan | 2019-05-08 | 4 | -0/+26 |
| | | | | Co-Authored-By: brianquinlan <brian@sweetapp.com> | ||||
* | bpo-24758: Improve the error msg for unittest.mock.Mock()'s unsafe mode (#12991) | Zackery Spytz | 2019-05-08 | 2 | -3/+5 |
| | | | | | | * bpo-24758: Improve the error msg for unittest.mock.Mock()'s unsafe mode * Make the requested changes. | ||||
* | bpo-36816: Update the self-signed.pythontest.net cert (GH-13192) | Gregory P. Smith | 2019-05-08 | 2 | -14/+33 |
| | | | | | | | | | We updated the server, our testsuite must match. https://bugs.python.org/issue36816 ✈️ CLE -> DEN ✈️ #pycon2019 | ||||
* | bpo-24048: Save the live exception during import.c's remove_module() (GH-13005) | Zackery Spytz | 2019-05-08 | 2 | -3/+8 |
| | | | Save the live exception during the course of remove_module(). | ||||
* | bpo-31873: Update unicode.rst - 'unicode' capitalization (GH-4125) | toonarmycaptain | 2019-05-08 | 1 | -12/+12 |
| | | | | Update 'unicode' capitalization. 'Unicode' is a proper noun, and as such should be capitalized. Changed multiple instances. | ||||
* | Doc: Be explicit that Pathlib resolve was strict before 3.6. (GH-11316) | Julien Palard | 2019-05-08 | 1 | -1/+1 |
| | |||||
* | bpo-36832: add zipfile.Path (#13153) | Jason R. Coombs | 2019-05-08 | 4 | -8/+320 |
| | | | | | | | | | | | | | | | | | | | | | | | | * bpo-36832: add zipfile.Path * bpo-36832: add documentation for zipfile.Path * 📜🤖 Added by blurb_it. * Remove module reference from blurb. * Sort the imports * Update docstrings and docs per recommendations. * Rely on test.support.temp_dir * Signal that 'root' is the parameter. * Correct spelling of 'mod' * Convert docstring to comment for brevity. * Fix more errors in the docs | ||||
* | Doc: Fix missing bracket (GH-13163) | Zhaorong Ma | 2019-05-08 | 1 | -1/+1 |
| | |||||
* | bpo-27639: Correct return type for UserList slicing operation (#13169) | Michael Blahay | 2019-05-07 | 3 | -1/+13 |
| | | | | | | | * BPO-27639: Correct return type for UserList slicing operation Added logic to __getitem__ magic method for UserList to ensure that the return type matches that of self. | ||||
* | bpo-36015: Handle StreamHandler representaton of stream with an integer name ↵ | Riccardo Magliocchetti | 2019-05-07 | 2 | -0/+10 |
| | | | | (GH-11908) | ||||
* | bpo-36838: Suggest 'make venv' when missing Doc/ tools. (GH-13173) | Gregory P. Smith | 2019-05-07 | 1 | -4/+12 |
| | |||||
* | bpo-36801: Fix waiting in StreamWriter.drain for closing SSL transport ↵ | Andrew Svetlov | 2019-05-07 | 4 | -8/+46 |
| | | | | | (GH-13098) https://bugs.python.org/issue36801 | ||||
* | Add a footnote about Cheese Shop in Doc/tutorial (GH-13103) | Adorilson Bezerra | 2019-05-07 | 1 | -1/+7 |
| | |||||
* | bpo-35125: remove inner callback on outer cancellation in asyncio shield ↵ | Romain Picard | 2019-05-07 | 3 | -3/+19 |
| | | | | | | | | | | | | | | (GH-10340) When the future returned by shield is cancelled, its completion callback of the inner future is not removed. This makes the callback list of inner inner future grow each time a shield is created and cancelled. This change unregisters the callback from the inner future when the outer future is cancelled. https://bugs.python.org/issue35125 | ||||
* | Don't import wait from connection, it shadows a name (GH-13112) | Brian Quinlan | 2019-05-07 | 1 | -2/+2 |
| | | | (lint cleanup) This import causes an argument parameter to shadow the global import name. | ||||
* | bpo-31922: Do not connect UDP sockets when broadcast is allowed (GH-423) | Vincent Michel | 2019-05-07 | 5 | -7/+34 |
| | | | | | | | | | | | | *Moved from python/asyncio#493.* This PR fixes issue python/asyncio#480, as explained in [this comment](https://github.com/python/asyncio/issues/480#issuecomment-278703828). The `_SelectorDatagramTransport.sendto` method has to be modified ~~so `_sock.sendto` is used in all cases (because it is tricky to reliably tell if the socket is connected or not). Could that be an issue for connected sockets?~~ *EDIT* ... so `_sock.send` is used only if `_sock` is connected. It also protects `socket.getsockname` against `OSError` in `_SelectorTransport`. This might happen on Windows if the socket is not connected (e.g. for UDP broadcasting). https://bugs.python.org/issue31922 | ||||
* | bpo-11001: updated cookie docs (GH-13086) | Julia Iliuk | 2019-05-07 | 1 | -7/+9 |
| | | | | | | | Used **spookylukey**'s patch from 2011-01-24 https://bugs.python.org/issue11001 | ||||
* | bpo-36533: Reinit logging.Handler locks on fork(). (GH-12704) | Gregory P. Smith | 2019-05-07 | 3 | -40/+58 |
| | | | | | Instead of attempting to acquire and release them all across fork which was leading to deadlocks in some applications that had chained their own handlers while holding multiple locks. | ||||
* | bpo-28795: Signal documentation: Fix misleading statement. (GH-13121) | Julien Palard | 2019-05-07 | 1 | -1/+2 |
| | |||||
* | bpo-36783: Added C API Documentation for Time_FromTimeAndFold and ↵ | Edison A | 2019-05-07 | 2 | -0/+18 |
| | | | | | | PyDateTime_FromDateAndTimeAndFold (GH-13147) | ||||
* | Post v3.8.0a4 | Łukasz Langa | 2019-05-07 | 1 | -1/+1 |
| | |||||
* | Merge tag 'v3.8.0a4' | Łukasz Langa | 2019-05-07 | 139 | -385/+1477 |
|\ | | | | | | | Python 3.8.0a4 | ||||
| * | Python 3.8.0a4v3.8.0a4 | Łukasz Langa | 2019-05-06 | 139 | -385/+1477 |
| | | |||||
* | | bpo-31855: unittest.mock.mock_open() results now respects the argument of ↵ | Rémi Lapeyre | 2019-05-07 | 3 | -26/+22 |
| | | | | | | | | | | | | | | | | read([size]) (GH-11521) unittest.mock.mock_open() results now respects the argument of read([size]) Co-Authored-By: remilapeyre <remi.lapeyre@henki.fr> | ||||
* | | Forbid creating of stream objects outside of asyncio (#13101) | Andrew Svetlov | 2019-05-07 | 5 | -76/+203 |
| | | |||||
* | | bpo-35925: Skip SSL tests that fail due to weak external certs. (GH-13124) | Gregory P. Smith | 2019-05-06 | 3 | -12/+51 |
| | | | | | | | | | | | | | | | | Modern Linux distros such as Debian Buster have default OpenSSL system configurations that reject connections to servers with weak certificates by default. This causes our test suite run with external networking resources enabled to skip these tests when they encounter such a failure. Fixing the network servers is a separate issue. | ||||
* | | Fix rst formatting for several links in ssl documentation (GH-13133) | Toshio Kuratomi | 2019-05-06 | 1 | -3/+3 |
| | | |||||
* | | bpo-36542: Allow to overwrite the signature for Python functions. (GH-12705) | Serhiy Storchaka | 2019-05-06 | 17 | -3/+40 |
| | | |||||
* | | bpo-36793: Remove unneeded __str__ definitions. (GH-13081) | Serhiy Storchaka | 2019-05-06 | 18 | -33/+25 |
| | | | | | | | | Classes that define __str__ the same as __repr__ can just inherit it from object. | ||||
* | | bpo-36766: Typos in docs and code comments (GH-13116) | penguindustin | 2019-05-06 | 22 | -22/+22 |
| | | |||||
* | | bpo-36275: enhance documentation for venv.create() (GH-13114) | Sebastian Koslowski | 2019-05-06 | 1 | -1/+6 |
| | | |||||
* | | Clarify the download unit in the download section (GH-13122) | Stéphane Wirtel | 2019-05-06 | 1 | -2/+1 |
| | | |||||
* | | bpo-30668: add missing word in license.rst (GH-13115) | Patrick Mühlbauer | 2019-05-06 | 1 | -1/+1 |
| | | |||||
* | | Unroll import-team in CODEOWNERS (#13118) | Brett Cannon | 2019-05-06 | 1 | -2/+2 |
| | | |||||
* | | bpo-36594: Fix incorrect use of %p in format strings (GH-12769) | Zackery Spytz | 2019-05-06 | 11 | -24/+26 |
| | | | | | | In addition, fix some other minor violations of C99. | ||||
* | | bpo-36798: Updating f-string docs for := use case (GH-13107) | Logan Jones | 2019-05-06 | 1 | -5/+6 |
|/ | |||||
* | Update wsgiref.rst (#10488) | Andre Delfino | 2019-05-06 | 1 | -1/+1 |
| | |||||
* | Doc/c-api/exceptions.rst: fix grammar (#12091) | Daniel Hahler | 2019-05-06 | 1 | -2/+2 |
| | | | | | | | | | | | * Doc/c-api/exceptions.rst: fix grammar skip issue skip news * Use ", in that case" Co-Authored-By: blueyed <github@thequod.de> | ||||
* | bpo-36811: Fix a C compiler warning in _elementtree.c. (GH-13109) | Stefan Behnel | 2019-05-06 | 1 | -1/+1 |
| | |||||
* | Only count number of members once (#12691) | Eddie Elizondo | 2019-05-06 | 1 | -0/+1 |
| | |||||
* | bpo-16024: Doc cleanup regarding path_fd, dir_fd, follow_symlinks (GH-5505) | Cheryl Sabella | 2019-05-06 | 1 | -66/+76 |
| | |||||
* | bpo-36791: Safer detection of integer overflow in sum(). (GH-13080) | Serhiy Storchaka | 2019-05-05 | 1 | -3/+5 |
| | |||||
* | bpo-33530: Implement Happy Eyeballs in asyncio, v2 (GH-7237) | twisteroid ambassador | 2019-05-05 | 5 | -38/+264 |
| | | | | | | | | | | Added two keyword arguments, `delay` and `interleave`, to `BaseEventLoop.create_connection`. Happy eyeballs is activated if `delay` is specified. We now have documentation for the new arguments. `staggered_race()` is in its own module, but not exported to the main asyncio package. https://bugs.python.org/issue33530 |