[issue2986] difflib.SequenceMatcher not matching long sequences

2010-07-31 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: Deferring to after 3.2a1. -- priority: release blocker - deferred blocker ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2986 ___

[issue9214] Most Set methods of KeysView and ItemsView do not work right

2010-07-31 Thread Daniel Urban
Daniel Urban urban.dani...@gmail.com added the comment: P.S. Please let me know how to detect such issues in future patches. In some editors there is an option Remove trailing spaces or something like that. Also, some editors (for example Kate) show trailing spaces. --

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-07-31 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto ocean-c...@m2.ccsnet.ne.jp: -- priority: normal - release blocker ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9116 ___

[issue9400] multiprocessing.pool.AsyncResult.get() messes up exceptions

2010-07-31 Thread Ray.Allen
Ray.Allen ysj@gmail.com added the comment: I got OSError: [Errno 2] No such file or directory instead of TypeError when running the bug.py, did I miss something? -- nosy: +ysj.ray ___ Python tracker rep...@bugs.python.org

[issue8611] Python3 doesn't support locale different than utf8 and an non-ASCII path (POSIX)

2010-07-31 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: This will have to wait until after alpha1, as well. -- dependencies: +Rewrite import machinery to work with unicode paths nosy: +georg.brandl priority: release blocker - deferred blocker ___ Python

[issue2986] difflib.SequenceMatcher not matching long sequences

2010-07-31 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: Committed 2.6 patch in r83314. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2986 ___ ___

[issue9385] _ctypes module uses 'rwx' mmap() calls

2010-07-31 Thread Radoslaw Madej
Radoslaw Madej radeg...@o2.pl added the comment: Yes, the aforementioned patch does the job when applied manually with some tweaking and importing ctypes does not result in a MemoryError anymore. Tested with Python-2.7 and Python-3.1.2. -- ___

[issue9432] unquote(None) raises AttributeError - Instead of TypeError

2010-07-31 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: IMHO we could keep AttributeError in this case. This is a case where practicality beats purity. See also issue 1285086. -- components: +Library (Lib) nosy: +flox resolution: - fixed ___

[issue9301] urllib.quote(None) returns None in 2.7 (raised TypeError before)

2010-07-31 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Fixed in r83319. Thanks. -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9301 ___

[issue9088] revert distutils to its 3.1 state

2010-07-31 Thread Tarek Ziadé
Tarek Ziadé ziade.ta...@gmail.com added the comment: done in r83053 -- resolution: accepted - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9088 ___

[issue9433] regrtest.py -j 2 doesn't work on Windows: remove close_fds=True on Windows

2010-07-31 Thread STINNER Victor
New submission from STINNER Victor victor.stin...@haypocalc.com: On Windows, subprocess doesn't support close_fds=True if stdin, stdout or stderr is redirected to a pipe. The problem is in the work function: popen = Popen([sys.executable, '-E', '-m', 'test.regrtest', ...], ..., stdout=PIPE,

[issue9053] distutils compiles extensions so that Python.h cannot be found

2010-07-31 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Reading msg108321 I'm setting this to 3.2. Given that the first alpha is due now shouldn't this be addressed, apologies if this has already happened but I don't know here to look? -- nosy: +BreamoreBoy versions: +Python 3.2

[issue9433] regrtest.py -j 2 doesn't work on Windows: remove close_fds=True on Windows

2010-07-31 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- nosy: +flox ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9433 ___ ___ Python-bugs-list

[issue9433] regrtest.py -j 2 doesn't work on Windows: remove close_fds=True on Windows

2010-07-31 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- components: +Tests, Windows stage: - needs patch type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9433 ___

[issue8433] buildbot: test_curses failure, getmouse() returned ERR

2010-07-31 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- nosy: +flox stage: - needs patch type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8433 ___

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-07-31 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: The patch shouldn't remove COND_RESET, otherwise there will be spurious wakeups. Also, it would be nice to have more precisions about the issue. At which point does PyThreadState_Get() fail? -- nosy: +pitrou

