From 88df4051ed09c2c9485d498a38446d6a044a9c7c Mon Sep 17 00:00:00 2001 From: shimizukawa <> Date: Sat, 9 Apr 2011 16:52:04 +0900 Subject: [PATCH] remove 'exceptions' package name. it is not need in Python2 and Python3. --- pyreadline/lineeditor/history.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pyreadline/lineeditor/history.py b/pyreadline/lineeditor/history.py index 3eae6dd..dd1362f 100644 --- a/pyreadline/lineeditor/history.py +++ b/pyreadline/lineeditor/history.py @@ -15,9 +15,7 @@ else: import lineobj -import exceptions - -class EscapeHistory(exceptions.Exception): +class EscapeHistory(Exception): pass from pyreadline.logger import log