[issue8285] IDLE not smart indenting correctly in nested statements

2010-04-01 Thread Tofystedeth
New submission from Tofystedeth nanc...@gmail.com: huh, somehow I submitted this before I was done, sorry bout that. IDLE (the shell, not the text editor) doubles the indentation when in nested statements. For instance while True: while True: while True: becomes while True:

[issue8265] test_float fails on ARM Linux EABI with soft floating point

2010-04-01 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: From the values in the report, float.fromhex is giving the correct value here, but MIN-3*TINY is somehow coming out incorrectly. Correct values (with Python 2.6, so old float repr; OS X 10.6.2): Python 2.6.5+ (release26-maint:79559:79560,

[issue8032] Add gdb7 hooks to make it easier to debug Python

2010-04-01 Thread Matthias Klose
Changes by Matthias Klose d...@debian.org: -- nosy: +doko ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8032 ___ ___ Python-bugs-list mailing list

[issue1683368] object.__init__ shouldn't allow args/kwds

2010-04-01 Thread dauerbaustelle
dauerbaustelle jo...@lophus.org added the comment: What exactly is the correct solution with Python 2.6 to avoid this warning? My use case is something like class myunicode(unicode): def __init__(self, *args, **kwargs): unicode.__init__(self, *args, **kwargs) self.someattribute =

[issue7443] test.support.unlink issue on Windows platform

2010-04-01 Thread Andrew Svetlov
Andrew Svetlov andrew.svet...@gmail.com added the comment: Florent, sorry. I have no Windows workstation now, so I cannot follow this issue. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7443

[issue1683368] object.__init__ shouldn't allow args/kwds

2010-04-01 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: @dauerbaustelle I believe your question is a separate issue and that it should have been asked on Python list. However, yes, subclasses of immutables must override __new__. For more, do ask on the list, not here. --

[issue8278] os.utime doesn't allow a atime (Last Access) which is 27 years in the future.

2010-04-01 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: The patch looks fine to me, please apply. -- resolution: - accepted ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8278 ___

[issue8282] Windows uninstaller requests admin access for unindentified program

2010-04-01 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: IIUC, fixing this would require to split the installer into two files: the msi and the cab. This would not be acceptable, so I'm closing this as won't fix. -- resolution: - wont fix status: pending - closed

[issue3778] python uninstaller leave registry entries

2010-04-01 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: FWIW: contributions are welcome. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3778 ___

[issue8286] distutils: path '[...]' cannot end with '/'

2010-04-01 Thread Sridhar Ratnakumar
New submission from Sridhar Ratnakumar sridh...@activestate.com: I noticed this exception in http://pypm-free.activestate.com/2.6/win32-x86/pool/d/dj/django-navbar-0.2.0_win32-x86_2.6_1.pypm.d/log [...] reading manifest file 'django_navbar.egg-info\SOURCES.txt' reading manifest template

[issue8286] distutils: path '[...]' cannot end with '/'

2010-04-01 Thread Sridhar Ratnakumar
Changes by Sridhar Ratnakumar sridh...@activestate.com: -- components: +Windows ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8286 ___ ___

<    1   2   3