[issue3699] test_bigaddrspace broken

2010-07-31 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Adding 2.7 as blame shows the file is essentially the same as for py3k. Can the priority of this be lowered to normal? -- nosy: +BreamoreBoy versions: +Python 2.7 ___ Python tracker

[issue3699] test_bigaddrspace broken

2010-07-31 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: No, the problem is specific to 3.x, because the tests haven't been ported properly. I still want to have the priority as high, because a broken test should not be left as-is. -- versions: -Python 2.7

[issue4188] Lib/threading.py causes infinite recursion when running as verbose

2010-07-31 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Could someone with knowledge of threading provide a unit test for this, assuming that you want or need to force threading into infinite recursion. Then we can test a patch that only moves two lines. -- nosy: +BreamoreBoy

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-07-31 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: I don't have much time at the moment to investigate, but I find it odd that this isn't occurring on the two Windows py3k buildbots. At least two of them (and perhaps the third -- I've asked Paul about it) are single-core virtual machines.

[issue9430] Document str() and repr() of timedelta.

2010-07-31 Thread Eric Smith
Eric Smith e...@trueblade.com added the comment: I think it would be clearer if the footnote said something like Negative 1 day plus 19 hours is equivalent to the timedelta argument of -5 hours). If I hadn't been following the discussion on #python-dev the point of this doc change would have

[issue4650] getopt need re-factor...

2010-07-31 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Wang Chun this is unlikely to move unless you can provide a patch that changes the code and the unit test. -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.2 -Python 3.0 ___ Python

[issue4657] Doctest gets line numbers wrongs with in name

2010-07-31 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: @Nick: could you provide a patch that addresses this issue? -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4657

[issue4188] Lib/threading.py causes infinite recursion when running as verbose

2010-07-31 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: The patch looks ok. A more robust solution would be to modify _note() so that it never creates a DummyThread, and instead uses the raw thread id if the current thread doesn't have a corresponding Thread object. -- nosy: +gps, pitrou

[issue4744] asynchat documentation needs to be more precise

2010-07-31 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Is there anyone with knowledge of asynchat who could provide a patch for this? -- assignee: georg.brandl - d...@python nosy: +BreamoreBoy, d...@python stage: - needs patch versions: +Python 2.7, Python 3.1, Python 3.2 -Python 3.0

[issue9430] Document str() and repr() of timedelta.

2010-07-31 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Looks good to me. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9430 ___ ___ Python-bugs-list

[issue4934] tp_del and tp_version_tag undocumented

2010-07-31 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- assignee: georg.brandl - d...@python nosy: +d...@python versions: +Python 3.2 -Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4934

[issue4188] Lib/threading.py causes infinite recursion when running as verbose

2010-07-31 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: I spoke too fast. With the patch, test_3_join_in_forked_from_thread in test_threading still fails with _VERBOSE manually set to True. -- ___ Python tracker rep...@bugs.python.org

[issue5001] Remove assertion-based checking in multiprocessing

2010-07-31 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: @Jesse: could you provide a patch that addresses this issue? -- nosy: +BreamoreBoy stage: - needs patch versions: +Python 3.2 ___ Python tracker rep...@bugs.python.org

[issue9430] Document str() and repr() of timedelta.

2010-07-31 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: Committed in r83341. -- nosy: +georg.brandl resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9430 ___

[issue5149] syntactic sugar: type coercion on pointer assignment

2010-07-31 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- stage: - unit test needed type: - feature request versions: +Python 3.2 -Python 2.6, Python 2.7, Python 3.0, Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5149

[issue9432] unquote(None) raises AttributeError - Instead of TypeError

2010-07-31 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: I'd say keep the AttributeError too. This is not different from many other functions that fail variously with random types fed into them. -- nosy: +georg.brandl status: open - closed ___ Python

[issue1481347] parse_makefile doesn't handle $$ correctly

