diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-02-17 07:14:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-17 07:14:41 (GMT) |
commit | dda938683c48197ab7e775144136f433a5d43103 (patch) | |
tree | ff85eda0448b7802a4ce88b9cad5dd0bbf8d58a7 /Misc | |
parent | f2d2e6169eb31e1a223d29d5de07e80939939106 (diff) | |
download | cpython-dda938683c48197ab7e775144136f433a5d43103.zip cpython-dda938683c48197ab7e775144136f433a5d43103.tar.gz cpython-dda938683c48197ab7e775144136f433a5d43103.tar.bz2 |
bpo-32852: Fix trace changing sys.argv to tuple. (GH-5692)
(cherry picked from commit 9f4223261fd129ad7b9a09b2b0d625d1bb90b22b)
Co-authored-by: Kyle Altendorf <sda@fstab.net>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-02-15-12-04-29.bpo-32852.HDqIxM.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-02-15-12-04-29.bpo-32852.HDqIxM.rst b/Misc/NEWS.d/next/Library/2018-02-15-12-04-29.bpo-32852.HDqIxM.rst new file mode 100644 index 0000000..8eabbfa --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-02-15-12-04-29.bpo-32852.HDqIxM.rst @@ -0,0 +1 @@ +Make sure sys.argv remains as a list when running trace. |