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: Dialog.py crashes when putty Window resized
Type: behavior Stage: resolved
Components: Windows Versions: Python 2.6
process
Status: closed Resolution: third party
Dependencies: Superseder:
Assigned To: Nosy List: BreamoreBoy, harshaap
Priority: normal Keywords:

Created on 2013-02-27 14:52 by harshaap, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg183154 - (view) Author: Harsha (harshaap) Date: 2013-02-27 14:52
Dialog.py crashes when putty windows is resized. 

    return simple_menu(d, config, "Select an option:", choices)
  File "/log-root/config-ac", line 499, in simple_menu
    code, tag = d.menu(str(text), height=15, width=45, menu_height=min(8, len(SI
	MPLE_MENU_CHOICES)), choices=SIMPLE_MENU_CHOICES, **kwargs)
  File "/usr/lib/python2.6/site-packages/dialog.py", line 1253, in menu
    (code, output) = self._perform(*(cmd,), **kwargs)
  File "/usr/lib/python2.6/site-packages/dialog.py", line 825, in _perform
    child_rfd)
  File "/usr/lib/python2.6/site-packages/dialog.py", line 762, in _wait_for_prog
  ram_termination  "environment variable)" % exit_code)
dialog.DialogError/usr/lib/python2.6/site-packages/dialog.py:87: DeprecationWarn
ing: BaseException.message has been deprecated as of Python 2.6
  return "<%s: %s>" % (self.__class__.__name__, self.message)
: <DialogError: the dialog-like program exited with code 3 (was passed to it as
the DIALOG_ERROR environment variable)>
msg223391 - (view) Author: Mark Lawrence (BreamoreBoy) * Date: 2014-07-17 23:52
I'm sorry but this site is for reporting bugs on Python itself, not on third party packages.
History
Date User Action Args
2022-04-11 14:57:42adminsetgithub: 61510
2014-07-18 02:04:40berker.peksagsetstatus: open -> closed
type: crash -> behavior
resolution: third party
stage: resolved
2014-07-17 23:52:44BreamoreBoysetnosy: + BreamoreBoy
messages: + msg223391
2013-02-27 14:52:04harshaapcreate