[Touch-packages] [Bug 1578927] Re: idle crashes on configure through menu

2016-07-13 Thread Launchpad Bug Tracker
This bug was fixed in the package python2.7 - 2.7.12-1~16.04

---
python2.7 (2.7.12-1~16.04) xenial-proposed; urgency=medium

  * SRU: LP: #1591895. Backport 2.7.12 to 16.04 LTS.

python2.7 (2.7.12-1) unstable; urgency=medium

  * Python 2.7.12 release.

python2.7 (2.7.12~rc1-2) unstable; urgency=medium

  * Extend debian/copyright to the files shipped in the wheel files.

python2.7 (2.7.12~rc1-1) unstable; urgency=medium

  * Python 2.7.12 release candidate 1.
- Issue #20041: Fixed TypeError when frame.f_trace is set to None.
- Issue #25702: A --with-lto configure option has been added that will
  enable link time optimizations at build time during a make profile-opt.
  Some compilers and toolchains are known to not produce stable code when
  using LTO, be sure to test things thoroughly before relying on it.
  It can provide a few % speed up over profile-opt alone.
- Issue #26556: Update expat to 2.1.1, fixes CVE-2015-1283.
- Fix TLS stripping vulnerability in smptlib, CVE-2016-0772.
- Issue #7356: ctypes.util: Make parsing of ldconfig output independent of
  the locale.
- Issue #25738: Stop BaseHTTPServer.BaseHTTPRequestHandler.send_error()
  from sending a message body for 205 Reset Content.  Also, don't send the
  Content-Type header field in responses that don't have a body.
- Issue #21313: Fix the "platform" module to tolerate when sys.version
  contains truncated build information.
- Issue #27211: Fix possible memory corruption in io.IOBase.readline().
- Issue #5124: Paste with text selected now replaces the selection on X11.
  This matches how paste works on Windows, Mac, most modern Linux apps,
  and ttk widgets.
- Issue #24759: Make clear in idlelib.idle_test.__init__ that the directory
  is a private implementation of test.test_idle and tool for maintainers.
- Issue #21916: Added tests for the turtle module.
- Issue #27229: Fix the cross-compiling pgen rule for in-tree builds.
- Issue #17500, and https://github.com/python/pythondotorg/issues/945: 
Remove
  unused and outdated icons.

python2.7 (2.7.11-11) unstable; urgency=medium

  * Update to 20160602 from the 2.7 branch.
- Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with
  the "N" format unit.
- Issue #27114: Fix SSLContext._load_windows_store_certs fails with
  PermissionError.
- Issue #26673: When tk reports font size as 0, change to size 10.
  Such fonts on Linux prevented the configuration dialog from opening.
- Issue #27044: Add ConfigDialog.remove_var_callbacks to stop memory leaks.
- In the 'IDLE-console differences' section of the IDLE doc, clarify
  how running with IDLE affects sys.modules and the standard streams.
- Issue #25507: Fix incorrect change in IOBinding that prevented printing.
  Change also prevented saving shell window with non-ascii characters.
  Augment IOBinding htest to include all major IOBinding functions.
- Issue #25905: Revert unwanted conversion of ' to ’ RIGHT SINGLE QUOTATION
  MARK in README.txt and open this and NEWS.txt with 'ascii'.
  Re-encode CREDITS.txt to utf-8 and open it with 'utf-8'.
  * Rebuild to pick up the GNU triplet change on i386 archs. Closes: #826128.

python2.7 (2.7.11-10) unstable; urgency=medium

  * Update to 20160518 from the 2.7 branch.
- Issue #27039: Fixed bytearray.remove() for values greater than 127.
- Issue #14132: Fix urllib.request redirect handling when the target only
  has a query string.
- Removed the requirements for the ctypes and modulefinder modules to be
  compatible with earlier Python versions.
- Issue #22274: In the subprocess module, allow stderr to be redirected to
  stdout even when stdout is not redirected.
- Issue #12045: Avoid duplicate execution of command in
  ctypes.util._get_soname().
- Issue #26960: Backported #16270 from Python 3 to Python 2, to prevent
  urllib from hanging when retrieving certain FTP files.

python2.7 (2.7.11-9) unstable; urgency=medium

  * Update to 20160509 from the 2.7 branch.
- Issue #25745: Fixed leaking a userptr in curses panel destructor.
- Issue #17765: weakref.ref() no longer silently ignores keyword arguments.
- Issue #26873: xmlrpclib now raises ResponseError on unsupported type tags
  instead of silently return incorrect result.