2010-07-31 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- stage: - unit test needed versions: +Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1481347 ___

[issue4650] getopt need re-factor...

2010-07-31 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: getopt.error is now in 3k for a few releases, so the opportunity to remove is gone. -- nosy: +georg.brandl resolution: - wont fix status: open - closed ___ Python tracker rep...@bugs.python.org

[issue9431] 2to3 reapplies fix_dict

2010-07-31 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: -- assignee: - benjamin.peterson nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9431 ___

[issue9429] 2to3 does not rename test.test_support to test.support

2010-07-31 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: -- assignee: - benjamin.peterson nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9429 ___

[issue9429] 2to3 does not rename test.test_support to test.support

2010-07-31 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: See #6583. -- nosy: +flox resolution: - duplicate status: open - closed superseder: - 2to3 fails to fix test.test_support ___ Python tracker rep...@bugs.python.org

[issue4188] Lib/threading.py causes infinite recursion when running as verbose

2010-07-31 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Here is a patch with the alternative approach suggested above. There still is the aforementioned test_threading issue when run standalone. -- Added file: http://bugs.python.org/file18283/verbosethreading.patch

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-07-31 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +georg.brandl ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9116 ___ ___ Python-bugs-list

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-07-31 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: This issue is over, except for #7723 which is tracked separately. -- dependencies: -sqlite only accept buffer() for BLOB objects(input/output) resolution: accepted - fixed stage: patch review - committed/rejected status:

[issue8920] PYTHONSTARTUP should expand ~

2010-07-31 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8920 ___ ___

[issue9433] regrtest.py -j 2 doesn't work on Windows: remove close_fds=True on Windows

2010-07-31 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Does it work ok if you remove close_fds? There is a reason it's better to close all handles :) -- nosy: +pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9433

[issue4934] tp_del and tp_version_tag undocumented

2010-07-31 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4934 ___ ___ Python-bugs-list

[issue5001] Remove assertion-based checking in multiprocessing

2010-07-31 Thread Jesse Noller
Jesse Noller jnol...@gmail.com added the comment: @Mark Yeah - I'm the current multiprocessing maintainer. If I fix it, I'll just commit it :) I filed this as a to do against myself. -- ___ Python tracker rep...@bugs.python.org

[issue9400] multiprocessing.pool.AsyncResult.get() messes up exceptions

2010-07-31 Thread Jesse Noller
Jesse Noller jnol...@gmail.com added the comment: @ray - you probably don't have the dcon binary on your path. bug.py calls a subprocess call. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9400

[issue1776674] glob.glob inconsistent

2010-07-31 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: Here is a test + patch, to preserve the separator. Of course this changes the current behaviour, like: glob.glob('/tmp/foo*') ['/tmp/foo1', '/tmp/foo2'] -- keywords: +patch nosy: +amaury.forgeotdarc Added file:

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-07-31 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: -- priority: release blocker - deferred blocker ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9116 ___

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-07-31 Thread Brian Curtin
Brian Curtin cur...@acm.org added the comment: Both machines I've seen this on were true multicore, no VMs. One is dual core the other is 16. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9116

[issue4657] Doctest gets line numbers wrongs with in name

2010-07-31 Thread Nick Coghlan
Nick Coghlan ncogh...@gmail.com added the comment: On Sat, Jul 31, 2010 at 9:30 PM, Mark Lawrence rep...@bugs.python.org wrote: Mark Lawrence breamore...@yahoo.co.uk added the comment: @Nick: could you provide a patch that addresses this issue? Probably, but the don't do that work around is

[issue9385] _ctypes module uses 'rwx' mmap() calls

2010-07-31 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: This is a duplicate of #5504, according to Arfrever -- nosy: +flox resolution: - duplicate status: open - closed superseder: - ctypes should work with systems where mmap can't be PROT_WRITE and PROT_EXEC

[issue1686] string.Template.safe_substitute fail when overriding pattern attribute

