[issue3821] trace module bug when using --missing

2010-08-06 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com added the comment: TestCoverage.test_coverage_ignore fails when running in verbose mode (python regrtest.py -v test_trace, or directly python test_trace.py), because it attempts to compare stdout.getvalue() with the empty string, while verbose places output

[issue9315] The trace module lacks unit tests

2010-08-06 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com added the comment: The test class added into test_trace.py in issue 3821 fails in verbose mode (see my message http://bugs.python.org/msg113076). I'm merging that class into my larger test_trace.py and will fix this problem, unless you guys have other ideas.

[issue3854] Document sqlite3 vs. threads

2010-08-06 Thread Gerhard Häring
Gerhard Häring g...@ghaering.de added the comment: Fixed in r83747. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3854 ___

[issue9530] integer undefined behaviors

2010-08-06 Thread John Regehr
New submission from John Regehr reg...@cs.utah.edu: I ran make test for today's Python3k snapshot under a tool which detects math operations that the C language considers to have undefined behavior. This was on x86 Linux. The list of undefined behaviors is attached. Hopefully they are

[issue9315] The trace module lacks unit tests

2010-08-06 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com added the comment: I'm attaching a new patch for unit-testing of trace.py. Changes: 1. Fixed the problems that caused failures when run through regrtest 2. Added the test class from issue 3821 3. Removed the fake module creation, replacing it with a directory

[issue9531] test_complex.py fails

2010-08-06 Thread Eli Bendersky
New submission from Eli Bendersky eli...@gmail.com: eli...@eliben-desktop:~/python_src/svn-27-maint/Lib/test$ py27 regrtest.py test_complex.py test_complex test test_complex failed -- Traceback (most recent call last): File /home/eliben/python_src/27-maint/Lib/test/test_complex.py, line 563,

[issue9531] test_complex.py fails

2010-08-06 Thread Eli Bendersky
Changes by Eli Bendersky eli...@gmail.com: -- components: +Tests ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9531 ___ ___ Python-bugs-list

[issue9531] test_complex.py fails

2010-08-06 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com added the comment: Sorry, I didn't build (make) the python executable before reporting. Everything works, so I'm closing the issue. -- status: open - closed ___ Python tracker rep...@bugs.python.org

[issue9264] trace.py documentation is incomplete

2010-08-06 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com added the comment: I think it makes sense to commit the same patch to 2.7, is this planned? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9264 ___

[issue9528] Add pure Python implementation of time module to CPython

2010-08-06 Thread Marc-Andre Lemburg
Marc-Andre Lemburg m...@egenix.com added the comment: I believe _time module should become the home of the gettimeofday() method and pure python implementation of time.time() will be def time() s, us = _time.gettimeofday() return s + 1e-6 * us Similarly time.sleep() can be

[issue9528] Add pure Python implementation of time module to CPython

2010-08-06 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: These changes are very aggressive and may be doing more harm than good. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9528

[issue9532] pipe.read hang, when calling commands.getstatusoutput in multi-threading code of python 2.4

2010-08-06 Thread denny
New submission from denny markfile...@126.com: Hi all My environment is python 2.4.4 on linux. I am encountering hang of pipe.read() in commands.getstatusoutput for multi-threading code. I have spawned several threads which will call commands.getstatusoutput to run cli. However, pipe.read

[issue8299] Improve GIL in 2.7

2010-08-06 Thread Kristján Valur Jónsson
Kristján Valur Jónsson krist...@ccpgames.com added the comment: Although I did finally manage to explain the point of this patch (after a long, long discussion), I think the issue is still too controversial. We did, for example, see some strange behaviour in my last comment (Date: 2010-04-21

[issue9526] 2 GB limit in array module

2010-08-06 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: Thanks for the report. Also applies to 3.1 and 3.2 (and 2.6, but it's too late to fix things there). I agree that those (int) casts look wrong---I suspect they're leftovers from the big int - Py_ssize_t switch that happened for Python

[issue8411] Improve condition variable emulation on NT

2010-08-06 Thread Kristján Valur Jónsson
Kristján Valur Jónsson krist...@ccpgames.com added the comment: The latter. But I'd really like Antoine to look this over. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8411 ___

[issue8757] Automatic set-to-frozenset conversions not thread-safe

2010-08-06 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: Can the attached script be converted in a unittest that tests that the fix is correct? -- nosy: +ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8757

[issue9530] integer undefined behaviors

2010-08-06 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: This is good stuff! Thank you! I'll look through these. Is the tool you used publicly available? -- assignee: - mark.dickinson nosy: +mark.dickinson ___ Python tracker rep...@bugs.python.org

[issue8306] ctypes.create_string_buffer should only accept bytes

2010-08-06 Thread Ray.Allen
Ray.Allen ysj@gmail.com added the comment: Why not close this issue? It seems that this has been fixed in current py3k branch. -- nosy: +ysj.ray ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8306

[issue5936] Add MSI suport for uninstalling individual versions

2010-08-06 Thread Steven Bethard
Steven Bethard steven.beth...@gmail.com added the comment: Unassigning, because it's likely I won't have time to work on this for a while. I still think it would be a nice feature. ;-) -- assignee: bethard - ___ Python tracker

[issue9533] metaclass can't derive from ABC

2010-08-06 Thread Roald de Vries
New submission from Roald de Vries pyt...@roalddevries.nl: Exception raised:: Traceback (most recent call last): File bug.py, line 5, in module class derived(type, Sized): File /opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/abc.py, line 85, in

[issue8757] Automatic set-to-frozenset conversions not thread-safe

2010-08-06 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: See r83757, r83756, and r83755. The existing unittests prove the script does what it is supposed to do. The new code is just a different approach to the same problem so that it is less likely to be user visible. The

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-08-06 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto ocean-c...@m2.ccsnet.ne.jp: -- dependencies: +Improve condition variable emulation on NT ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9116 ___

[issue9534] OrderedDict.__del__ destructor throws AttributeError when process ends up with the exception trace

2010-08-06 Thread Valentine Gogichashvili
New submission from Valentine Gogichashvili val...@gmail.com: When the process is dying with the exception trace dump, I am getting the following notification from the destructor of the OrderedDict class:: Exception AttributeError: 'NoneType' object has no attribute 'print_exc' in bound

[issue5027] xml namespace not understood by xml.sax.saxutils.XMLGenerator

2010-08-06 Thread Troy J. Farrell
Troy J. Farrell t...@entheossoft.com added the comment: I figured it was probably too late, but one can always hope. :) While you sort out who gets to review this, I'll see if I can't work out a patch for 2.7. It also occurred to me last night that I should probably add a comment to it.

[issue9530] integer undefined behaviors

2010-08-06 Thread Eric Smith
Changes by Eric Smith e...@trueblade.com: -- nosy: +eric.smith ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9530 ___ ___ Python-bugs-list mailing

[issue9530] integer undefined behaviors

2010-08-06 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: Here are some fixes for Objects/bytesobject.c and Objects/bytearrayobject.c. More to come. -- keywords: +patch versions: +Python 3.2 -Python 3.3 Added file: http://bugs.python.org/file18415/issue9530_1.patch

[issue9530] integer undefined behaviors

2010-08-06 Thread John Regehr
John Regehr reg...@cs.utah.edu added the comment: Hi Mark-- Glad it's useful! We plan to release this tool but haven't done so yet, it still has rough edges. It's LLVM-based and it seems likely they will take our patches. -- ___ Python tracker

[issue9527] Add aware local time support to datetime module

2010-08-06 Thread Guido van Rossum
Changes by Guido van Rossum gu...@python.org: -- nosy: -gvanrossum ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9527 ___ ___ Python-bugs-list

[issue1647654] No obvious and correct way to get the time zone offset

2010-08-06 Thread Guido van Rossum
Changes by Guido van Rossum gu...@python.org: -- nosy: -gvanrossum ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1647654 ___ ___ Python-bugs-list

[issue8757] Automatic set-to-frozenset conversions not thread-safe

2010-08-06 Thread Daniel Stutzbach
Daniel Stutzbach dan...@stutzbachenterprises.com added the comment: It is easy in online communications to interpret a response as a disagreement. I apologize for falling into that trap. I am +1 on removing implicit set-to-frozenset conversions, which would more effectively fix issue8752 for

[issue1372770] email.Header should preserve original FWS

2010-08-06 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Header parsing and formatting is one of the major changes in email6, and it should handle this much more sensibly. email6 won't land until 3.3, though it will be available on pypy for testing before that. If you want propose a patch

[issue3210] subprocess.Popen does not release process handles if process cannot be started

2010-08-06 Thread Tim Golden
Tim Golden m...@timgolden.me.uk added the comment: Committed in r83759 r83760 r83761 -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3210 ___

[issue9528] Add pure Python implementation of time module to CPython

2010-08-06 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net added the comment: On Fri, Aug 6, 2010 at 3:44 AM, Marc-Andre Lemburg rep...@bugs.python.org wrote: .. Why are you calling the ticket *Add* pure Python implementation of time module to CPython when you appear to be after *replacing* the C

[issue9535] Pending signals are inherited by child processes

2010-08-06 Thread Greg Brockman
New submission from Greg Brockman g...@mit.deu: Upon os.fork(), pending signals are inherited by the child process. This can be demonstrated by pressing C-c in the middle of the following program: import os, sys, time, threading def do_fork(): while True: if not os.fork():

[issue9536] defaultdict doc makes incorrect reference to __missing__ method

2010-08-06 Thread John Posner
New submission from John Posner jjpos...@optimum.net: The documentation for collections.defaultdict is confusing with respect to the __missing__ method. The fact is that a programmer using defaultdict does not need to know anything about __missing__. The attached patch contains a rewrite of

[issue7443] test.support.unlink issue on Windows platform

2010-08-06 Thread Tim Golden
Changes by Tim Golden m...@timgolden.me.uk: -- assignee: - tim.golden ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7443 ___ ___ Python-bugs-list

[issue4708] os.pipe should return inheritable descriptors (Windows)

2010-08-06 Thread Tim Golden
Changes by Tim Golden m...@timgolden.me.uk: -- assignee: - tim.golden nosy: +tim.golden ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4708 ___

[issue1714451] subprocess.py problems errors when calling cmd.exe

2010-08-06 Thread Tim Golden
Changes by Tim Golden m...@timgolden.me.uk: -- assignee: - tim.golden nosy: +tim.golden ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1714451 ___

[issue1681974] mkdtemp fails on Windows if username has non-ASCII character

2010-08-06 Thread Tim Golden
Changes by Tim Golden m...@timgolden.me.uk: -- nosy: +tim.golden ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1681974 ___ ___ Python-bugs-list

[issue1672853] Error reading files larger than 4GB

2010-08-06 Thread Tim Golden
Changes by Tim Golden m...@timgolden.me.uk: -- assignee: - tim.golden nosy: +tim.golden ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1672853 ___

[issue1707753] get status output fix for Win32

2010-08-06 Thread Tim Golden
Changes by Tim Golden m...@timgolden.me.uk: -- assignee: - tim.golden nosy: +tim.golden ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1707753 ___

[issue1142] code sample showing errors reading large files with py 2.5/3.0

2010-08-06 Thread Tim Golden
Changes by Tim Golden m...@timgolden.me.uk: -- nosy: +tim.golden ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1142 ___ ___ Python-bugs-list

[issue6609] zipfile: WindowsError [267] The directory name is invalid

2010-08-06 Thread Tim Golden
Changes by Tim Golden m...@timgolden.me.uk: -- nosy: +tim.golden ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6609 ___ ___ Python-bugs-list

[issue6839] zipfile can't extract file

2010-08-06 Thread Tim Golden
Changes by Tim Golden m...@timgolden.me.uk: -- assignee: - tim.golden nosy: +tim.golden ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6839 ___

[issue8006] os.popen in Python 3.1

2010-08-06 Thread Tim Golden
Changes by Tim Golden m...@timgolden.me.uk: -- assignee: - tim.golden nosy: +tim.golden ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8006 ___

[issue2304] subprocess under windows fails to quote properly when shell=True

2010-08-06 Thread Tim Golden
Changes by Tim Golden m...@timgolden.me.uk: -- assignee: - tim.golden components: +Windows ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2304 ___

[issue3210] subprocess.Popen does not release process handles if process cannot be started

2010-08-06 Thread Hirokazu Yamamoto
Hirokazu Yamamoto ocean-c...@m2.ccsnet.ne.jp added the comment: Sorry for posting to closed entry, but I think handle should be closed in Lib/subprocess.py not in PC/_subprocess.c. I noticed following code showed strange error. import subprocess for _ in xrange(2): stdout =

[issue9533] metaclass can't derive from ABC

2010-08-06 Thread Daniel Urban
Changes by Daniel Urban urban.dani...@gmail.com: -- nosy: +durban type: compile error - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9533 ___

[issue3210] subprocess.Popen does not release process handles if process cannot be started

2010-08-06 Thread Tim Golden
Tim Golden m...@timgolden.me.uk added the comment: Blast. Thanks; I'll have to rework those patches then. -- status: closed - open ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3210 ___

[issue9534] OrderedDict.__del__ destructor throws AttributeError when process ends up with the exception trace

2010-08-06 Thread Raymond Hettinger
Changes by Raymond Hettinger rhettin...@users.sourceforge.net: -- assignee: - rhettinger nosy: +rhettinger ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9534 ___

[issue9534] OrderedDict.__del__ destructor throws AttributeError when process ends up with the exception trace

2010-08-06 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: Do you have a short script that can reproduce the error message? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9534

[issue9534] OrderedDict.__del__ destructor throws AttributeError when process ends up with the exception trace

2010-08-06 Thread Valentine Gogichashvili
Valentine Gogichashvili val...@gmail.com added the comment: Unfortunately I do not have a short script. It is happening during the failure in quite a big script. I am afraid, it will too time consuming for me to write it... Actually by the content of the OrderdDict instance that is throwing

[issue9264] trace.py documentation is incomplete

2010-08-06 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: Fine with me. Alexander, do you have the fixed up version you committed to 2.6, or should Eli revise the attachment here for 2.7? -- ___ Python tracker rep...@bugs.python.org

[issue8299] Improve GIL in 2.7

2010-08-06 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: OK. I would probably be better to expend energy on the 3.x new GIL, should issues arise. -- resolution: - out of date status: open - closed ___ Python tracker rep...@bugs.python.org

[issue1142] code sample showing errors reading large files with py 2.5/3.0

2010-08-06 Thread Guido van Rossum
Changes by Guido van Rossum gu...@python.org: -- nosy: -gvanrossum ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1142 ___ ___ Python-bugs-list

[issue7464] circular reference in HTTPResponse by urllib2

2010-08-06 Thread Kristján Valur Jónsson
Kristján Valur Jónsson krist...@ccpgames.com added the comment: in python/trunk/Lib/urllib2.py, line 1161 It doesn't appear to be an issue in py3k. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7464

[issue7897] Support parametrized tests in unittest

2010-08-06 Thread nchauvat
nchauvat nicolas.chau...@logilab.fr added the comment: In case it could be useful, here is how generative/parametrized tests are handled in logilab.common.testlib http://hg.logilab.org/logilab/common/file/a6b5fe18df99/testlib.py#l1137 -- nosy: +nchauvat

[issue1054] scriptsinstall target fails in alternate build dir

2010-08-06 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Set to needs patch as I don't see why you need a unit test for this build issue, feel free to change it back if you see fit. -- nosy: +BreamoreBoy stage: unit test needed - needs patch versions: +Python 2.7, Python 3.1, Python

[issue9531] test_complex.py fails

2010-08-06 Thread Mark Dickinson
Changes by Mark Dickinson dicki...@gmail.com: -- nosy: +mark.dickinson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9531 ___ ___ Python-bugs-list

[issue9315] The trace module lacks unit tests

2010-08-06 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net added the comment: Comments on issue9315.27-maint.5.patch: 1. I think you forgot to svn add Lib/test/__init__.py. 2. Instead of import tracedmodules.testmod, please use something like from test.tracedmodules import testmod. There is no

[issue6811] add a filename argument to marshal.load*

2010-08-06 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Just flagging this up in case it's dropped under the radar. -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6811

[issue7790] struct_time documentation entry should point to the table defining the tuple

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

[issue1566260] Better order in file type descriptions

2010-08-06 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: As a Windows user I'm not convinced this is worth doing. -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1566260

[issue9522] xml.etree.ElementTree forgets the encoding

2010-08-06 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: It behaves as documented. Moved to feature request. http://docs.python.org/library/xml.etree.elementtree.html -- components: +XML type: behavior - feature request versions: +Python 3.2, Python 3.3 -Python 3.1

[issue9522] xml.etree.ElementTree forgets the encoding

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

[issue9264] trace.py documentation is incomplete

2010-08-06 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net added the comment: The fixed up version is just r83549. It may merge cleanly with py3k - I believe doc changes are trivial if any between 2.6 and 3.x. I would like this to go through another round of reviews without release calendar

[issue1566260] Better order in file type descriptions

2010-08-06 Thread Tim Golden
Tim Golden m...@timgolden.me.uk added the comment: If individual users want to change these around, it's easy enough to do so post-hoc. Closing as won't fix. -- nosy: +tim.golden resolution: - wont fix ___ Python tracker rep...@bugs.python.org

[issue1566260] Better order in file type descriptions

2010-08-06 Thread Tim Golden
Changes by Tim Golden m...@timgolden.me.uk: -- stage: - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1566260 ___

[issue9529] Converge re.findall and re.finditer

2010-08-06 Thread Matthew Barnett
Matthew Barnett pyt...@mrabarnett.plus.com added the comment: (1) would break existing code. It would also mean that you wouldn't have access to the start and end positions of the matches either. (2) would also break existing code which is expecting a list. It's like the change that happened

[issue9373] pulldom has low code coverage

2010-08-06 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- stage: - patch review type: - feature request ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9373 ___

[issue7668] test_httpservers fails with non-ascii path

2010-08-06 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: This isn't a problem any more: 2.6 and 3.1 are now able to follow symbolic links. Sorry for the noise! -- status: open - closed ___ Python tracker rep...@bugs.python.org

[issue9534] OrderedDict.__del__ destructor throws AttributeError when process ends up with the exception trace

2010-08-06 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: There's not enough information here for me to follow-up. It's unlikely that dict.clear() would product the message you see and the existing code for OrderedDict.__del__ and OrderedDict.clear() look correct to me. The bug

[issue9537] argparse: use OrderedDict to store subparsers

2010-08-06 Thread Denver Coneybeare
New submission from Denver Coneybeare denver.coneybe...@gmail.com: Currently, when a subparser is added to an argparse.ArgumentParser the list of subparsers are stored in the built-in dict type. When these subparsers are listed when -h is given on the command line they are showed in the order

[issue9511] CharacterEncoderError when reading from sys.stdin from piped input in cmd.exe

2010-08-06 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: This is because python doesn't know the encoding of stdin, and so uses ASCII (I assume that's what 'charmap' is on windows...on my unix box the error message mentions ascii, not charmap). You can tell python to use an alternate encoding

