This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Using sys.exit() over exit() in inspect.py
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: miss-islington, signing_agreement, steve.dower
Priority: normal Keywords: patch

Created on 2019-09-08 18:22 by signing_agreement, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 15666 merged signing_agreement, 2019-09-08 18:22
PR 15783 merged miss-islington, 2019-09-09 14:15
PR 15784 merged miss-islington, 2019-09-09 14:16
Messages (5)
msg351336 - (view) Author: (signing_agreement) * Date: 2019-09-08 18:22
The change is arguably trivial, but given that this is a code change in a commonly-used module, I was asked to create an issue and a NEWS entry for it.
msg351475 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2019-09-09 14:15
New changeset e3c59a75279b0df4e7553d6f0031e202de434e43 by Steve Dower (Alan Yee) in branch 'master':
bpo-38059: Using sys.exit() over exit() in inspect.py (GH-15666)
https://github.com/python/cpython/commit/e3c59a75279b0df4e7553d6f0031e202de434e43
msg351476 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2019-09-09 14:18
Thanks! This helps people who use the "-S" option.
msg351497 - (view) Author: miss-islington (miss-islington) Date: 2019-09-09 15:19
New changeset b7bf632d4ebacfeffc8770a7848c690fa2a90a62 by Miss Islington (bot) in branch '3.7':
bpo-38059: Using sys.exit() over exit() in inspect.py (GH-15666)
https://github.com/python/cpython/commit/b7bf632d4ebacfeffc8770a7848c690fa2a90a62
msg351498 - (view) Author: miss-islington (miss-islington) Date: 2019-09-09 15:20
New changeset 0d4396c04cba5ac2b66fdaa23c01db84b1b54227 by Miss Islington (bot) in branch '3.8':
bpo-38059: Using sys.exit() over exit() in inspect.py (GH-15666)
https://github.com/python/cpython/commit/0d4396c04cba5ac2b66fdaa23c01db84b1b54227
History
Date User Action Args
2022-04-11 14:59:19adminsetgithub: 82240
2019-09-09 15:20:39miss-islingtonsetmessages: + msg351498
2019-09-09 15:19:16miss-islingtonsetnosy: + miss-islington
messages: + msg351497
2019-09-09 14:18:05steve.dowersetstatus: open -> closed
resolution: fixed
messages: + msg351476

stage: patch review -> resolved
2019-09-09 14:16:05miss-islingtonsetpull_requests: + pull_request15437
2019-09-09 14:15:57miss-islingtonsetkeywords: + patch
stage: patch review
pull_requests: + pull_request15436
2019-09-09 14:15:46steve.dowersetnosy: + steve.dower
messages: + msg351475
2019-09-08 18:22:30signing_agreementcreate