2010-07-31 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: The patch (braced_override.diff) still applies on 3.2. I am +0, because it is small and tested. What is the decision? -- nosy: +flox stage: - patch review versions: +Python 3.2 -Python 3.0

[issue9435] test_distutils fails without zlib

2010-07-31 Thread Georg Brandl
New submission from Georg Brandl ge...@python.org: Noticed it in 3.2a1, but probably present on other branches. It should not fail, but skip these tests. -- assignee: tarek components: Distutils messages: 112157 nosy: georg.brandl, tarek priority: normal severity: normal stage: needs

[issue9400] multiprocessing.pool.AsyncResult.get() messes up exceptions

2010-07-31 Thread Nikolaus Rath
Nikolaus Rath nikol...@rath.org added the comment: @ray: Try it with the following dummy dcon program: $ cat dcon #!/bin/sh exit 127 (and change the path to dcon in bug.py accordingly). -- ___ Python tracker rep...@bugs.python.org

[issue5622] wrong error from curses.wrapper if curses initialization fails

2010-07-31 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: This is a one line patch on wrapper.py. Sorry I can't do any more with this cos I only have a windows box. -- keywords: +patch nosy: +BreamoreBoy stage: - unit test needed type: - behavior versions: +Python 3.2 -Python 3.0

[issue5626] misleading comment in socket.gethostname() documentation

2010-07-31 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/issue5626 ___

[issue5701] ZipFile returns compressed data stream when encountering unsupported compression method

2010-07-31 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- stage: - unit test needed type: - behavior versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5701

[issue9038] test_distutils failure

2010-07-31 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Seems to have disappeared with the distutils revert. -- resolution: - out of date status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9038

[issue5622] wrong error from curses.wrapper if curses initialization fails

2010-07-31 Thread Ned Deily
Ned Deily n...@acm.org added the comment: [FYI: Comments at the beginning of a patch file are ignored by the standard Unix-y patch utilities. They are there for a reason.] -- ___ Python tracker rep...@bugs.python.org

[issue9436] test_sysconfig failure

2010-07-31 Thread Antoine Pitrou
New submission from Antoine Pitrou pit...@free.fr: When I use the following configuration (in order to build a 32-bit Python a 64-bit OS): ./configure --with-computed-gotos CFLAGS=-m32 LDFLAGS=-m32 I then get a failure in test_sysconfig:

[issue9437] test_distutils failure with -m32

2010-07-31 Thread Antoine Pitrou
New submission from Antoine Pitrou pit...@free.fr: When I use the following configuration (in order to build a 32-bit Python a 64-bit OS): ./configure --with-computed-gotos CFLAGS=-m32 LDFLAGS=-m32 I then get two failures in test_distutils: test_build_ext

[issue5622] wrong error from curses.wrapper if curses initialization fails

2010-07-31 Thread Ned Deily
Changes by Ned Deily n...@acm.org: -- nosy: +akuchling ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5622 ___ ___ Python-bugs-list mailing list

[issue1710703] zipfile.ZipFile behavior inconsistent.

2010-07-31 Thread Alan McIntyre
Alan McIntyre alan.mcint...@gmail.com added the comment: Sure thing; I'll see if I can have a look within the next week or so. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1710703 ___

[issue7723] sqlite only accept buffer() for BLOB objects (input/output)

2010-07-31 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +merwok ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7723 ___ ___ Python-bugs-list mailing

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2010-07-31 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: Removed file: http://bugs.python.org/file16543/issue8047_etree_encoding.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8047 ___

[issue9410] Add Unladen Swallow's optimizations to Python 3's pickle.

2010-07-31 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: -- title: Add Unladden Swallow's optimizations to Python 3's pickle. - Add Unladen Swallow's optimizations to Python 3's pickle. ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9410

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2010-07-31 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Patch updated here, and on Rietveld too. http://codereview.appspot.com/664043 Rules (as discussed): - tree.tostring(encoding=None) = encodes to US-ASCII (compatible with 2.7 and lxml.etree) - tree.tostring(encoding=unicode) =