[issue9417] Declaring a class creates circular references

2010-08-06 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: Andrea: for the purpose of this tracker, a 'bug' is a discrepancy between doc and behavior. The fact that (new-style) classes have circular references was known when they were introduced in 2.2. That fact is not a bug in the above sense. It

[issue9324] signal.signal(bogus_signal, handler) segfaults on Windows

2010-08-06 Thread Brian Curtin
Brian Curtin cur...@acm.org added the comment: Fixed in r83763 (py3k), r83764 (release31-maint), and r83765 (release27-maint). Thanks for reporting this. -- resolution: - fixed stage: patch review - committed/rejected versions: +Python 3.1 ___

[issue9515] vars() dictionary access to generate variables

2010-08-06 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: No, the docs are correct as they stand. They say that without an argument it acts like locals(), and there is even a special note saying you shouldn't modify the returned dictionary because what happens when you do is undefined. It

[issue2475] Popen.poll always returns None

2010-08-06 Thread David Andrzejewski
Changes by David Andrzejewski site+python@davidandrzejewski.com: -- nosy: +dandrzejewski ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2475 ___

[issue9418] Move _formatter_* methods from string type into _string module

2010-08-06 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: If I understand, the point is to better hide two functions that must be exposed for the benefit of .Formatter but which users really should not use. It would also slightly declutter dir(str) and help(str) which are already unusually 'big'.

