[issue2584] numeric overflow in IDLE

2008-05-31 Thread Kurt B. Kaiser
Changes by Kurt B. Kaiser <[EMAIL PROTECTED]>: -- resolution: -> wont fix status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue3019] Python3a5 compile failing due to high memory usage

2008-05-31 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Turns out this is due to GCC 4.3 being used. Dupe of #2626. -- nosy: +georg.brandl resolution: -> duplicate status: open -> closed ___ Python tracker <[EMAIL PROTECTED]>

[issue2138] Add a factorial function

2008-05-31 Thread Raymond Hettinger
Raymond Hettinger <[EMAIL PROTECTED]> added the comment: I've got in from here. -- assignee: marketdickinson -> rhettinger ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue3019] Python3a5 compile failing due to high memory usage

2008-05-31 Thread Florian Mayer
Florian Mayer <[EMAIL PROTECTED]> added the comment: Added the output of GDB as the memory usage was nearing 70%. Hope it helps. Added file: http://bugs.python.org/file10490/gdb_output ___ Python tracker <[EMAIL PROTECTED]>

[issue2936] ctypes.util.find_library() doesn't consult LD_LIBRARY_PATH

2008-05-31 Thread Bill Janssen
Bill Janssen <[EMAIL PROTECTED]> added the comment: OK, I went back and read the code. What I should be using is "ctypes.cdll.LoadLibrary("libgoodstuff.1.dylib")". Thanks -- I think you can close this issue. Bill On Fri, May 30, 2008 at 1:58 PM, Thomas Heller <[EMAIL PROTECTED]> wrote: > > T

[issue3019] Python3a5 compile failing due to high memory usage

2008-05-31 Thread Florian Mayer
New submission from Florian Mayer <[EMAIL PROTECTED]>: I have tried building Python3a5 today using the tarball offered on your internet site. The process './python -E setup.py build' keeps on allocating my memory using more than 80% of my RAM, I am certain that it would have used more if I had n

[issue2936] ctypes.util.find_library() doesn't consult LD_LIBRARY_PATH

2008-05-31 Thread Bill Janssen
Bill Janssen <[EMAIL PROTECTED]> added the comment: Yes, I've read that explanation, but I still don't see what the point of find_library() is. Are you trying to resolve a possibly ambiguous reference to a shared library to the one which is used by the Python interpreter? If that's the case (an

[issue2138] Add a factorial function

2008-05-31 Thread Mark Dickinson
Changes by Mark Dickinson <[EMAIL PROTECTED]>: -- assignee: -> marketdickinson ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bu

[issue2138] Add a factorial function

2008-05-31 Thread Mark Dickinson
Mark Dickinson <[EMAIL PROTECTED]> added the comment: Contrary to what I said above, I'm not going to find time for this before the beta. Anyone else want to have a go at producing a patch? A simple implementation would be fine---the algorithm could be tweaked for speed later.

[issue3005] EasyDialogs - documentation enhancement

2008-05-31 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Thanks, added the sentence in r63831. -- resolution: -> accepted status: open -> closed ___ Python tracker <[EMAIL PROTECTED]>

[issue3010] Module cmd documentation enhancement

2008-05-31 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Converted to reST and applied in r63830. Thanks! -- resolution: -> accepted status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> _

[issue3018] tkinter demos fixed

2008-05-31 Thread Guilherme Polo
Guilherme Polo <[EMAIL PROTECTED]> added the comment: I forgot to say that some demos weren't fixed by the previous patch, demo/reasons below: guido/ss1rexec is gone guido/MimeViewer can't test it right now guido/mbox can't test it right now guido/ManPagepartly

[issue3018] tkinter demos fixed

2008-05-31 Thread Guilherme Polo
New submission from Guilherme Polo <[EMAIL PROTECTED]>: I've fixed the tkinter demos at py3k. And excluding the import fixes, most of these could be backported to python 2.x too. -- components: Tkinter files: tkinter_demo_fixes.diff keywords: patch messages: 67579 nosy: gpolo severity: n

[issue1447222] tkinter Dialog fails when more than four buttons are used

2008-05-31 Thread Guilherme Polo
Guilherme Polo <[EMAIL PROTECTED]> added the comment: This is a workaround and seems to be the way to go. -- keywords: +patch Added file: http://bugs.python.org/file10485/Dialog_workaround.diff ___ Python tracker <[EMAIL PROTECTED]>

[issue3015] tkinter with wantobjects=False has been broken for some time

2008-05-31 Thread Guilherme Polo
Guilherme Polo <[EMAIL PROTECTED]> added the comment: I've removed wantobjects and substituted some internalRep usage too. Added file: http://bugs.python.org/file10484/remove_wantobjects_internalRep.diff ___ Python tracker <[EMAIL PROTECTED]>

[issue3017] Verify doc updates for the decimal module

2008-05-31 Thread Raymond Hettinger
New submission from Raymond Hettinger <[EMAIL PROTECTED]>: Some of the doc updates were inaccurate. For instance, r58154 adds documentation for a trim() method, but there is no such method in decimal.py. -- assignee: facundobatista components: Documentation messages: 67576 nosy: facun

[issue3015] tkinter with wantobjects=False has been broken for some time

2008-05-31 Thread Guilherme Polo
Guilherme Polo <[EMAIL PROTECTED]> added the comment: I will agree that wantobjects=False should go, it is also discouraged to use Tcl_GetStringResult because it may lose information. But something should be done at FromObj since it accesses Tcl_Obj fields directly, and it may end up not using

[issue3016] tarfile.py incurs exception from self.chmod() when tarball has g+s

2008-05-31 Thread Lars Gustäbel
Lars Gustäbel <[EMAIL PROTECTED]> added the comment: With some effort I could reproduce the problem (on a FAT32 filesystem), but what we have here is clearly a usage problem. In unpack_tarfile() in setuptools/archive_util.py TarFile's internal _extract_member() method is used to extract the conte

[issue2982] more tests for pyexpat

2008-05-31 Thread Thomas Herve
Thomas Herve <[EMAIL PROTECTED]> added the comment: I attach a first try adding tests for the handlers you mentioned. -- keywords: +patch Added file: http://bugs.python.org/file10483/2922.diff ___ Python tracker <[EMAIL PROTECTED]>

[issue2138] Add a factorial function

2008-05-31 Thread Joshua Uziel
Joshua Uziel <[EMAIL PROTECTED]> added the comment: Or slightly better: from operator import mul def factorial(num): return reduce(mul, range(2, num+1), 1) ___ Python tracker <[EMAIL PROTECTED]> _

[issue2138] Add a factorial function

2008-05-31 Thread Joshua Uziel
Joshua Uziel <[EMAIL PROTECTED]> added the comment: It's a simplified version, but why not something like this: import operator def factorial(num): return reduce(operator.mul, range(1, num+1)) A product() function could also be done similarly. -- nosy: +uzi ___

[issue2898] Add memory footprint query

2008-05-31 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: The patch looks fine to me, please apply. Don't forget to add a Misc/NEWS entry. -- assignee: gvanrossum -> schuppenies resolution: -> accepted ___ Python tracker <[EMAIL PROTECTED]>