[issue6231] ElementInclude may drop text

2010-07-31 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- assignee: - flox components: +XML stage: - patch review status: languishing - open ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6231

[issue9438] Clarify __debug__ restrictions

2010-07-31 Thread Barry A. Warsaw
New submission from Barry A. Warsaw ba...@python.org: On http://docs.python.org/library/constants.html?highlight=__debug__#__debug__ * Be more explicit that assigments to None and __debug__ are illegal even when used as attributes. IOW it's not just assignment to the built-in names that

[issue5934] fix gcc warnings: explicit type conversion for uid/gid in posix

2010-07-31 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- stage: - patch review versions: +Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5934 ___

[issue9439] Add SSL changes to 3.2 what's new

2010-07-31 Thread Antoine Pitrou
New submission from Antoine Pitrou pit...@free.fr: Patch waiting for un-freeze. -- assignee: georg.brandl components: Documentation files: whatsnew-ssl.patch keywords: patch messages: 112168 nosy: georg.brandl, pitrou priority: low severity: normal stage: commit review status: open

[issue9440] Remove bad assert in TestDateTime.test_microsecond_rounding

2010-07-31 Thread Georg Brandl
New submission from Georg Brandl ge...@python.org: The last assertion in TestDateTime.test_microsecond_rounding does not test a predictable outcome. For example, on my box it passes with pydebug enabled and fails without. It should just be removed. -- assignee: belopolsky

[issue6008] Idle should be installed as `idle3.1` and not `idle3`

2010-07-31 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Can someone with Linux and/or Mac confirm whether or not this is still an issue. -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6008

[issue9441] increase logging handlers test coverage

2010-07-31 Thread Tom Dunham
New submission from Tom Dunham t...@tomdunham.org: Some regression tests for logging handlers, brings coverage up from 37% to 52%. Mainly tests to rotating file handlers. -- components: Library (Lib) files: rotating_file_handlers.patch keywords: patch messages: 112171 nosy: Tom

[issue3532] bytes.tohex method

2010-07-31 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: The 'add transform/untransform' issue seems to be issue 7475. Note that there was in fact supposed to be a 'hex' method: http://mail.python.org/pipermail/python-dev/2009-September/091628.html Matt, if you'd like to raise this question

[issue9141] Allow objects to decide if they can be collected by GC

2010-07-31 Thread David Stanek
Changes by David Stanek dsta...@dstanek.com: -- nosy: +dstanek ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9141 ___ ___ Python-bugs-list mailing

[issue2244] urllib and urllib2 decode userinfo multiple times

2010-07-31 Thread David Stanek
Changes by David Stanek dsta...@dstanek.com: -- nosy: +dstanek ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2244 ___ ___ Python-bugs-list mailing

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

2010-07-31 Thread David Stanek
Changes by David Stanek dsta...@dstanek.com: -- nosy: +dstanek ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2304 ___ ___ Python-bugs-list mailing

[issue3532] bytes.tohex method

2010-07-31 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- resolution: - duplicate superseder: - codecs missing: base64 bz2 hex zlib hex_codec ... ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3532

[issue9440] Remove bad assert in TestDateTime.test_microsecond_rounding

2010-07-31 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: I agree this should be removed; it's a halfway case, and on a machine that's using x87 floating-point it's subject to the usual issues involving register spills and unpredictable conversions from 64-bit precision to 53-bit precision

[issue6036] Clean up test_posixpath.py

2010-07-31 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: The duplicate hasattr test still exists in 2.7 but the code has been rewritten for py3k. The shebang line is still missing but isn't used in many test files. The svn:executable property has not been set but is this needed? The OP has

[issue6059] uuid.uuid4 cause segfault in emesene

2010-07-31 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Can someone with a linux box please try to reproduce this crash. -- components: +Extension Modules nosy: +BreamoreBoy stage: - unit test needed ___ Python tracker rep...@bugs.python.org