- Issue #24114: Fix an uninitialized variable in `ctypes.util`.
- Issue #26864: In urllib, change the proxy bypass host checking against
  no_proxy to be case-insensitive, and to not match unrelated host names
  that happen to have a bypassed hostname as a suffix.
- Issue #26804: urllib will prefer lower_case proxy environment variables
  over UPPER_CASE or Mixed_Case ones.
- Issue #26837: assertSequenceEqual() now correctly outputs non-stringified
  differing items.  This affects assertListEqual() and 

[Touch-packages] [Bug 1578927] Re: idle crashes on configure through menu

2016-07-08 Thread Matthias Klose
now fixed in 2.7.12 available in xenial-proposed

** Tags removed: verification-needed
** Tags added: verification-done

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to python2.7 in Ubuntu.
https://bugs.launchpad.net/bugs/1578927

Title:
  idle crashes on configure through menu

Status in Python:
  Fix Released
Status in python2.7 package in Ubuntu:
  Fix Released
Status in python2.7 source package in Xenial:
  Fix Committed

Bug description:
  IDLE crashes when "Configure IDLE" is selected through "Options".
  Terminal output is as follows:

  Exception in Tkinter callback
  Traceback (most recent call last):
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1540, in __call__
  return self.func(*args)
File "/usr/lib/python2.7/idlelib/EditorWindow.py", line 543, in 
config_dialog
  configDialog.ConfigDialog(self.top,'Settings')
File "/usr/lib/python2.7/idlelib/configDialog.py", line 72, in __init__
  self.LoadConfigs()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 1103, in LoadConfigs
  self.LoadFontCfg()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 1005, in LoadFontCfg
  self.SetFontSample()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 883, in 
SetFontSample
  self.labelFontSample.config(font=newFont)
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1329, in configure
  return self._configure('configure', cnf, kw)
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1320, in _configure
  self.tk.call(_flatten((self._w, cmd)) + self._options(cnf))
  TclError: expected integer but got ""

  1) Ubuntu 16.04 LTS
  2) Package idle 2.7.11-1
  3) Expected Options Menu
  4) Instead nothing happened.

To manage notifications about this bug go to:
https://bugs.launchpad.net/python/+bug/1578927/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1578927] Re: idle crashes on configure through menu

2016-07-02 Thread Martin Pitt
Hello Sean, or anyone else affected,

Accepted python2.7 into xenial-proposed. The package will build now and
be available at
https://launchpad.net/ubuntu/+source/python2.7/2.7.12-1~16.04 in a few
hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Changed in: python2.7 (Ubuntu Xenial)
   Status: Confirmed => Fix Committed

** Tags added: verification-needed

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to python2.7 in Ubuntu.
https://bugs.launchpad.net/bugs/1578927

Title:
  idle crashes on configure through menu

Status in Python:
  Fix Released
Status in python2.7 package in Ubuntu:
  Fix Released
Status in python2.7 source package in Xenial:
  Fix Committed

Bug description:
  IDLE crashes when "Configure IDLE" is selected through "Options".
  Terminal output is as follows:

  Exception in Tkinter callback
  Traceback (most recent call last):
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1540, in __call__
  return self.func(*args)
File "/usr/lib/python2.7/idlelib/EditorWindow.py", line 543, in 
config_dialog
  configDialog.ConfigDialog(self.top,'Settings')
File "/usr/lib/python2.7/idlelib/configDialog.py", line 72, in __init__
  self.LoadConfigs()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 1103, in LoadConfigs
  self.LoadFontCfg()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 1005, in LoadFontCfg
  self.SetFontSample()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 883, in 
SetFontSample
  self.labelFontSample.config(font=newFont)
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1329, in configure
  return self._configure('configure', cnf, kw)
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1320, in _configure
  self.tk.call(_flatten((self._w, cmd)) + self._options(cnf))
  TclError: expected integer but got ""

  1) Ubuntu 16.04 LTS
  2) Package idle 2.7.11-1
  3) Expected Options Menu
  4) Instead nothing happened.

To manage notifications about this bug go to:
https://bugs.launchpad.net/python/+bug/1578927/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1578927] Re: idle crashes on configure through menu

2016-06-17 Thread Sean Pedersen
Solution:

