[issue8445] buildbot: test_ttk_guionly failures (test_traversal, test_tab_identifiers, test_identify, test_heading_callback)

2010-09-26 Thread Ismail Donmez
Ismail Donmez added the comment: With Guilherme's patch; We are down to 1 error but thats a new errror; test test_ttk_guionly failed -- Traceback (most recent call last): File "/Users/cartman/Sources/py3k/Lib/tkinter/test/test_ttk/test_widgets.py", line 28, in test_identify self.widget

[issue6031] BaseServer.shutdown documentation is incomplete

2010-09-26 Thread Sandro Tosi
Sandro Tosi added the comment: Hello, I've refreshed this patch (correct the file name & because it applies now with an offset), other than that it seems ok: can someone review (it's quite small :) and apply it? Thanks, Sandro -- nosy: +sandro.tosi Added file: http://bugs.python.org/

[issue9869] long_subtype_new segfault in pure-Python code

2010-09-26 Thread Mark Dickinson
Mark Dickinson added the comment: > Right. In practice, returning a long instead of an int can produce bugs, > mainly because some C functions will only accept ints and refuse longs. I'd say 'in theory' rather than 'in practice' here. In this particular case, I don't see much danger: any C c

[issue9869] long_subtype_new segfault in pure-Python code

2010-09-26 Thread Mark Dickinson
Mark Dickinson added the comment: Committed in r85016. I'll take responsibility for any broken 3rd party code... -- resolution: -> fixed status: open -> closed ___ Python tracker _

[issue9952] Martin Rinehart wants to stay in touch on LinkedIn

2010-09-26 Thread Martin Rinehart
New submission from Martin Rinehart : LinkedIn I'd like to add you to my professional network on LinkedIn. - Martin Rinehart Martin Rinehart Student at Strayer Online Greater New York City Area Confirm that you know Martin Rinehart https://www.linkedin.com/e/-3qcne3-gejswd6s-6f/i

[issue9952] Martin Rinehart wants to stay in touch on LinkedIn

2010-09-26 Thread Martin v . Löwis
Changes by Martin v. Löwis : -- resolution: -> invalid status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue8445] buildbot: test_ttk_guionly failures (test_traversal, test_tab_identifiers, test_identify, test_heading_callback)

2010-09-26 Thread Guilherme Polo
Guilherme Polo added the comment: > We are down to 1 error but thats a new errror; > > > test test_ttk_guionly failed -- Traceback (most recent call last): >  File > "/Users/cartman/Sources/py3k/Lib/tkinter/test/test_ttk/test_widgets.py", line > 28, in test_identify >    self.widget.winfo_heig

[issue8445] buildbot: test_ttk_guionly failures (test_traversal, test_tab_identifiers, test_identify, test_heading_callback)

2010-09-26 Thread Guilherme Polo
Guilherme Polo added the comment: You should convert the whole expressions actually, but that is because the patch wasn't done for py3k. -- ___ Python tracker ___ __

[issue9943] TypeError message became less helpful in Python 2.7

2010-09-26 Thread Nick Coghlan
Nick Coghlan added the comment: Having seen the reversion go by on the checkins list, I think there are distinctions the interpreter should be making here in order to improve the error messages, but it isn't. Ideally, we want to be able to tell the user (without writing War and Peace as an e

[issue9899] tkinter test_font fails on OS X with Aqua Tk

2010-09-26 Thread Antoine Pitrou
Antoine Pitrou added the comment: Actually, most buildbots were fixed but a couple of them still show a problem: test_font_eq (tkinter.test.test_tkinter.test_font.FontTest) ... ERROR testLoadTk (tkinter.test.test_tkinter.test_loadtk.TkLoadTest) ... skipped 'No $DISPLAY set.' testLoadTkFailure

[issue8445] buildbot: test_ttk_guionly failures (test_traversal, test_tab_identifiers, test_identify, test_heading_callback)

2010-09-26 Thread Antoine Pitrou
Antoine Pitrou added the comment: Here is Guilherme's patch converted for py3k. -- nosy: +pitrou Added file: http://bugs.python.org/file19024/ttk3k.patch ___ Python tracker ___ _