[issue9424] deprecate unittest.TestCase.assertEquals

2010-08-06 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: What about the other duplicate pairs with a preferred choice? Is there too much use of the deprecated choice? -- nosy: +terry.reedy ___ Python tracker rep...@bugs.python.org

[issue9516] sysconfig: $MACOSX_DEPLOYMENT_TARGET mismatch: now 10.3 but 10.5 during configure

2010-08-06 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- nosy: +ronaldoussoren ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9516 ___ ___

[issue9418] Move _formatter_* methods from string type into _string module

2010-08-06 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: The idea seems fine to me. Hiding the _string module in Objects/unicodeobject.c is a little odd, though: why not a new Modules/_string.c file? Is the _string module only used by the string module? -- nosy: +mark.dickinson

[issue9537] argparse: use OrderedDict to store subparsers

2010-08-06 Thread Eric Smith
Changes by Eric Smith e...@trueblade.com: -- nosy: +eric.smith ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9537 ___ ___ Python-bugs-list mailing

[issue5612] whitespace folding in the email package could be better ; -)

2010-08-06 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Yes, this is being kept in mind for email6, but nothing is likely to happen in the current package. Since email6 won't make 3.2, I'm retargeting this bug for 3.3. -- stage: - unit test needed type: - behavior versions:

[issue9417] Declaring a class creates circular references