[issue6103] Static library (libpythonX.Y.a) installed in incorrect location

2010-07-31 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Can someone from the build team please review the attached patch, thanks. -- nosy: +BreamoreBoy stage: - patch review type: - behavior versions: +Python 3.2 -Python 2.4, Python 2.5, Python 2.6, Python 3.0

[issue9439] Add SSL changes to 3.2 what's new

2010-07-31 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Committed in r83349. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9439 ___

[issue9440] Remove bad assert in TestDateTime.test_microsecond_rounding

2010-07-31 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: Removed in r83352. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9440 ___

[issue7839] Popen should raise ValueError if pass a string when shell=False or a list when shell=True

2010-07-31 Thread David Stanek
Changes by David Stanek dsta...@dstanek.com: -- nosy: +dstanek ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7839 ___ ___ Python-bugs-list mailing

[issue2986] difflib.SequenceMatcher not matching long sequences

2010-07-31 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: -- priority: deferred blocker - release blocker ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2986 ___

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-07-31 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: -- priority: deferred blocker - release blocker ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9116 ___

[issue9370] Add reader redirect from test package docs to unittest module

2010-07-31 Thread David Stanek
Changes by David Stanek dsta...@dstanek.com: -- nosy: +dstanek ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9370 ___ ___ Python-bugs-list mailing

[issue8611] Python3 doesn't support locale different than utf8 and an non-ASCII path (POSIX)

2010-07-31 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: -- priority: deferred blocker - release blocker ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8611 ___

[issue6293] Have regrtest.py echo back sys.flags

2010-07-31 Thread David Stanek
Changes by David Stanek dsta...@dstanek.com: -- nosy: +dstanek ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6293 ___ ___ Python-bugs-list mailing

[issue8910] Write a text file explaining why Lib/test/data exists

2010-07-31 Thread David Stanek
Changes by David Stanek dsta...@dstanek.com: -- nosy: +dstanek ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8910 ___ ___ Python-bugs-list mailing

[issue7331] Command line testing consistency between 2.x and 3.x

2010-07-31 Thread David Stanek
Changes by David Stanek dsta...@dstanek.com: -- nosy: +dstanek ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7331 ___ ___ Python-bugs-list mailing

[issue7325] tempfile.mkdtemp() does not return absolute pathname when dir is specified

2010-07-31 Thread David Stanek
Changes by David Stanek dsta...@dstanek.com: -- nosy: +dstanek ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7325 ___ ___ Python-bugs-list mailing

[issue8638] Remove suggestion for name mangling from the tutorial

2010-07-31 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: No objections noted, closing. -- status: pending - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8638 ___

[issue8005] datetime's comparison methods do not return NotImplemented when they should

2010-07-31 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: Closing now. -- nosy: +georg.brandl resolution: out of date - wont fix status: pending - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8005

[issue9328] str.__format__.__doc__ backport glitch

2010-07-31 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: Fixed in r83354. -- nosy: +georg.brandl resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9328 ___

[issue1711605] CGIHttpServer leaves traces of previous requests in env

2010-07-31 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: #9272 has a patch. -- nosy: +georg.brandl resolution: - duplicate status: open - closed superseder: - CGIHTTPServer poisons os.environ ___ Python tracker rep...@bugs.python.org

[issue5778] sys.version format differs between MSC and GCC

2010-07-31 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: This change would bring the code in agreement with the docs: 'version (#build_number, build_date, build_time) [compiler]'. FWIW, it would also save one line, which can be useful in small terminals/consoles. Tentatively adding the easy keyword

[issue8620] wrong truncation of last line in cmd.Cmd

2010-07-31 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8620 ___ ___ Python-bugs-list mailing list

[issue8620] wrong truncation of last line in cmd.Cmd

2010-07-31 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Here is a unit test that demonstrates the problem (against py3k trunk). I'm not convinced that fixing this would be backward incompatible. -- ___ Python tracker rep...@bugs.python.org

  1   2   3   >