[issue9673] Entry Widget Not Editable under Windows XP

2010-09-26 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +gpolo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue8716] test_tk fails on OS X if run from buildbot slave daemon -- crashes Python

2010-09-26 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +gpolo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue9953] 2 scripts running from crontab simultaneously reference the same instance of a variable

2010-09-26 Thread yuri
New submission from yuri : Originally the problem was that one script used a logger instance initialized in another script, and, as a result, log entries were "signed" by the later one. Setup: python 3.1.1, Suse Linux enterprise server 9 2 scripts are scheduled in crontab as follows: */1 * * *

[issue9953] 2 scripts running from crontab simultaneously reference the same instance of a variable

2010-09-26 Thread Jean-Paul Calderone
Jean-Paul Calderone added the comment: You can't rely on id() to return distinct values across different processes. It guarantees uniqueness *within a single process* (at any particular moment). In other words, you're misusing id() here. This is not a Python bug. -- nosy: +exarkun r

[issue9954] include sqlite3.exe in PythonXX/Scripts

2010-09-26 Thread Dan L
New submission from Dan L : since sqlite3 is included in the standard library, it would be useful to have access to the command line tool that's part of sqlite. Including the command-line binary for each respective OS in the respective Scripts or bin folder would allow python users to create

[issue9954] include sqlite3.exe in PythonXX/Scripts

2010-09-26 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +ghaering versions: +Python 3.2 -Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue9951] introduce bytes.hex method

2010-09-26 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue9954] include sqlite3.exe in PythonXX/Scripts

2010-09-26 Thread Martin v . Löwis
Martin v. Löwis added the comment: -1. On Linux, and many other systems based on or using free software, the sqlite command line tool is readily available, and including it would conflict with the one provided by the system vendor. For Windows, pre-built binaries for command line access are a

[issue9899] tkinter test_font fails on OS X with Aqua Tk

2010-09-26 Thread Ned Deily
Ned Deily added the comment: Could be, particularly if the user name under which the test is running is not logged in (to the window manager) on the buildbot. I'll investigate. -- assignee: -> ned.deily ___ Python tracker

[issue8445] buildbot: test_ttk_guionly failures (test_traversal, test_tab_identifiers, test_identify, test_heading_callback)

2010-09-26 Thread Ismail Donmez
Ismail Donmez added the comment: Patch fixes the problem for me, please apply. Thanks! -- ___ Python tracker ___ ___ Python-bugs-list

[issue8445] buildbot: test_ttk_guionly failures (test_traversal, test_tab_identifiers, test_identify, test_heading_callback)

2010-09-26 Thread Antoine Pitrou
Antoine Pitrou added the comment: Committed in r85018, will watch the buildbots. -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> pending ___ Python tracker

[issue8445] buildbot: test_ttk_guionly failures (test_traversal, test_tab_identifiers, test_identify, test_heading_callback)

2010-09-26 Thread Antoine Pitrou
Antoine Pitrou added the comment: There's an issue remaining on the buildbots: == FAIL: test_heading_callback (tkinter.test.test_ttk.test_widgets.TreeviewTest) ---

[issue8445] buildbot: test_ttk_guionly failures (test_traversal, test_tab_identifiers, test_identify, test_heading_callback)

2010-09-26 Thread Ismail Donmez
Ismail Donmez added the comment: Works for me on Snow Leopard for the record. -- ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue9948] findCaller is slow and loses case information on Windows

2010-09-26 Thread Vinay Sajip
Vinay Sajip added the comment: Your basic fix looks fine, but there's a couple of other issues to consider: 1. Users can use _srcFile = None to avoid calling findCaller() altogether, so I can't do away with the _srcFile altogether as it may cause some issues with existing code. 2. If using e

[issue9954] include sqlite3.exe in PythonXX/Scripts

2010-09-26 Thread Benjamin Peterson
Benjamin Peterson added the comment: Indeed, -1. We don't make a habit of distributing 3rd party binaries. -- nosy: +benjamin.peterson ___ Python tracker ___

[issue9955] multiprocessing.Pipe segmentation fault when recv of unpicklable object

2010-09-26 Thread Zbynek Winkler
New submission from Zbynek Winkler : $ python Python 2.6.5 (r265:79063, Apr 16 2010, 13:09:56) [GCC 4.4.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> from lxml import etree >>> from pickle import dumps >>> from multiprocessing import Pipe >>> n = etree.E

[issue9954] include sqlite3.exe in PythonXX/Scripts

2010-09-26 Thread Martin v . Löwis
Changes by Martin v. Löwis : -- resolution: -> rejected status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue9948] findCaller is slow and loses case information on Windows

2010-09-26 Thread Armin Ronacher
Armin Ronacher added the comment: > 1. Users can use _srcFile = None to avoid calling findCaller() > altogether, so I can't do away with the _srcFile altogether as it may > cause some issues with existing code. That is very undocumented behaviour and relying on that sounds like a terrible ide

[issue9948] findCaller is slow and loses case information on Windows

2010-09-26 Thread Vinay Sajip
Vinay Sajip added the comment: > That is very undocumented behaviour and relying on that sounds like a > terrible idea. Agreed, I'm just fretting about it ... > First of all that should not be a global setting, secondly this is currently > not possible in logging either. True, but you have

[issue9936] trace misreports "missing" lines

2010-09-26 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: test_issue9936 fails on 2.7 branch. See e.g. http://www.python.org/dev/buildbot/2.7.stable/builders/sparc%20solaris10%20gcc%202.7/builds/268/steps/test/logs/stdio -- nosy: +Arfrever ___ Python t

[issue9936] trace misreports "missing" lines

2010-09-26 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: On Sun, Sep 26, 2010 at 5:47 PM, Arfrever Frehtes Taifersar Arahesis wrote: .. > > test_issue9936 fails on 2.7 branch. Should be fixed by r85020. Thanks. -- ___ Python tracker

[issue9956] memoryview type documentation lacks versionadded

2010-09-26 Thread Andreas Stührk
New submission from Andreas Stührk : Title says all, attached is a patch against trunk (2.7). I'm not familiar with what version is correct for the Python 3 documentation. -- assignee: d...@python components: Documentation files: stdtypes-memoryview-2.7.patch keywords: patch messages: 1

[issue9956] memoryview type documentation lacks versionadded

2010-09-26 Thread Benjamin Peterson
Benjamin Peterson added the comment: r85022 -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue1079] decode_header does not follow RFC 2047

2010-09-26 Thread Tokio Kikuchi
Tokio Kikuchi added the comment: Hi, all I am against applying these patches because they will insert space separations in re-composed header (with str() function). Sm=?ISO-8859-1?B?9g==?=rg=?ISO-8859-1?B?5Q==?=sbord -> [('Sm', None), ('\xf6', 'iso-8859-1'), ('rg', None), ('\xe5', 'iso-8859-

[issue1595365] Urllib2 user-agent header added by an opener is "frozen"

2010-09-26 Thread Senthil Kumaran
Senthil Kumaran added the comment: Fixed in r85025 (py3k), r85026 (release31-maint) and r85027 (release27-maint). -- resolution: accepted -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker

[issue9957] SpooledTemporayFile.truncate should take size parameter

2010-09-26 Thread Ryan Kelly
New submission from Ryan Kelly : Both file.truncate() and StringIO.truncate() accept an optional "size" parameter to truncate the file to a specific size. SpooledTemporaryFile should accept a similar parameter and pass it on. The only tricky part is that truncate can potentially increase the

[issue9955] multiprocessing.Pipe segmentation fault when recv of unpicklable object

2010-09-26 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- assignee: -> jnoller nosy: +jnoller ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue2180] tokenize: mishandles line joining

2010-09-26 Thread Meador Inge
Changes by Meador Inge : -- nosy: +meador.inge ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue5103] ssl.SSLSocket timeout not working correctly when remote end is hanging

2010-09-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue9910] Add Py_SetPath API for embedding python

2010-09-26 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: Completed in revision 85028 -- resolution: -> accepted status: open -> closed ___ Python tracker ___ __