2010-08-06 Thread Kristján Valur Jónsson
Kristján Valur Jónsson krist...@ccpgames.com added the comment: What about my suggestion of simply providing a convention on how to disable links manually, similar to how minidom.document does it with an unlink method? If these cases are documented, then there shouldn't be any extra bother

[issue9520] Add Patricia Trie high performance container

2010-08-06 Thread Daniel Urban
Changes by Daniel Urban urban.dani...@gmail.com: -- nosy: +durban ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9520 ___ ___ Python-bugs-list

[issue1443866] email 3.0+ stops parsing headers prematurely

2010-08-06 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: It's not clear to me that this is a valid bug. It is true that the RFC says that a blank line preceeds the body. However, the line in question is not a valid header line. Mail parsers trying to implement the be liberal in what you

[issue6811] add a filename argument to marshal.load*

2010-08-06 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- versions: +Python 3.3 -Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6811 ___ ___

[issue9519] IDLE cannot do example 4.1 in tutorial (if statements)

2010-08-06 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: rtf2html can't make anything out of that file, so I'm guessing it is some sort of image wrapped up as an RTF? If that's so can you just post a jpg? Better would be to cut and paste the Idle session text as text. --

[issue9519] IDLE cannot do example 4.1 in tutorial (if statements)

2010-08-06 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: Replacing RTF file with a plain text version. -- nosy: +mark.dickinson Added file: http://bugs.python.org/file18419/ISSUE_9519.txt ___ Python tracker rep...@bugs.python.org

