[issue2889] curses for windows (alternative patch)

2010-08-24 Thread Tim Golden
Tim Golden m...@timgolden.me.uk added the comment: I have no strong opinion, Roumen, (and no experience with the package) but why -1 from you? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2889

[issue9572] IOError in test_multiprocessing

2010-08-24 Thread Łukasz Czuja
Łukasz Czuja luk...@czuja.pl added the comment: I was just playing around with the changes you made and it seems you've overlooked a small error/typo around line 502: 502 : n elif errno == errno.EACCES: quick fix: 502 : n elif exc.errno == errno.EACCES:

[issue9653] New default argparse output to be added

2010-08-24 Thread Steven Bethard
Steven Bethard steven.beth...@gmail.com added the comment: I see. When there are no arguments you basically want to replace the standard argparse help entirely with your own message, with your own capitalization, etc. What you're doing now looks like a pretty good approach for this, so I

[issue1486713] HTMLParser : A auto-tolerant parsing mode

2010-08-24 Thread kxroberto
kxroberto kxrobe...@users.sourceforge.net added the comment: for me a parser which cannot be feed with HTML from outside (which I cannot edit myself) has not much use at all. attached my current patch (vs. py26) - many changes meanwhile. and a test case. I've put the default to strict mode,

[issue1486713] HTMLParser : A auto-tolerant parsing mode

2010-08-24 Thread kxroberto
Changes by kxroberto kxrobe...@users.sourceforge.net: -- versions: +Python 2.6, Python 2.7 Added file: http://bugs.python.org/file18624/test_htmlparser_tolerant.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1486713

[issue9667] NetBSD curses KEY_* constants

2010-08-24 Thread Bill Green
New submission from Bill Green b...@supposedly.org: _cursesmodule.c provides a list of constants, prefixed with KEY_, corresponding to special keys (KEY_DOWN, KEY_LEFT, KEY_BACKSPACE, etc.). A portion of the function init_curses, which implements these, is #defined out on NetBSD (at line 2860

[issue9653] New default argparse output to be added

2010-08-24 Thread Tom Browder
Tom Browder tom.brow...@gmail.com added the comment: ... I see. When there are no arguments you basically want to replace the standard argparse help entirely with your own message, with your own capitalization, etc. What you're doing now looks like a pretty good approach for this, so I

[issue3754] cross-compilation support for python build

2010-08-24 Thread Roumen Petrov
update of Lib/sysconfig.py test_sysconfig pass. This patch is restored previous behaviour and now symlinked system python into cross build tree will behave as before i.e. as expected ;) -- Added file: http://bugs.python.org/file18625/python-trunk-20100824-CROSS.patch

[issue3871] cross and native build of python for mingw32 with distutils

2010-08-24 Thread Roumen Petrov
/file18626/python-trunk-20100824-MINGW.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3871 ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue2889] curses for windows (alternative patch)

2010-08-24 Thread Roumen Petrov
Roumen Petrov bugtr...@roumenpetrov.info added the comment: Recent ncurses pass python tests with only one small update (part of patch to issue 3871): = --- ./Lib/test/test_curses.py.MINGW 2010-08-09 00:03:48.0 +0300 +++ ./Lib/test/test_curses.py

[issue2830] Copy cgi.escape() to html

2010-08-24 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: The actual implementation seems to be missing in the new patch; also the docs are not updated. Is it necessary to escape the slash? -- ___ Python tracker rep...@bugs.python.org

[issue3871] cross and native build of python for mingw32 with distutils

2010-08-24 Thread Luke Kenneth Casson Leighton
Luke Kenneth Casson Leighton l...@lkcl.net added the comment: On Sun, Aug 8, 2010 at 12:27 AM, Éric Araujo rep...@bugs.python.org wrote: Éric Araujo mer...@netwok.org added the comment: FYI, distutils is frozen because even minor bug fixes have broken third-party tools in the past, that’s

[issue9668] strings in json.dump in '' instead of

2010-08-24 Thread refresh
New submission from refresh refresh...@gmail.com: when you use json.dump() on object, the strings in the file it was written to are inside '' instead of -- components: None messages: 114781 nosy: refresh priority: normal severity: normal status: open title: strings in json.dump in ''

[issue9668] strings in json.dump in '' instead of

