Skip to content

gh-72327: Add help message for pip in REPL #8536

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 17 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
set __wrapped__ attr on new excepthook
  • Loading branch information
tomviner committed Aug 1, 2018
commit 2d302e6cd1ff0fc058d14b7583c8352d5125640d
1 change: 1 addition & 0 deletions Lib/site.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,7 @@ def detect_pip_usage_in_repl(typ, value, traceback):

old_excepthook(typ, value, traceback)

detect_pip_usage_in_repl.__wrapped__ = old_excepthook
sys.excepthook = detect_pip_usage_in_repl


Expand Down