[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]>

__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 value is indicated in footnote [9].

--
components: Documentation
messages: 56217
nosy: draghuram
severity: minor
status: open
title: PEPs 344 and 3134 contain incorrect hyperlinks.

__
Tracker <[EMAIL PROTECTED]>

__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 2.5.1 and IDLE version 1.2.1

--
components: Interpreter Core
messages: 56218
nosy: kmckiou
severity: major
status: open
title: %f prints the wrong 6 decimal places
type: behavior
versions: Python 2.5

__
Tracker <[EMAIL PROTECTED]>

__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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)
raise db.DBError, "append() only supported when dbshelve opened
with filetype=dbshelve.db.DB_RECNO"

--
components: Library (Lib)
messages: 56219
nosy: polaar
severity: normal
status: open
title: bsddb.dbshelve.DbShelf.append doesn't work
type: behavior
versions: Python 2.5

__
Tracker <[EMAIL PROTECTED]>

__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 greater than 5,
it rounds up.

Closing the report as invalid

--
nosy: +loewis
resolution:  -> invalid
status: open -> closed

__
Tracker <[EMAIL PROTECTED]>

__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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

Kevin McKiou

+1 630 979 2577
[EMAIL PROTECTED]

__
Tracker <[EMAIL PROTECTED]>

__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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]>

_
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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]>

_
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 he doesn't want to see it 
again

--
resolution:  -> rejected

_
Tracker <[EMAIL PROTECTED]>

_
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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]>

__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com