summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* bpo-38967: Improve the error msg for reserved _sunder_ names in enumpr_18370Zackery Spytz2020-09-132-1/+7
|
* bpo-33239: Fix default value of 'buffering' parameter in docs of tempfile.* ↵Sergey Fedoseev2020-09-131-3/+3
| | | | | | | | | | | | | | | | | functions (GH-21763) `None` doesn't work: ```python >>> import tempfile >>> tempfile.TemporaryFile(buffering=None) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/sergey/tmp/cpython-dev/Lib/tempfile.py", line 607, in TemporaryFile return _io.open(fd, mode, buffering=buffering, TypeError: 'NoneType' object cannot be interpreted as an integer ``` Automerge-Triggered-By: @vsajip
* bpo-41672: Fix type mismatches in imaplib docs (GH-22207)Norbert Cyran2020-09-121-2/+2
|
* bpo-39651: Fix asyncio proactor _write_to_self() (GH-22197)Victor Stinner2020-09-123-9/+23
| | | | | Fix a race condition in the call_soon_threadsafe() method of asyncio.ProactorEventLoop: do nothing if the self-pipe socket has been closed.
* bpo-41731: Make test_cmd_line_script pass with -vv (GH-22206)Terry Jan Reedy2020-09-122-1/+2
| | | | | Argument script_exec_args is usually an absolute file name, but twice has form ['-m', 'module_name'].
* bpo-41729: Fix test_winconsole failures (3) and hang (GH-22146)Terry Jan Reedy2020-09-121-1/+1
| | | | The problems occured with a repository build on machine with freshly updated Windows 10 Pro.
* [doc] struct: update note about network byte order form to be more helpful ↵Stargirl Flowers2020-09-111-2/+4
| | | | | (GH-22201) Update the sentence to provide some context on why network byte order is defined as big endian.
* Doc: Fix alphabetical ordering of removeprefix/suffix. (GH-22194)Benjamin Peterson2020-09-111-27/+28
|
* bpo-37149: Change Shipman tkinter link from archive.org to TkDocs (GH-22188)Mark Roseman2020-09-102-1/+2
| | | | The new link responds much faster and begins with a short explanation of the status of the doc.
* bpo-1635741: Port cmath to multi-phase init (PEP 489) (GH-22165)Mohamed Koubaa2020-09-102-30/+50
|
* Update logging documentation to tidy up formatting (GH-22173)Bar Harel2020-09-101-2/+1
|
* [doc] Remove superfluous comment about equal in f-strings (GH-22006)Andre Delfino2020-09-091-1/+1
| | | Automerge-Triggered-By: @kushaldas
* Update idlelib/help.html to current IDLE doc (GH-22181)Terry Jan Reedy2020-09-091-4/+4
|
* Add missing colon to IDLE doc markup (GH-22007)Andre Delfino2020-09-091-1/+1
|
* bpo-41428: Implementation for PEP 604 (GH-21515)Maggie Moss2020-09-0913-17/+693
| | | | | See https://www.python.org/dev/peps/pep-0604/ for more information. Co-authored-by: Pablo Galindo <pablogsal@gmail.com>
* bpo-41687: Fix error handling in Solaris sendfile implementation (GH-22128)Jakub Kulík2020-09-091-3/+2
| | | | | | | I just realized that my recent PR with sendfile on Solaris ([PR 22040](https://github.com/python/cpython/pull/22040)) has broken error handling. Sorry for that, this simple followup fixes that. Automerge-Triggered-By: @1st1
* Add minor clarification in logging documentation. (GH-22167)Vinay Sajip2020-09-091-3/+3
|
* Fix compiler warnings in init_dump_ascii_wstr() (GH-22150)Victor Stinner2020-09-091-1/+1
| | | | | | | | | | | | | | | | | Fix GCC 9.3 (using -O3) warnings on x86: initconfig.c: In function ‘init_dump_ascii_wstr’: initconfig.c:2679:34: warning: format ‘%lc’ expects argument of type ‘wint_t’, but argument 2 has type ‘wchar_t’ {aka ‘long int’} 2679 | PySys_WriteStderr("%lc", ch); initconfig.c:2682:38: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 2 has type ‘wchar_t’ {aka ‘long int’} 2682 | PySys_WriteStderr("\\x%02x", ch); initconfig.c:2686:38: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 2 has type ‘wchar_t’ {aka ‘long int’} 2686 | PySys_WriteStderr("\\U%08x", ch); initconfig.c:2690:38: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 2 has type ‘wchar_t’ {aka ‘long int’} 2690 | PySys_WriteStderr("\\u%04x", ch);
* bpo-41726: Update the refcounts info of PyType_FromModuleAndSpec in ↵Hai Shi2020-09-092-0/+6
| | | | | refcounts.dat (GH-22112) Update refcounts info of PyType_FromModuleAndSpec in refcounts.dat
* bpo-1635741: port scproxy to multi-phase init (GH-22164)Mohamed Koubaa2020-09-092-13/+11
|
* bpo-41525: Make the Python program help ASCII-only (GH-21836)Serhiy Storchaka2020-09-094-3/+8
|
* [doc] Fix padding in timeit (GH-22152)Andre Delfino2020-09-081-1/+1
| | | Compare -p and -u options help in rendered output to see the difference.
* Fix typo in typing.py (GH-22121)Graham Bleaney2020-09-081-1/+1
| | | This is a trivial PR to fix a typo in a docstring in typing.py. From reverences -> references
* bpo-38762: Extend logging.test_multiprocessing to cover missing cases. ↵Irit Katriel2020-09-081-6/+56
| | | | (GH-22142)
* Fix incorrect bpo number in change notes. (GH-22151)Mark Shannon2020-09-081-1/+1
|
* bpo-1635741: Port mashal module to multi-phase init (#22149)Victor Stinner2020-09-082-16/+20
| | | | Port the 'mashal' extension module to the multi-phase initialization API (PEP 489).
* bpo-1635741: Port _string module to multi-phase init (GH-22148)Victor Stinner2020-09-082-9/+7
| | | | Port the _string extension module to the multi-phase initialization API (PEP 489).
* bpo-1635741: Convert _sha256 types to heap types (GH-22134)Mohamed Koubaa2020-09-083-103/+127
| | | Convert the _sha256 extension module types to heap types.
* bpo-1635741: Port the termios to multi-phase init (PEP 489) (GH-22139)Mohamed Koubaa2020-09-082-81/+103
|
* bpo-41732: add iterator to memoryview (GH-22119)dxflores2020-09-082-1/+108
|
* bpo-40744: Drop support for SQLite pre 3.7.3 (GH-20909)Erlend Egeberg Aasland2020-09-0712-94/+29
| | | | | | Remove code required to support SQLite pre 3.7.3. Co-written-by: Berker Peksag <berker.peksag@gmail.com> Co-written-by: Sergey Fedoseev <fedoseev.sergey@gmail.com>
* bpo-41316: Make tarfile follow specs for FNAME (GH-21511)Artem Bulgakov2020-09-074-1/+17
| | | | | | | | | | tarfile writes full path to FNAME field of GZIP format instead of just basename if user specified absolute path. Some archive viewers may process file incorrectly. Also it creates security issue because anyone can know structure of directories on system and know username or other personal information. RFC1952 says about FNAME: This is the original name of the file being compressed, with any directory components removed. So tarfile must remove directory names from FNAME and write only basename of file. Automerge-Triggered-By: @jaraco
* bpo-41720: Add "return NotImplemented" in turtle.Vec2D.__rmul__(). (GH-22092)Serhiy Storchaka2020-09-073-2/+19
|
* bpo-1635741 port _curses_panel to multi-phase init (PEP 489) (GH-21986)Mohamed Koubaa2020-09-073-155/+273
|
* bpo-1635741: Port _overlapped module to multi-phase init (GH-22051)Mohamed Koubaa2020-09-072-67/+108
| | | Port the _overlapped extension module to multi-phase initialization (PEP 489).
* bpo-1635741: Port _opcode module to multi-phase init (PEP 489) (GH-22050)Mohamed Koubaa2020-09-072-14/+9
|
* bpo-1635741 port zlib module to multi-phase init (GH-21995)Mohamed Koubaa2020-09-073-252/+363
| | | Port the zlib extension module to multi-phase initialization (PEP 489).
* [doc] Add link to Generic in typing (GH-22125)Andre Delfino2020-09-061-1/+1
|
* bpo-41513: Expand comments and add references for a better understanding ↵Raymond Hettinger2020-09-061-5/+21
| | | | (GH-22123)
* bpo-1635741: Port _sha1, _sha512, _md5 to multiphase init (GH-21818)Mohamed Koubaa2020-09-067-251/+359
| | | | Port the _sha1, _sha512, and _md5 extension modules to multi-phase initialization API (PEP 489).
* closes bpo-41723: Fix an error in the py_compile documentation. (GH-22110)Zackery Spytz2020-09-051-1/+1
|
* [doc] Fix padding in some typing definitions (GH-22114)Andre Delfino2020-09-051-12/+12
| | | Automerge-Triggered-By: @gvanrossum
* Fix documented Python version for venv --upgrade-deps (GH-22113)johnthagen2020-09-051-1/+1
| | | | | | | | | | Fixes incorrect Python version added for `venv` `--upgrade-deps` in #13100. This feature was added in Python 3.9 not 3.8. Relates to: - - https://github.com/python/cpython/commit/1cba1c9abadf76f458ecf883a48515aa3b534dbd Automerge-Triggered-By: @vsajip
* bpo-40318: Migrate to SQLite3 trace v2 API (GH-19581)Erlend Egeberg Aasland2020-09-052-0/+37
| | | | | Ref. https://sqlite.org/c3ref/trace_v2.html Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
* bpo-41687: Fix sendfile implementation to work with Solaris (#22040)Jakub Kulík2020-09-053-0/+26
|
* bpo-41627: Distinguish 32 and 64-bit user site packages on Windows (GH-22098)Steve Dower2020-09-053-10/+17
| | | Also fixes the error message returned when sysconfig fails to interpolate a variable correctly.
* bpo-38585: Remove references to defusedexpat (GH-22095)Zackery Spytz2020-09-041-11/+3
| | | defusedexpat is not maintained.
* bpo-41721: Add xlc options (GH-22096)Stefan Krah2020-09-042-2/+8
|
* bpo-40486: Specify what happens if directory content change diring iteration ↵Serhiy Storchaka2020-09-043-3/+17
| | | | (GH-22025)
* bpo-41638: Improve ProgrammingError message for absent parameter. (GH-21999)Serhiy Storchaka2020-09-042-1/+4
| | | | | It contains now the name of the parameter instead of its index when parameters are supplied as a dict.