/idlelib/configDialog-old.py
114c114
< self.fontSize = IntVar(parent)
---
> self.fontSize = StringVar(parent)

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to python2.7 in Ubuntu.
https://bugs.launchpad.net/bugs/1578927

Title:
  idle crashes on configure through menu

Status in Python:
  Fix Released
Status in python2.7 package in Ubuntu:
  Fix Released
Status in python2.7 source package in Xenial:
  Confirmed

Bug description:
  IDLE crashes when "Configure IDLE" is selected through "Options".
  Terminal output is as follows:

  Exception in Tkinter callback
  Traceback (most recent call last):
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1540, in __call__
  return self.func(*args)
File "/usr/lib/python2.7/idlelib/EditorWindow.py", line 543, in 
config_dialog
  configDialog.ConfigDialog(self.top,'Settings')
File "/usr/lib/python2.7/idlelib/configDialog.py", line 72, in __init__
  self.LoadConfigs()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 1103, in LoadConfigs
  self.LoadFontCfg()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 1005, in LoadFontCfg
  self.SetFontSample()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 883, in 
SetFontSample
  self.labelFontSample.config(font=newFont)
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1329, in configure
  return self._configure('configure', cnf, kw)
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1320, in _configure
  self.tk.call(_flatten((self._w, cmd)) + self._options(cnf))
  TclError: expected integer but got ""

  1) Ubuntu 16.04 LTS
  2) Package idle 2.7.11-1
  3) Expected Options Menu
  4) Instead nothing happened.

To manage notifications about this bug go to:
https://bugs.launchpad.net/python/+bug/1578927/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1578927] Re: idle crashes on configure through menu

2016-06-17 Thread Sean Pedersen
Correction: Options menu opens; Options window does not.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to python2.7 in Ubuntu.
https://bugs.launchpad.net/bugs/1578927

Title:
  idle crashes on configure through menu

Status in Python:
  Fix Released
Status in python2.7 package in Ubuntu:
  Fix Released
Status in python2.7 source package in Xenial:
  Confirmed

Bug description:
  IDLE crashes when "Configure IDLE" is selected through "Options".
  Terminal output is as follows:

  Exception in Tkinter callback
  Traceback (most recent call last):
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1540, in __call__
  return self.func(*args)
File "/usr/lib/python2.7/idlelib/EditorWindow.py", line 543, in 
config_dialog
  configDialog.ConfigDialog(self.top,'Settings')
File "/usr/lib/python2.7/idlelib/configDialog.py", line 72, in __init__
  self.LoadConfigs()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 1103, in LoadConfigs
  self.LoadFontCfg()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 1005, in LoadFontCfg
  self.SetFontSample()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 883, in 
SetFontSample
  self.labelFontSample.config(font=newFont)
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1329, in configure
  return self._configure('configure', cnf, kw)
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1320, in _configure
  self.tk.call(_flatten((self._w, cmd)) + self._options(cnf))
  TclError: expected integer but got ""

  1) Ubuntu 16.04 LTS
  2) Package idle 2.7.11-1
  3) Expected Options Menu
  4) Instead nothing happened.

To manage notifications about this bug go to:
https://bugs.launchpad.net/python/+bug/1578927/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1578927] Re: idle crashes on configure through menu

2016-06-05 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: python2.7 (Ubuntu Xenial)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to python2.7 in Ubuntu.
https://bugs.launchpad.net/bugs/1578927

Title:
  idle crashes on configure through menu

Status in Python:
  Fix Released
Status in python2.7 package in Ubuntu:
  Fix Released
Status in python2.7 source package in Xenial:
  Confirmed

Bug description:
  IDLE crashes when "Configure IDLE" is selected through "Options".
  Terminal output is as follows:

  Exception in Tkinter callback
  Traceback (most recent call last):
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1540, in __call__
  return self.func(*args)
File "/usr/lib/python2.7/idlelib/EditorWindow.py", line 543, in 
config_dialog
  configDialog.ConfigDialog(self.top,'Settings')
File "/usr/lib/python2.7/idlelib/configDialog.py", line 72, in __init__
  self.LoadConfigs()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 1103, in LoadConfigs
  self.LoadFontCfg()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 1005, in LoadFontCfg
  self.SetFontSample()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 883, in 
