diff options
Diffstat (limited to 'Lib/site.py')
-rw-r--r-- | Lib/site.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/site.py b/Lib/site.py index 8e7a20d..0a0dc47 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -517,10 +517,7 @@ def register_readline(): pass if readline.get_current_history_length() == 0: - try: - from _pyrepl.main import CAN_USE_PYREPL - except ImportError: - CAN_USE_PYREPL = False + from _pyrepl.main import CAN_USE_PYREPL # If no history was loaded, default to .python_history, # or PYTHON_HISTORY. # The guard is necessary to avoid doubling history size at |