[issue9519] IDLE cannot do example 4.1 in tutorial (if statements)

2010-08-06 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: It appears that IDLE maintains the current indentation level, while the interpreter always resets indentation to the start of the line. I don't really see why this is a problem. In IDLE, when you want to unindent a level, you need to hit

[issue9530] integer undefined behaviors

2010-08-06 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: Fixed two more bytearray problems in r83768. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9530 ___

[issue9531] test_complex.py fails

2010-08-06 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- resolution: - invalid stage: - committed/rejected ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9531 ___

[issue9532] pipe.read hang, when calling commands.getstatusoutput in multi-threading code of python 2.4

2010-08-06 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: 2.4 is no longer maintained by the CPython team. Can you reproduce this in 2.7? -- nosy: +r.david.murray ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9532

[issue9536] defaultdict doc makes incorrect reference to __missing__ method

2010-08-06 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: I believe the description of __missing__ is there for those who want to subclass defaultdict, but I'll let Raymond confirm. -- nosy: +r.david.murray, rhettinger resolution: - invalid stage: - committed/rejected status: open -

[issue4256] optparse/argparse: provide a simple way to get a programmatically useful list of options

2010-08-06 Thread Hans Ulrich Niedermann
Changes by Hans Ulrich Niedermann h...@n-dimensional.de: -- nosy: +ndim ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4256 ___ ___

[issue9537] argparse: use OrderedDict to store subparsers

2010-08-06 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- nosy: +bethard ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9537 ___ ___ Python-bugs-list

[issue9519] IDLE cannot do example 4.1 in tutorial (if statements)

2010-08-06 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Yes, Mark is correct. IDLE does auto-indentation, and you have to backspace to go up to the previous indentation level. -- resolution: - invalid stage: - committed/rejected status: open - closed

[issue9534] OrderedDict.__del__ destructor throws AttributeError when process ends up with the exception trace

2010-08-06 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: None of the other python-dev IRC folks were able to deduce the issue from the provided information. Closing as invalid. Feel free to reopen if more actionable information becomes available. -- resolution: -

[issue9418] Move _formatter_* methods from string type into _string module

2010-08-06 Thread Marc-Andre Lemburg
Marc-Andre Lemburg m...@egenix.com added the comment: Mark Dickinson wrote: Mark Dickinson dicki...@gmail.com added the comment: The idea seems fine to me. Hiding the _string module in Objects/unicodeobject.c is a little odd, though: why not a new Modules/_string.c file?

  1   2   >