SetFontSample
  self.labelFontSample.config(font=newFont)
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1329, in configure
  return self._configure('configure', cnf, kw)
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1320, in _configure
  self.tk.call(_flatten((self._w, cmd)) + self._options(cnf))
  TclError: expected integer but got ""

  1) Ubuntu 16.04 LTS
  2) Package idle 2.7.11-1
  3) Expected Options Menu
  4) Instead nothing happened.

To manage notifications about this bug go to:
https://bugs.launchpad.net/python/+bug/1578927/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1578927] Re: idle crashes on configure through menu

2016-05-22 Thread Bug Watch Updater
** Changed in: python
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to python2.7 in Ubuntu.
https://bugs.launchpad.net/bugs/1578927

Title:
  idle crashes on configure through menu

Status in Python:
  Fix Released
Status in python2.7 package in Ubuntu:
  Fix Released
Status in python2.7 source package in Xenial:
  New

Bug description:
  IDLE crashes when "Configure IDLE" is selected through "Options".
  Terminal output is as follows:

  Exception in Tkinter callback
  Traceback (most recent call last):
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1540, in __call__
  return self.func(*args)
File "/usr/lib/python2.7/idlelib/EditorWindow.py", line 543, in 
config_dialog
  configDialog.ConfigDialog(self.top,'Settings')
File "/usr/lib/python2.7/idlelib/configDialog.py", line 72, in __init__
  self.LoadConfigs()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 1103, in LoadConfigs
  self.LoadFontCfg()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 1005, in LoadFontCfg
  self.SetFontSample()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 883, in 
SetFontSample
  self.labelFontSample.config(font=newFont)
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1329, in configure
  return self._configure('configure', cnf, kw)
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1320, in _configure
  self.tk.call(_flatten((self._w, cmd)) + self._options(cnf))
  TclError: expected integer but got ""

  1) Ubuntu 16.04 LTS
  2) Package idle 2.7.11-1
  3) Expected Options Menu
  4) Instead nothing happened.

To manage notifications about this bug go to:
https://bugs.launchpad.net/python/+bug/1578927/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1578927] Re: idle crashes on configure through menu

2016-05-10 Thread Launchpad Bug Tracker
This bug was fixed in the package python2.7 - 2.7.11-9

---
python2.7 (2.7.11-9) unstable; urgency=medium

  * Update to 20160509 from the 2.7 branch.
- Issue #25745: Fixed leaking a userptr in curses panel destructor.
- Issue #17765: weakref.ref() no longer silently ignores keyword arguments.
- Issue #26873: xmlrpclib now raises ResponseError on unsupported type tags
  instead of silently return incorrect result.
- Issue #24114: Fix an uninitialized variable in `ctypes.util`.
- Issue #26864: In urllib, change the proxy bypass host checking against
  no_proxy to be case-insensitive, and to not match unrelated host names
  that happen to have a bypassed hostname as a suffix.
- Issue #26804: urllib will prefer lower_case proxy environment variables
  over UPPER_CASE or Mixed_Case ones.
- Issue #26837: assertSequenceEqual() now correctly outputs non-stringified
  differing items.  This affects assertListEqual() and assertTupleEqual().
- Issue #26822: itemgetter, attrgetter and methodcaller objects no longer
  silently ignore keyword arguments.
- Issue #26657: Fix directory traversal vulnerability with SimpleHTTPServer
  on Windows.  This fixes a regression that was introduced in 2.7.7.
- Issue #26736: Used HTTPS for external links in the documentation if
  possible.
- Issue #22359: Avoid incorrect recursive $(MAKE), and disable the rules for
  running pgen when cross-compiling.
- Issue #26799: Fix python-gdb.py: don't get C types once when the Python
  code is loaded, but get C types on demand. The C types can change if
  python-gdb.py is loaded before the Python executable.
  * Fix issue #26673, runtime error in idle3. LP: #1578927.

 -- Matthias Klose   Mon, 09 May 2016 17:54:33 +0200

