[issue21597] Allow turtledemo code pane to get wider.

2014-07-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: I reviewed code and made the following changes in uploaded file: Move some code and blank lines around. Since you left packing within mBar frame, removed self.mBar.grid_columnconfigure(0, weight=1) Since the only thing packed in the left frame was the text

[issue21597] Allow turtledemo code pane to get wider.

2014-07-22 Thread Lita Cho
Lita Cho added the comment: On Tue, Jul 22, 2014 at 8:20 PM, Terry J. Reedy wrote: > > Terry J. Reedy added the comment: > > I reviewed code and made the following changes in uploaded file: > Move some code and blank lines around. > Since you left packing within mBar frame, removed >sel

[issue21933] Allow the user to change font sizes with the text pane of turtledemo

2014-07-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: On windows, new patch gives this: Traceback (most recent call last): File "F:\Python\dev\4\py34\Lib\turtledemo\__main__.py", line 295, in demo = DemoWindow() File "F:\Python\dev\4\py34\Lib\turtledemo\__main__.py", line 73, in __init__ graph_frame = s

[issue21933] Allow the user to change font sizes with the text pane of turtledemo

2014-07-22 Thread Lita Cho
Lita Cho added the comment: Sounds good. I will wait till #21587 and create a small patch afterwards. Thanks! On Tue, Jul 22, 2014 at 9:33 PM, Terry J. Reedy wrote: > > Terry J. Reedy added the comment: > > On windows, new patch gives this: > Traceback (most recent call last): > File "F:\Pyt

[issue22044] Premature Py_DECREF while generating a TypeError in call_tzinfo_method

2014-07-22 Thread Tom Flanagan
New submission from Tom Flanagan: call_tzinfo_method in Modules/_datetimemodule.c:900 calls Py_DECREF(offset) before trying to use offset to generate a TypeError message. This causes a crash if that was the last reference to offset and Py_DECREF clears it. -- components: Library (Lib)

[issue22044] Premature Py_DECREF while generating a TypeError in call_tzinfo_method

2014-07-22 Thread Tom Flanagan
Tom Flanagan added the comment: Included python test case which causes a segmentation fault on Python 3.4.1 (v3.4.1:c0e311e010fc, May 18 2014, 10:45:13) [MSC v.1600 64 bit (AMD64)] on win32 Python 3.4.0 (default, Apr 11 2014, 13:05:11) [GCC 4.8.2] on linux Python 3.5.0a0 (default:89665cc05592

[issue17293] uuid.getnode() MAC address on AIX

2014-07-22 Thread Charles-François Natali
Charles-François Natali added the comment: > Huh? What does officially supported platform mean? CPython builds and runs > on AIX. It means a platform for which we have regular contributors committed to support the port, and ideallly with a stable buildbot. We apparently have an unstable build

[issue13299] namedtuple row factory for sqlite3

2014-07-22 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: There is significant overhead. Microbenchmark results: $ ./python -m timeit -s "import sqlite3; con = sqlite3.connect(':memory:')" "con.execute('select 1 as a, 2 as b').fetchall()" 1 loops, best of 3: 35.8 usec per loop $ ./python -m timeit -s "import s

[issue21955] ceval.c: implement fast path for integers with a single digit

2014-07-22 Thread Zach Byrne
Zach Byrne added the comment: I ran the whole benchmark suite. There are a few that are slower: call_method_slots, float, pickle_dict, and unpack_sequence. Report on Linux zach-vbox 3.2.0-24-generic-pae #39-Ubuntu SMP Mon May 21 18:54:21 UTC 2012 i686 i686 Total CPU cores: 1 ### 2to3 ### 24.7

[issue22036] Obsolete reference to stringobject in comment

2014-07-22 Thread Martin Matusiak
Changes by Martin Matusiak : -- nosy: +benjamin.peterson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue20468] resource module documentation is incorrect

2014-07-22 Thread Ronald Oussoren
Ronald Oussoren added the comment: The attached patch (for the default branch) adds information about the unit of maxrss to the documentation, and removes the sentences about calculating the total memory size from the getpagesize documentation. -- assignee: ronaldoussoren -> component

<    1   2