2010-08-24 Thread Jordan Szubert
Jordan Szubert joru...@gmail.com added the comment: could not reproduce: Python 2.6.5 (r265:79096, Mar 19 2010, 21:48:26) [MSC v.1500 32 bit (Intel)] on win32 Type help, copyright, credits or license for more information. from cStringIO import StringIO as F import json json.dumps('foo')

[issue1469629] __dict__ = self in subclass of dict causes a memory leak?

2010-08-24 Thread Armin Rigo
Armin Rigo ar...@users.sourceforge.net added the comment: Added the two tests in Lib/test/leakers as r45389 (in 2006) and r84296 (now). -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1469629

[issue1172711] long long support for array module

2010-08-24 Thread Meador Inge
Meador Inge mead...@gmail.com added the comment: Overall the patch looks good. I don't think it is an extremely important feature, but similar support is already available in other places (e.g. 'struct', 'ctypes'). Here is a patch updated for py3k with some minor additions: (1) Fixed

[issue9669] regexp: zero-width matches in MIN_UNTIL

2010-08-24 Thread Armin Rigo
New submission from Armin Rigo ar...@users.sourceforge.net: The attached example shows a case where the '_sre' module goes into an instantaneous infinite memory leak. The bug (and probably the fix too) is related to empty matches in the MIN_UNTIL operator (+?, *?). It looks very similar to

[issue1486713] HTMLParser : A auto-tolerant parsing mode

2010-08-24 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: 2.6 is now in security-fix-only mode. Since this is a new feature, it can only go into 3.2. Can you provide a patch against py3k trunk? I've only glanced at the patch briefly, but one thing that concerns me is 'warning file'. I

[issue9670] Exceed Recursion Limit in Thread

2010-08-24 Thread Jared Lang
New submission from Jared Lang jsl...@mail.ucf.edu: Recursion within a thread on OSX can result in a crash by exceeding the systems recursion limit. Recursion behaves as expected if not in thread, meaning it throws a RunTimeError with the message maximum recursion depth exceeded. The crash

[issue9670] Exceed Recursion Limit in Thread

2010-08-24 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: This is not the first recursion limit related problem we've seen with FreeBSD derived systems. See for example Issue1201456. It would be nice to have an actual fix for this class of problem, but I have no clue what that would look

[issue6822] Error calling .storlines from ftplib

2010-08-24 Thread d nazario
Changes by d nazario d...@americancentury.com: -- versions: -Python 3.1, Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6822 ___ ___

[issue9670] Exceed Recursion Limit in Thread

2010-08-24 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: This is the same issue as #6763. The root cause of this issue is that the default stack size for threads other than the main thread is small. One way to fix this issue is to increase the default stacksize for new threads. --

[issue6822] Error calling .storlines from ftplib

2010-08-24 Thread d nazario
d nazario d...@americancentury.com added the comment: There seems to be a lot of confusion on this thread. So I'll add mine and hopefully clear things up a bit.In short I think aymanhs has it right. This is what I get when trying to send a simple text file on a Windows Xp PC using python

[issue8432] buildbot: test_send_signal of test_subprocess failure

