cpython/Misc/NEWS.d
Gregory P. Smith 5a8ddcc452
[3.9] bpo-43776: Remove list call from args in Popen repr (GH-25338) (GH-26510)
Removes the `list` call in the Popen `repr`.

Current implementation:

For cmd = `python --version`,  with `shell=True`.

```bash
<Popen: returncode: None args: ['p', 'y', 't', 'h', 'o', 'n', ' ', '-', '-',...>
```

For `shell=False` and args=`['python', '--version']`, the output is correct:

```bash
<Popen: returncode: None args: ['python', '--version']>
```

With the new changes the `repr`  yields:

For cmd = `python --version`,  with `shell=True`:

```bash
<Popen: returncode: None args: 'python --version'>
```

For `shell=False` and args=`['python', '--version']`, the output:

```bash
<Popen: returncode: None args: ['python', '--version']>
```

Automerge-Triggered-By: GH:gpshead.
(cherry picked from commit db0c5b786d)

Co-authored-by: M. Kocher <michael.kocher@me.com>

Co-authored-by: M. Kocher <michael.kocher@me.com>
2021-06-02 21:15:26 -07:00
..
next [3.9] bpo-43776: Remove list call from args in Popen repr (GH-25338) (GH-26510) 2021-06-02 21:15:26 -07:00
3.5.0.rst
3.5.0a1.rst
3.5.0a2.rst
3.5.0a3.rst
3.5.0a4.rst
3.5.0b1.rst
3.5.0b2.rst
3.5.0b3.rst
3.5.0b4.rst
3.5.0rc1.rst
3.5.0rc2.rst
3.5.0rc3.rst
3.5.0rc4.rst
3.5.1.rst
3.5.1rc1.rst
3.5.2.rst
3.5.2rc1.rst
3.5.3.rst
3.5.3rc1.rst
3.5.4.rst
3.5.4rc1.rst
3.5.5.rst
3.5.5rc1.rst
3.6.0.rst
3.6.0a1.rst
3.6.0a2.rst
3.6.0a3.rst
3.6.0a4.rst
3.6.0b1.rst
3.6.0b2.rst
3.6.0b3.rst
3.6.0b4.rst
3.6.0rc1.rst
3.6.0rc2.rst
3.6.1.rst
3.6.1rc1.rst
3.6.2.rst
3.6.2rc1.rst
3.6.2rc2.rst
3.6.3.rst
3.6.3rc1.rst
3.6.4.rst
3.6.4rc1.rst
3.6.5.rst
3.6.5rc1.rst
3.6.6.rst
3.6.6rc1.rst
3.7.0.rst
3.7.0a1.rst
3.7.0a2.rst
3.7.0a3.rst
3.7.0a4.rst
3.7.0b1.rst
3.7.0b2.rst
3.7.0b3.rst
3.7.0b4.rst
3.7.0b5.rst
3.7.0rc1.rst
3.8.0a1.rst [3.9] Remove duplicated words words (GH-20413). (GH-22296) 2020-10-04 17:32:39 +02:00
3.8.0a2.rst
3.8.0a3.rst
3.8.0a4.rst
3.8.0b1.rst [3.9] Remove duplicated words words (GH-20413). (GH-22296) 2020-10-04 17:32:39 +02:00
3.9.0.rst Python 3.9.0 2020-10-05 17:07:58 +02:00
3.9.0a1.rst bpo-4630: Fix errors in Lib/idlelib/NEWS.txt (GH-21594) 2020-07-22 23:25:59 -07:00
3.9.0a2.rst Correct name of bytecode in change note. (GH-22723) (#22765) 2020-10-19 17:44:25 +02:00
3.9.0a3.rst Python 3.9.0a3 2020-01-24 22:05:07 +01:00
3.9.0a4.rst bpo-39572: Address typo in CHANGELOG. (GH-24999) 2021-04-22 17:58:42 -07:00
3.9.0a5.rst bpo-39871: Fix an error in a news entry (GH-21749) 2020-08-06 22:45:49 -07:00
3.9.0a6.rst Python 3.9.0a6 2020-04-27 22:44:04 +02:00
3.9.0b1.rst bpo-34956: edit and format better NEWS item in 3.9.0b1 changelog (GH-20255) 2020-05-20 02:47:07 -07:00
3.9.0b2.rst Python 3.9.0b2 2020-06-08 20:41:34 +02:00
3.9.0b3.rst Python 3.9.0b3 2020-06-09 20:52:10 +02:00
3.9.0b4.rst Python 3.9.0b4 2020-07-02 19:57:45 +02:00
3.9.0b5.rst Python 3.9.0b5 2020-07-20 19:47:09 +02:00
3.9.0rc1.rst Python 3.9.0rc1 2020-08-11 20:58:17 +02:00
3.9.0rc2.rst Python 3.9.0rc2 2020-09-16 23:23:13 +02:00
3.9.1.rst Python 3.9.1 2020-12-07 15:02:38 +01:00
3.9.1rc1.rst bpo-16396: fix BPO number in changelog (GH-23951) (GH-23956) 2020-12-29 13:52:12 +02:00
3.9.2.rst Python 3.9.2 2021-02-19 13:31:44 +01:00
3.9.2rc1.rst Python 3.9.2rc1 2021-02-16 21:10:19 +01:00
3.9.3.rst Python 3.9.3 2021-04-02 11:51:53 +02:00
3.9.4.rst Python 3.9.4 2021-04-04 14:56:53 +02:00
3.9.5.rst Fix typo in blurb entry (GH-26043) 2021-05-11 15:28:57 -07:00