[issue2986] difflib.SequenceMatcher not matching long sequences

2010-07-31 Thread Georg Brandl
Georg Brandl added the comment: Deferring to after 3.2a1. -- priority: release blocker -> deferred blocker ___ Python tracker ___ ___

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

2010-07-31 Thread Daniel Urban
Daniel Urban 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 : -- priority: normal -> release blocker ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

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

2010-07-31 Thread Ray.Allen
Ray.Allen 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

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

2010-07-31 Thread Georg Brandl
Georg Brandl 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 tracker

[issue2986] difflib.SequenceMatcher not matching long sequences

2010-07-31 Thread Georg Brandl
Georg Brandl added the comment: Committed 2.6 patch in r83314. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

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

2010-07-31 Thread Radoslaw Madej
Radoslaw Madej 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. -- ___ Python tracker

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

2010-07-31 Thread Florent Xicluna
Florent Xicluna 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 ___ Python tracker

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

2010-07-31 Thread Florent Xicluna
Florent Xicluna added the comment: Fixed in r83319. Thanks. -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mail

[issue9088] revert distutils to its 3.1 state

2010-07-31 Thread Tarek Ziadé
Tarek Ziadé added the comment: done in r83053 -- resolution: accepted -> fixed status: open -> closed ___ Python tracker ___ ___ Pytho

[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 : 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, stderr=PIPE, close_fds=True).

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

2010-07-31 Thread Mark Lawrence
Mark Lawrence 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 -Python 3.1 __

[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 : -- nosy: +flox ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[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 : -- components: +Tests, Windows stage: -> needs patch type: -> behavior ___ Python tracker ___ ___ Python

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

2010-07-31 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +flox stage: -> needs patch type: -> behavior ___ Python tracker ___ ___ Python-bugs-list maili

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-07-31 Thread Antoine Pitrou
Antoine Pitrou 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 ___ Pyt

[issue3699] test_bigaddrspace broken

2010-07-31 Thread Mark Lawrence
Mark Lawrence 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 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 ___ Python

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

2010-07-31 Thread Mark Lawrence
Mark Lawrence 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 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. What is your s

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

2010-07-31 Thread Eric Smith
Eric Smith 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 been lost on me w

[issue4650] getopt need re-factor...

2010-07-31 Thread Mark Lawrence
Mark Lawrence 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 tracker

[issue4657] Doctest gets line numbers wrongs with <> in name

2010-07-31 Thread Mark Lawrence
Mark Lawrence added the comment: @Nick: could you provide a patch that addresses this issue? -- nosy: +BreamoreBoy ___ Python tracker ___

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

2010-07-31 Thread Antoine Pitrou
Antoine Pitrou 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 stage: unit test n

[issue4744] asynchat documentation needs to be more precise

2010-07-31 Thread Mark Lawrence
Mark Lawrence 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 added the comment: Looks good to me. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue4934] tp_del and tp_version_tag undocumented

2010-07-31 Thread Mark Lawrence
Changes by Mark Lawrence : -- assignee: georg.brandl -> d...@python nosy: +d...@python versions: +Python 3.2 -Python 3.0 ___ Python tracker ___ ___

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

2010-07-31 Thread Antoine Pitrou
Antoine Pitrou 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 ___

[issue5001] Remove assertion-based checking in multiprocessing

2010-07-31 Thread Mark Lawrence
Mark Lawrence added the comment: @Jesse: could you provide a patch that addresses this issue? -- nosy: +BreamoreBoy stage: -> needs patch versions: +Python 3.2 ___ Python tracker __

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

2010-07-31 Thread Georg Brandl
Georg Brandl added the comment: Committed in r83341. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue5149] syntactic sugar: type coercion on pointer assignment

2010-07-31 Thread Mark Lawrence
Changes by Mark Lawrence : -- 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 ___ __

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

2010-07-31 Thread Georg Brandl
Georg Brandl 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 tracker

[issue1481347] parse_makefile doesn't handle $$ correctly

2010-07-31 Thread Mark Lawrence
Changes by Mark Lawrence : -- stage: -> unit test needed versions: +Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker ___ ___ P

[issue4650] getopt need re-factor...

2010-07-31 Thread Georg Brandl
Georg Brandl 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 ___

[issue9431] 2to3 reapplies fix_dict

2010-07-31 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> benjamin.peterson nosy: +benjamin.peterson ___ Python tracker ___ ___ Python-bugs-list maili

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

2010-07-31 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> benjamin.peterson nosy: +benjamin.peterson ___ Python tracker ___ ___ Python-bugs-list maili

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

2010-07-31 Thread Florent Xicluna
Florent Xicluna added the comment: See #6583. -- nosy: +flox resolution: -> duplicate status: open -> closed superseder: -> 2to3 fails to fix test.test_support ___ Python tracker _

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

2010-07-31 Thread Antoine Pitrou
Antoine Pitrou 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 ___ Py

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-07-31 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

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

2010-07-31 Thread Florent Xicluna
Florent Xicluna 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: open -> closed

[issue8920] PYTHONSTARTUP should expand "~"

2010-07-31 Thread Florent Xicluna
Changes by Florent Xicluna : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

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

2010-07-31 Thread Antoine Pitrou
Antoine Pitrou 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 ___

[issue4934] tp_del and tp_version_tag undocumented

2010-07-31 Thread Antoine Pitrou
Antoine Pitrou added the comment: I think the reason tp_del isn't documented is that, as we somehow learnt it with the new IO code, it isn't really meant for third-party types. I would suggest checking with python-dev. As for tp_version_tag, it's for internal use (it indicated whether the meth

[issue4934] tp_del and tp_version_tag undocumented

2010-07-31 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +benjamin.peterson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue5001] Remove assertion-based checking in multiprocessing

2010-07-31 Thread Jesse Noller
Jesse Noller 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 __

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

2010-07-31 Thread Jesse Noller
Jesse Noller added the comment: @ray - you probably don't have the "dcon" binary on your path. bug.py calls a subprocess call. -- ___ Python tracker ___

[issue1776674] glob.glob inconsistent

2010-07-31 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc 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: http://bugs.python.

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-07-31 Thread Georg Brandl
Changes by Georg Brandl : -- priority: release blocker -> deferred blocker ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-07-31 Thread Brian Curtin
Brian Curtin 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 ___

[issue4657] Doctest gets line numbers wrongs with <> in name

2010-07-31 Thread Nick Coghlan
Nick Coghlan added the comment: On Sat, Jul 31, 2010 at 9:30 PM, Mark Lawrence wrote: > > Mark Lawrence added the comment: > > @Nick: could you provide a patch that addresses this issue? Probably, but the "don't do that" work around is trivial enough that my own motivation to fix it is really

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

2010-07-31 Thread Florent Xicluna
Florent Xicluna 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 ___ P

[issue5504] ctypes should work with systems where mmap can't be PROT_WRITE and PROT_EXEC

2010-07-31 Thread Florent Xicluna
Florent Xicluna added the comment: Issue #9385 marked as duplicate. -- nosy: +flox ___ Python tracker ___ ___ Python-bugs-list mailing

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

2010-07-31 Thread Florent Xicluna
Florent Xicluna 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 ___ Python tracker

[issue9435] test_distutils fails without zlib

2010-07-31 Thread Georg Brandl
New submission from Georg Brandl : 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 patch status: ope

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

2010-07-31 Thread Nikolaus Rath
Nikolaus Rath 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

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

2010-07-31 Thread Mark Lawrence
Mark Lawrence 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 Added file: http://bugs.p

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

2010-07-31 Thread Mark Lawrence
Changes by Mark Lawrence : -- assignee: georg.brandl -> d...@python nosy: +d...@python ___ Python tracker ___ ___ Python-bugs-list mail

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

2010-07-31 Thread Mark Lawrence
Changes by Mark Lawrence : -- stage: -> unit test needed type: -> behavior versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker ___ _

[issue9038] test_distutils failure

2010-07-31 Thread Antoine Pitrou
Antoine Pitrou added the comment: Seems to have disappeared with the distutils revert. -- resolution: -> out of date status: open -> closed ___ Python tracker ___ __

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

2010-07-31 Thread Ned Deily
Ned Deily 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 ___

[issue9436] test_sysconfig failure

2010-07-31 Thread Antoine Pitrou
New submission from Antoine Pitrou : 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 : 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 (distutils.tests.test_build_ext.BuildExtTestCase)

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

2010-07-31 Thread Ned Deily
Changes by Ned Deily : -- nosy: +akuchling ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue1710703] zipfile.ZipFile behavior inconsistent.

2010-07-31 Thread Alan McIntyre
Alan McIntyre added the comment: Sure thing; I'll see if I can have a look within the next week or so. -- ___ Python tracker ___ __

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

2010-07-31 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +merwok ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2010-07-31 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file16543/issue8047_etree_encoding.diff ___ Python tracker ___ ___ Python-bug

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

2010-07-31 Thread Georg Brandl
Changes by Georg Brandl : -- title: Add Unladden Swallow's optimizations to Python 3's pickle. -> Add Unladen Swallow's optimizations to Python 3's pickle. ___ Python tracker ___

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2010-07-31 Thread Florent Xicluna
Florent Xicluna 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") => outputs Unicode - tre

[issue5776] RPM build error with python-2.6.spec

2010-07-31 Thread Mark Lawrence
Mark Lawrence added the comment: Could someone comment on the patch as I don't understand the purpose of this file. -- nosy: +BreamoreBoy stage: -> patch review ___ Python tracker

[issue6231] ElementInclude may drop text

2010-07-31 Thread Florent Xicluna
Changes by Florent Xicluna : -- assignee: -> flox components: +XML stage: -> patch review status: languishing -> open ___ Python tracker ___

[issue9438] Clarify __debug__ restrictions

2010-07-31 Thread Barry A. Warsaw
New submission from Barry A. Warsaw : 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 are illegal. * Add

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

2010-07-31 Thread Mark Lawrence
Changes by Mark Lawrence : -- stage: -> patch review versions: +Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Un

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

2010-07-31 Thread Antoine Pitrou
New submission from Antoine Pitrou : 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 title: Add SSL chan

[issue9440] Remove bad assert in TestDateTime.test_microsecond_rounding

2010-07-31 Thread Georg Brandl
New submission from Georg Brandl : 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 components: Tests messages:

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

2010-07-31 Thread Mark Lawrence
Mark Lawrence added the comment: Can someone with Linux and/or Mac confirm whether or not this is still an issue. -- nosy: +BreamoreBoy ___ Python tracker ___ ___

[issue9441] increase logging handlers test coverage

2010-07-31 Thread Tom Dunham
New submission from Tom Dunham : 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 priority: normal severity:

[issue3532] bytes.tohex method

2010-07-31 Thread R. David Murray
R. David Murray 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 again on python-dev, ma

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

2010-07-31 Thread David Stanek
Changes by David Stanek : -- nosy: +dstanek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue2244] urllib and urllib2 decode userinfo multiple times

2010-07-31 Thread David Stanek
Changes by David Stanek : -- nosy: +dstanek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

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

2010-07-31 Thread David Stanek
Changes by David Stanek : -- nosy: +dstanek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue3532] bytes.tohex method

2010-07-31 Thread Florent Xicluna
Changes by Florent Xicluna : -- resolution: -> duplicate superseder: -> codecs missing: base64 bz2 hex zlib hex_codec ... ___ Python tracker ___

[issue9440] Remove bad assert in TestDateTime.test_microsecond_rounding

2010-07-31 Thread Mark Dickinson
Mark Dickinson 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 (dependent on compiler op

[issue6036] Clean up test_posixpath.py

2010-07-31 Thread Mark Lawrence
Mark Lawrence 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 had finger trouble as e

[issue6059] uuid.uuid4 cause segfault in emesene

2010-07-31 Thread Mark Lawrence
Mark Lawrence 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

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

2010-07-31 Thread Mark Lawrence
Mark Lawrence 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 ___ Pyth

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

2010-07-31 Thread Antoine Pitrou
Antoine Pitrou added the comment: Committed in r83349. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Pyth

[issue9440] Remove bad assert in TestDateTime.test_microsecond_rounding

2010-07-31 Thread Georg Brandl
Georg Brandl added the comment: Removed in r83352. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-b

[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 : -- nosy: +dstanek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue2986] difflib.SequenceMatcher not matching long sequences

2010-07-31 Thread Georg Brandl
Changes by Georg Brandl : -- priority: deferred blocker -> release blocker ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-07-31 Thread Georg Brandl
Changes by Georg Brandl : -- priority: deferred blocker -> release blocker ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

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

2010-07-31 Thread David Stanek
Changes by David Stanek : -- nosy: +dstanek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[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 : -- priority: deferred blocker -> release blocker ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

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

2010-07-31 Thread David Stanek
Changes by David Stanek : -- nosy: +dstanek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

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

2010-07-31 Thread David Stanek
Changes by David Stanek : -- nosy: +dstanek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

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

2010-07-31 Thread David Stanek
Changes by David Stanek : -- nosy: +dstanek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

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

2010-07-31 Thread David Stanek
Changes by David Stanek : -- nosy: +dstanek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue8638] Remove suggestion for name mangling from the tutorial

2010-07-31 Thread Georg Brandl
Georg Brandl added the comment: No objections noted, closing. -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list

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

2010-07-31 Thread Georg Brandl
Georg Brandl added the comment: Closing now. -- nosy: +georg.brandl resolution: out of date -> wont fix status: pending -> closed ___ Python tracker ___ _

[issue9328] str.__format__.__doc__ backport glitch

2010-07-31 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r83354. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue1711605] CGIHttpServer leaves traces of previous requests in env

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

  1   2   3   >