2010-08-24 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Also occurs on Python 2.7, with x86 FreeBSD 7.2 buildbot. (I found it on many builds since revision 83725 at least. Older builds are not available) Seen on x86 FreeBSD buildbot, too. test test_subprocess failed -- Traceback (most

[issue6763] Crash on mac os x leopard in mimetypes.guess_type (or PyObject_Malloc)

2010-08-24 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Issue1454481, which introduced the ability to set the thread stack size, indicates that the FreeBSD port maintainers were bumping the default limit higher. So I think (3) is probably the correct solution. --

[issue9670] Exceed Recursion Limit in Thread

2010-08-24 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: As I mentioned on the other ticket, I think bumping the default stack size is probably the most useful solution. This is is a clearer description of the stack problem, since it doesn't get involved in MIMETypes internals, so I'm not

[issue3754] cross-compilation support for python build

2010-08-24 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com: -- nosy: +Arfrever ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3754 ___

[issue9129] DoS smtpd module vulnerability

2010-08-24 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com: -- nosy: +Arfrever ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9129 ___

[issue2942] mingw/cygwin do not accept asm file as extension source

2010-08-24 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- assignee: - tarek components: +Distutils2 -Distutils dependencies: +msvc9compiler.py: add .asm extension nosy: +eric.araujo, tarek type: - feature request versions: +Python 2.5, Python 3.1, Python 3.2

[issue2942] mingw/cygwin do not accept asm file as extension source

2010-08-24 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- dependencies: -msvc9compiler.py: add .asm extension ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2942 ___

[issue6822] Error calling .storlines from ftplib

2010-08-24 Thread danonymous
danonymous d...@americancentury.com added the comment: One other observation on this issue. I just 'backleveled' the python on my PC from 3.x to 2.7. My test script works fine on 2.7. - Dan -- versions: +Python 3.1, Python 3.2, Python 3.3 ___

[issue6822] Error calling .storlines from ftplib

2010-08-24 Thread Ayman
Ayman ayman.alsair...@gmail.com added the comment: My other 2 cents worth. Actually that is my main issue. Things used to work in 2.x, and suddenly refused to work after my 3.x upgrade. I'm not saying it worked means it is correct, but the Exception being thrown does not look right. I think

[issue2942] mingw/cygwin do not accept asm file as extension source

2010-08-24 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- nosy: -terry.reedy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2942 ___ ___ Python-bugs-list

[issue1486713] HTMLParser : A auto-tolerant parsing mode

2010-08-24 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: I agree that a tolerant mode would be good (and often requested). String encoding and decoding also have strict and forgiving modes, so this seems close to a policy. Unit tests with example snippets that properly fail strict mode and pass the

[issue9671] test_executable_without_cwd fails: AssertionError: 1 != 47

2010-08-24 Thread Sridhar Ratnakumar
New submission from Sridhar Ratnakumar sridh...@activestate.com: I see the following failure on Fedora Core 4 (32-bit and 64-bit) with Python 2.7.0. == FAIL: test_executable_without_cwd (test.test_subprocess.ProcessTestCase)

[issue9672] test_xpickle fails on Windows: invokes pythonx.y instead of pythonxy

2010-08-24 Thread Sridhar Ratnakumar
New submission from Sridhar Ratnakumar sridh...@activestate.com: test_xpickle 'python2.4' is not recognized as an internal or external command, operable program or batch file. 'python2.5' is not recognized as an internal or external command, operable program or batch file. 'python2.6' is not

[issue9672] test_xpickle fails on Windows: invokes pythonx.y instead of pythonxy

2010-08-24 Thread Sridhar Ratnakumar
Sridhar Ratnakumar sridh...@activestate.com added the comment: On Windows, that should be python24.exe (not python2.4.exe). Hmm, that is only true for ActivePython. For detecting Python interpreters installed on the system, a simple approach could be to hardcode the full paths, as done by

[issue9673] Entry Widget Not Editable under Windows XP

2010-08-24 Thread Firat Ozgul
New submission from Firat Ozgul ozgulfi...@gmail.com: In a Tkinter application that has an Entry() widget on the main window and an askopenfilename() dialog, one should be able to click and type into the Entry() widget as soon as the askopenfilename() dialog is closed. However, the

[issue1194222] parsedate and Y2K

2010-08-24 Thread Jeffrey Finkelstein
Jeffrey Finkelstein jeffrey.finkelst...@gmail.com added the comment: Attached a patch with just the y2k changes and new unit test, for the py3k branch. -- Added file: http://bugs.python.org/file18629/issue1194222-py3k.diff ___ Python tracker

[issue1194222] parsedate and Y2K

2010-08-24 Thread Jeffrey Finkelstein
Jeffrey Finkelstein jeffrey.finkelst...@gmail.com added the comment: Attached a patch with just the y2k changes and new unit test, for the trunk branch. -- Added file: http://bugs.python.org/file18630/issue1194222-trunk.diff ___ Python tracker

[issue1194222] parsedate and Y2K

2010-08-24 Thread Jeffrey Finkelstein
Jeffrey Finkelstein jeffrey.finkelst...@gmail.com added the comment: Added my copyright information to the patch for trunk. -- Added file: http://bugs.python.org/file18631/issue1194222-trunk.diff ___ Python tracker rep...@bugs.python.org

[issue1194222] parsedate and Y2K

2010-08-24 Thread Jeffrey Finkelstein
Changes by Jeffrey Finkelstein jeffrey.finkelst...@gmail.com: Removed file: http://bugs.python.org/file18630/issue1194222-trunk.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1194222 ___

[issue1820] Enhance Object/structseq.c to match namedtuple and tuple api

2010-08-24 Thread Geoffrey Bache
Changes by Geoffrey Bache gjb1...@users.sourceforge.net: -- nosy: +gjb1002 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1820 ___ ___

[issue9674] make install DESTDIR=/ fails

2010-08-24 Thread aj
New submission from aj mailtome200420032...@gmail.com: I tried to install python with make install DESTDIR=/home/blah ./python -E ./setup.py install \ --prefix=/ \ --install-scripts=//bin \ --install-platlib=//lib/python2.6/lib-dynload \

[issue9673] Entry Widget Not Editable under Windows XP

2010-08-24 Thread Cameron Laird
Cameron Laird cla...@phaseit.net added the comment: If it'll help, I can translate this to Tcl/Tk, and report it to the Tk maintainers. My first impression, which is in the realm of wild speculation, is that this is a Tk defect which has already been corrected. A bit more care in composition

[issue1525343] Webserver TypeError: expected read buffer, NoneType found

2010-08-24 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Can this be closed as there is some doubt as to whether or not this is a Python problem? -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1525343

[issue1525806] Tkdnd mouse cursor handling patch

2010-08-24 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- stage: unit test needed - patch review versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1525806

[issue1527597] New module: miniconf

2010-08-24 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Closed in response to last paragraph of msg84520. -- nosy: +BreamoreBoy resolution: - out of date status: open - closed ___ Python tracker rep...@bugs.python.org

[issue1528363] forward in turtle module may cause incorrect display

2010-08-24 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: I can't reproduce this with 3.1 on Windows Vista so can this be closed? -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1528363

[issue1528593] Printing: No print dialog or page setup

2010-08-24 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Can our Windows gurus please comment on msg54869. -- nosy: +BreamoreBoy, tim.golden versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker rep...@bugs.python.org

[issue1531775] HTTPSConnection request hangs

2010-08-24 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Is this still a problem with later versions of Python? -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org

[issue1534607] IndexError: Add bad index to msg

2010-08-24 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Is this ever likely to happen, it's already been closed and reopened once? -- nosy: +BreamoreBoy versions: -Python 2.7 ___ Python tracker rep...@bugs.python.org

[issue1531775] HTTPSConnection request hangs

2010-08-24 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' g.rod...@gmail.com: -- nosy: +giampaolo.rodola ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1531775 ___ ___

[issue9673] Entry Widget Not Editable under Windows XP

2010-08-24 Thread Firat Ozgul
Firat Ozgul ozgulfi...@gmail.com added the comment: That sounds nice. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9673 ___ ___

[issue1535504] CGIHTTPServer doesn't handle path names with embeded space

2010-08-24 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: A patch that includes unit tests and doc changes is presumably needed to take this forward. -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker

[issue1538778] pyo's are not overwritten by different optimization levels

2010-08-24 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- versions: +Python 3.2 -Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1538778 ___

[issue1542544] Improve dynamic linking support on AIX

2010-08-24 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1542544 ___

[issue5911] built-in compile() should take encoding option.

2010-08-24 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Anyone interested in producing an updated patch? -- nosy: +BreamoreBoy versions: +Python 3.2 -Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5911

[issue1194222] parsedate and Y2K

2010-08-24 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Adding a copyright notice for a patch is not something that we generally do (and your current mod is implicitly claiming the whole file, which doesn't seem right in any case). My understanding is that US copyright law says you have the

[issue1542677] compile(): IDLE shell gives different len() of unicode strings compared to Python shell

2010-08-24 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1542677 ___

[issue1544102] ctypes unit test fails (test_macholib.py) under MacOS 10.4.7

2010-08-24 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Can this now be closed? -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1544102 ___

[issue8296] multiprocessing.Pool hangs when issuing KeyboardInterrupt

2010-08-24 Thread Albert Strasheim
Changes by Albert Strasheim full...@gmail.com: -- nosy: +Albert.Strasheim ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8296 ___ ___

[issue8296] multiprocessing.Pool hangs when issuing KeyboardInterrupt

2010-08-24 Thread Albert Strasheim
Albert Strasheim full...@gmail.com added the comment: Any chance of getting this patch applied? Thanks. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8296 ___

[issue1552880] Unicode Imports

2010-08-24 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: I think #9425 supercedes this. Am I correct? -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1552880 ___

[issue8296] multiprocessing.Pool hangs when issuing KeyboardInterrupt

2010-08-24 Thread Brian Curtin
Changes by Brian Curtin cur...@acm.org: -- nosy: +asksol ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8296 ___ ___ Python-bugs-list mailing list

[issue1554133] PyOS_InputHook() and related API funcs. not documented

2010-08-24 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- assignee: - d...@python nosy: +d...@python ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1554133 ___

[issue1559298] test_popen fails on Windows if installed to Program Files

2010-08-24 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- versions: -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1559298 ___ ___

[issue9425] Rewrite import machinery to work with unicode paths

2010-08-24 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: See also #1552880. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9425 ___ ___

[issue1560032] confusing error msg from random.randint

2010-08-24 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- stage: unit test needed - patch review versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1560032

[issue1552880] Unicode Imports

2010-08-24 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: I think #9425 super*s*edes this. Am I correct? #8611 or #9425, as you want. Anyway, I'm working on this topic and I will try to fix it before Python 3.2 release. -- nosy: +haypo ___

[issue8296] multiprocessing.Pool hangs when issuing KeyboardInterrupt

2010-08-24 Thread Ask Solem
Ask Solem a...@opera.com added the comment: This is related to our discussions at #9205 as well (http://bugs.python.org/issue9205), as the final patch there will also fix this issue. -- ___ Python tracker rep...@bugs.python.org

[issue1563079] code.InteractiveConsole() and closed sys.stdout

2010-08-24 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Works fine on 2.7 and py3k. -- nosy: +BreamoreBoy resolution: - out of date status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1563079

[issue9675] segfault: PyDict_SetItem: Assertion `value' failed.

2010-08-24 Thread Florent Xicluna
New submission from Florent Xicluna florent.xicl...@gmail.com: Crash on Python 2.7 branch. $ ./python -We -c 'import anydbm' python: Objects/dictobject.c:759: PyDict_SetItem: Assertion `value' failed. Abandon It occurs with all optional modules compiled. -- messages: 114823 nosy: flox

[issue9675] segfault: PyDict_SetItem: Assertion `value' failed.

2010-08-24 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Actually, the issue seems to be in bsddb. $ ./python -We -c 'import bsddb' python: Objects/dictobject.c:759: PyDict_SetItem: Assertion `value' failed. Abandon -- ___ Python tracker

[issue9675] segfault: PyDict_SetItem: Assertion `value' failed.

2010-08-24 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- nosy: +jcea ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9675 ___ ___ Python-bugs-list

[issue1564508] RFC 2965 BaseCookie does not support $Port

2010-08-24 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: This won't go anywhere unless someone provides a patch. -- nosy: +BreamoreBoy versions: +Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1564508

[issue1565509] Repair or Change installation error

2010-08-24 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1565509 ___

[issue9676] Keyword to disambiguate python version

2010-08-24 Thread Amadiro
New submission from Amadiro jwrings...@gmail.com: I would propose that an idiomatic way is created, for instance a pragma or statement, which allows one to disambiguate the used python version in a manner that is both obvious for the human reader, and as well allows python to reject the

[issue9572] IOError in test_multiprocessing

2010-08-24 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: Fixed in r84304. Thanks for catching that, Łukasz. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9572 ___

[issue9425] Rewrite import machinery to work with unicode paths

2010-08-24 Thread Kristján Valur Jónsson
Kristján Valur Jónsson krist...@ccpgames.com added the comment: Yes. in #1552880 I tried to make as minimal a change as possible. This particular patch is still in use in EVE Online, which is installed in various strange and exotic paths in the orient.. The trick I employed there was to

[issue9676] Keyword to disambiguate python version

2010-08-24 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: Please post to python-ideas first, and note that no syntax changes are allowed until 3.3. -- nosy: +benjamin.peterson resolution: - rejected ___ Python tracker rep...@bugs.python.org

[issue1552880] Unicode Imports

2010-08-24 Thread Kristján Valur Jónsson
Kristján Valur Jónsson krist...@ccpgames.com added the comment: Possibly. I made a comment in issue 9425 explaining the particular trick that this here patch makes (using utf-8 as an intermediate form to avoid having to change all the machinery in import.c) --

[issue9676] Keyword to disambiguate python version

2010-08-24 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- stage: - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9676 ___

[issue8750] Many of MutableSet's methods assume that the other parameter is not self

2010-08-24 Thread Daniel Stutzbach
Daniel Stutzbach dan...@stutzbachenterprises.com added the comment: Committed as r84301, r84302, and r84305. -- keywords: -needs review stage: patch review - committed/rejected status: open - closed versions: -Python 2.6 ___ Python tracker

[issue9677] Global Module Index link dead

2010-08-24 Thread Brett Cannon
New submission from Brett Cannon br...@python.org: When you build the HTML docs the Global Module Index link does not work while the modules link in the upper-right corner does. -- assignee: d...@python components: Documentation messages: 114832 nosy: brett.cannon, d...@python

[issue1194222] parsedate and Y2K

2010-08-24 Thread Jeffrey Finkelstein
Jeffrey Finkelstein jeffrey.finkelst...@gmail.com added the comment: Removed copyright additions from patch. -- Added file: http://bugs.python.org/file18633/issue1194222-py3k.diff ___ Python tracker rep...@bugs.python.org

[issue1194222] parsedate and Y2K

2010-08-24 Thread Jeffrey Finkelstein
Jeffrey Finkelstein jeffrey.finkelst...@gmail.com added the comment: Removed copyright additions from patch. -- Added file: http://bugs.python.org/file18634/issue1194222-trunk.diff ___ Python tracker rep...@bugs.python.org

[issue1566331] Bad behaviour in ossaudio audio device.obuf*

2010-08-24 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: I think SNDCTL_SET_CHANNELS should have read SNDCTL_DSP_CHANNELS. The code was changed in r42752 so is this still a problem? -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org

[issue9675] segfault: PyDict_SetItem: Assertion `value' failed.

2010-08-24 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: It is probably related to the CObject PendingDeprecationWarning. For the record, bsddb does not use the new Capsule API in Python 2.7. ref: http://bugs.python.org/issue7992#msg104140 --

[issue1570255] redirected cookies

2010-08-24 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: I'll close this in a couple of weeks unless anyone objects. -- components: +Library (Lib) -None nosy: +BreamoreBoy stage: - unit test needed status: open - pending type: - behavior versions: +Python 2.7, Python 3.1, Python 3.2

[issue8781] 32-bit wchar_t doesn't need to be unsigned to be usable (I think)

2010-08-24 Thread Daniel Stutzbach
Daniel Stutzbach dan...@stutzbachenterprises.com added the comment: Commited in r84307. -- keywords: -needs review resolution: - accepted stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org

[issue1575020] Request wave support 16 bit samples

2010-08-24 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- versions: +Python 3.2 -Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1575020 ___

[issue1576598] ftplib doesn't follow standard

2010-08-24 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: There's a patch on issue821862. -- dependencies: -ftplib: Strict RFC 959 (telnet in command channel) nosy: +BreamoreBoy resolution: - duplicate status: open - closed versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6

[issue1578999] PyArg_ParseTuple corrections

2010-08-24 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: No reply to msg84526. -- nosy: +BreamoreBoy resolution: - out of date status: open - closed versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org

[issue1576598] ftplib doesn't follow standard

2010-08-24 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Mark, it’s helpful to set the superseder field when closing as duplicate. Thanks in advance :) -- nosy: +eric.araujo superseder: - ftplib: Strict RFC 959 (telnet in command channel) ___ Python

[issue1581906] test_sqlite fails on OS X if test_ctypes is run

2010-08-24 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Refer to msg87277 and msg87278. -- nosy: +BreamoreBoy resolution: - works for me status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1581906

[issue1578999] PyArg_ParseTuple corrections

2010-08-24 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Adding Ronald to nosy, maybe he can confirm this is outdated or reopen. -- nosy: +eric.araujo, ronaldoussoren ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1578999

[issue1570255] redirected cookies

2010-08-24 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: John: You can subscribe to http://mail.python.org/mailman/listinfo/new-bugs-announce and use email filters. Senthil: I’m making you nosy since I think you’re the most qualified to do something here. -- nosy: +eric.araujo, orsenthil

[issue1570255] redirected cookies

2010-08-24 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- status: open - pending ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1570255 ___ ___ Python-bugs-list

[issue3565] array documentation, method names not 3.x-compliant

2010-08-24 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- assignee: - d...@python nosy: +d...@python stage: unit test needed - patch review title: array documentation, method names not 3.0 compliant - array documentation, method names not 3.x-compliant versions: +Python 2.7, Python 3.2

  1   2   >