[issue1230] Tix HList class missing method implementation for info_bbox

2007-10-03 Thread Ron Longo
Changes by Ron Longo: -- components: Tkinter severity: normal status: open title: Tix HList class missing method implementation for info_bbox type: behavior versions: Python 2.6 __ Tracker <[EMAIL PROTECTED]> ___

[issue1231] PEPs 344 and 3134 contain incorrect hyperlinks.

2007-10-03 Thread Raghuram Devarakonda
New submission from Raghuram Devarakonda: http://www.python.org/dev/peps/pep-0344/ http://www.python.org/dev/peps/pep-3134/ Check both the PEPs and grep for the first occurrence of "RFC 88" which is a link. The target of the link is http://www.faqs.org/rfcs/rfc88.html which is wrong. The correct

[issue1232] %f prints the wrong 6 decimal places

2007-10-03 Thread Kevin McKiou
New submission from Kevin McKiou: >>> print "price is: %f" % 5.1234567 price is: 5.123457 I was testing the statement about "prints to 6 decimal places". Sure enough, it printed only 6 decimal places, but it skipped over the 6th decimal place and printed the 7th. I am using Python version

[issue1233] bsddb.dbshelve.DbShelf.append doesn't work

2007-10-03 Thread Steven Vereecken
New submission from Steven Vereecken: The check for DB_RECNO seems to do the opposite of what it's supposed to do: def append(self, value, txn=None): if self.get_type() != db.DB_RECNO: self.append = self.__append return self.append(value, txn=txn) rais

[issue1232] %f prints the wrong 6 decimal places

2007-10-03 Thread Martin v. Löwis
Martin v. Löwis added the comment: I think you are misinterpreting what you see. The last digit in the output (7) is *not* the last digit of the input, but is the output originating from the digit 6. As the last digit of output, it gets rounded. As the first digit not printed anymore (7) is great

[issue1232] %f prints the wrong 6 decimal places

2007-10-03 Thread Kevin McKiou
Kevin McKiou added the comment: Martin, Oops. Sorry about that. Hey, I even tried it with more decimals. It never occurred to me it was rounding. I thought it was simply printing a certain number of decimals. Hmmm...looking at my C manual...by golly, printf does round. Thanks, - Kevin

[issue1718043] textView code cleanup

2007-10-03 Thread Kurt B. Kaiser
Kurt B. Kaiser added the comment: r58309. Thanks for the Patch! -- assignee: -> kbk nosy: +kbk resolution: -> accepted status: open -> closed _ Tracker <[EMAIL PROTECTED]> _

[issue1730217] IDLE - configDialog layout cleanup

2007-10-03 Thread Kurt B. Kaiser
Kurt B. Kaiser added the comment: r58310. Thanks for the nice patch! Looks better! -- assignee: -> kbk nosy: +kbk resolution: -> accepted status: open -> closed _ Tracker <[EMAIL PROTECTED]> __

[issue1529018] Move firewall warning to "about" menu

2007-10-03 Thread Kurt B. Kaiser
Kurt B. Kaiser added the comment: I think it would be better if a dialog popped up (before trying to set up the subprocess!) with the warning. It should have a checkbox, "Don't show this again." And it should be something we can reuse in other situations. Store a tag in the user's .idlerc if h

[issue1529018] Move firewall warning to "about" menu

2007-10-03 Thread Georg Brandl
Changes by Georg Brandl: -- status: open -> closed _ Tracker <[EMAIL PROTECTED]> _ ___ Python-bugs-list mailing list Unsubscribe: h

[issue1231] PEPs 344 and 3134 contain incorrect hyperlinks.

2007-10-03 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r58312, by inserting "number" between RFC and 88. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> __