** Changed in: python2.7 (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to python2.7 in Ubuntu.
https://bugs.launchpad.net/bugs/1578927

Title:
  idle crashes on configure through menu

Status in Python:
  New
Status in python2.7 package in Ubuntu:
  Fix Released
Status in python2.7 source package in Xenial:
  New

Bug description:
  IDLE crashes when "Configure IDLE" is selected through "Options".
  Terminal output is as follows:

  Exception in Tkinter callback
  Traceback (most recent call last):
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1540, in __call__
  return self.func(*args)
File "/usr/lib/python2.7/idlelib/EditorWindow.py", line 543, in 
config_dialog
  configDialog.ConfigDialog(self.top,'Settings')
File "/usr/lib/python2.7/idlelib/configDialog.py", line 72, in __init__
  self.LoadConfigs()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 1103, in LoadConfigs
  self.LoadFontCfg()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 1005, in LoadFontCfg
  self.SetFontSample()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 883, in 
SetFontSample
  self.labelFontSample.config(font=newFont)
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1329, in configure
  return self._configure('configure', cnf, kw)
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1320, in _configure
  self.tk.call(_flatten((self._w, cmd)) + self._options(cnf))
  TclError: expected integer but got ""

  1) Ubuntu 16.04 LTS
  2) Package idle 2.7.11-1
  3) Expected Options Menu
  4) Instead nothing happened.

To manage notifications about this bug go to:
https://bugs.launchpad.net/python/+bug/1578927/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1578927] Re: idle crashes on configure through menu

2016-05-09 Thread Bug Watch Updater
** Changed in: python
   Status: Unknown => New

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to python2.7 in Ubuntu.
https://bugs.launchpad.net/bugs/1578927

Title:
  idle crashes on configure through menu

Status in Python:
  New
Status in python2.7 package in Ubuntu:
  New
Status in python2.7 source package in Xenial:
  New

Bug description:
  IDLE crashes when "Configure IDLE" is selected through "Options".
  Terminal output is as follows:

  Exception in Tkinter callback
  Traceback (most recent call last):
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1540, in __call__
  return self.func(*args)
File "/usr/lib/python2.7/idlelib/EditorWindow.py", line 543, in 
config_dialog
  configDialog.ConfigDialog(self.top,'Settings')
File "/usr/lib/python2.7/idlelib/configDialog.py", line 72, in __init__
  self.LoadConfigs()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 1103, in LoadConfigs
  self.LoadFontCfg()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 1005, in LoadFontCfg
  self.SetFontSample()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 883, in 
SetFontSample
  self.labelFontSample.config(font=newFont)
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1329, in configure
  return self._configure('configure', cnf, kw)
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1320, in _configure
  self.tk.call(_flatten((self._w, cmd)) + self._options(cnf))
  TclError: expected integer but got ""

  1) Ubuntu 16.04 LTS
  2) Package idle 2.7.11-1
  3) Expected Options Menu
  4) Instead nothing happened.

To manage notifications about this bug go to:
https://bugs.launchpad.net/python/+bug/1578927/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1578927] Re: idle crashes on configure through menu

2016-05-09 Thread Matthias Klose
** Package changed: python-defaults (Ubuntu) => python2.7 (Ubuntu)

** Bug watch added: Python Roundup #26673
   http://bugs.python.org/issue26673

** Also affects: python via
   http://bugs.python.org/issue26673
   Importance: Unknown
   Status: Unknown

** Also affects: python2.7 (Ubuntu Xenial)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to python2.7 in Ubuntu.
https://bugs.launchpad.net/bugs/1578927

Title:
  idle crashes on configure through menu

Status in Python:
  Unknown
Status in python2.7 package in Ubuntu:
  New
Status in python2.7 source package in Xenial:
  New

Bug description:
  IDLE crashes when "Configure IDLE" is selected through "Options".
  Terminal output is as follows:

  Exception in Tkinter callback
  Traceback (most recent call last):
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1540, in __call__
  return self.func(*args)
File "/usr/lib/python2.7/idlelib/EditorWindow.py", line 543, in 
config_dialog
  configDialog.ConfigDialog(self.top,'Settings')
File "/usr/lib/python2.7/idlelib/configDialog.py", line 72, in __init__
  self.LoadConfigs()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 1103, in LoadConfigs
  self.LoadFontCfg()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 1005, in LoadFontCfg
  self.SetFontSample()
File "/usr/lib/python2.7/idlelib/configDialog.py", line 883, in 
SetFontSample
  self.labelFontSample.config(font=newFont)
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1329, in configure
  return self._configure('configure', cnf, kw)
File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1320, in _configure
  self.tk.call(_flatten((self._w, cmd)) + self._options(cnf))
  TclError: expected integer but got ""

  1) Ubuntu 16.04 LTS
  2) Package idle 2.7.11-1
  3) Expected Options Menu
  4) Instead nothing happened.

To manage notifications about this bug go to:
https://bugs.launchpad.net/python/+bug/1578927/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp