[issue9929] subprocess.Popen unbuffered not work

2010-09-26 Thread Hirokazu Yamamoto
Hirokazu Yamamoto ocean-c...@m2.ccsnet.ne.jp added the comment: Antoine, can you create the patch? I'm not familiar with IO. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9929 ___

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

2010-09-26 Thread Ismail Donmez
Ismail Donmez ism...@namtrac.org 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

[issue6031] BaseServer.shutdown documentation is incomplete

2010-09-26 Thread Sandro Tosi
Sandro Tosi sandro.t...@gmail.com 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:

[issue9869] long_subtype_new segfault in pure-Python code

2010-09-26 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com 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

[issue9869] long_subtype_new segfault in pure-Python code

2010-09-26 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: Committed in r85016. I'll take responsibility for any broken 3rd party code... -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org

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

2010-09-26 Thread Martin Rinehart
New submission from Martin Rinehart martinrineh...@gmail.com: 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

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

2010-09-26 Thread Martin v . Löwis
Changes by Martin v. Löwis mar...@v.loewis.de: -- resolution: - invalid status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9952 ___

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

2010-09-26 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com 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    

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

2010-09-26 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com added the comment: You should convert the whole expressions actually, but that is because the patch wasn't done for py3k. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8445

[issue9943] TypeError message became less helpful in Python 2.7

2010-09-26 Thread Nick Coghlan
Nick Coghlan ncogh...@gmail.com 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

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

2010-09-26 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr 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.'

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

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

[issue9673] Entry Widget Not Editable under Windows XP

2010-09-26 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +gpolo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9673 ___ ___ Python-bugs-list mailing list

[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 pit...@free.fr: -- nosy: +gpolo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8716 ___ ___ Python-bugs-list mailing list

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

2010-09-26 Thread yuri
New submission from yuri too...@gmail.com: 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

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

2010-09-26 Thread Jean-Paul Calderone
Jean-Paul Calderone inva...@example.invalid 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.

[issue9954] include sqlite3.exe in PythonXX/Scripts

2010-09-26 Thread Dan L
New submission from Dan L choralr...@naver.com: 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

[issue9954] include sqlite3.exe in PythonXX/Scripts

2010-09-26 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +ghaering versions: +Python 3.2 -Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9954 ___

[issue9951] introduce bytes.hex method

2010-09-26 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +mark.dickinson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9951 ___ ___ Python-bugs-list

[issue9954] include sqlite3.exe in PythonXX/Scripts

2010-09-26 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de 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

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

2010-09-26 Thread Ned Deily
Ned Deily n...@acm.org 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 ism...@namtrac.org added the comment: Patch fixes the problem for me, please apply. Thanks! -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8445 ___

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

2010-09-26 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Committed in r85018, will watch the buildbots. -- resolution: - fixed stage: needs patch - committed/rejected status: open - pending ___ Python tracker rep...@bugs.python.org

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

2010-09-26 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr 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 ism...@namtrac.org added the comment: Works for me on Snow Leopard for the record. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8445 ___

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

2010-09-26 Thread Vinay Sajip
Vinay Sajip vinay_sa...@yahoo.co.uk 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

[issue9954] include sqlite3.exe in PythonXX/Scripts

2010-09-26 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: Indeed, -1. We don't make a habit of distributing 3rd party binaries. -- nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9954

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

2010-09-26 Thread Zbynek Winkler
New submission from Zbynek Winkler zbynek.wink...@gmail.com: $ 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 =

[issue9954] include sqlite3.exe in PythonXX/Scripts

2010-09-26 Thread Martin v . Löwis
Changes by Martin v. Löwis mar...@v.loewis.de: -- resolution: - rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9954 ___

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

2010-09-26 Thread Armin Ronacher
Armin Ronacher armin.ronac...@active-4.com 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

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

2010-09-26 Thread Vinay Sajip
Vinay Sajip vinay_sa...@yahoo.co.uk 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.

[issue9936] trace misreports missing lines

2010-09-26 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com 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

[issue9936] trace misreports missing lines

2010-09-26 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net added the comment: On Sun, Sep 26, 2010 at 5:47 PM, Arfrever Frehtes Taifersar Arahesis rep...@bugs.python.org wrote: .. test_issue9936 fails on 2.7 branch. Should be fixed by r85020. Thanks. --

[issue9956] memoryview type documentation lacks versionadded

2010-09-26 Thread Andreas Stührk
New submission from Andreas Stührk andy-pyt...@hammerhartes.de: 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

[issue9956] memoryview type documentation lacks versionadded

2010-09-26 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: r85022 -- nosy: +benjamin.peterson resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9956 ___

[issue1079] decode_header does not follow RFC 2047

2010-09-26 Thread Tokio Kikuchi
Tokio Kikuchi tkiku...@users.sourceforge.net 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'),

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

2010-09-26 Thread Senthil Kumaran
Senthil Kumaran orsent...@gmail.com 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 r...@rfk.id.au: 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

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

2010-09-26 Thread Benjamin Peterson
Changes by Benjamin Peterson benja...@python.org: -- assignee: - jnoller nosy: +jnoller ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9955 ___

[issue2180] tokenize: mishandles line joining

2010-09-26 Thread Meador Inge
Changes by Meador Inge mead...@gmail.com: -- nosy: +meador.inge ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2180 ___ ___ Python-bugs-list

[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 j...@jcea.es: -- nosy: +jcea ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5103 ___ ___ Python-bugs-list mailing list

[issue9910] Add Py_SetPath API for embedding python

2010-09-26 Thread Kristján Valur Jónsson
Kristján Valur Jónsson krist...@ccpgames.com added the comment: Completed in revision 85028 -- resolution: - accepted status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9910