[issue6462] bsddb3 intermittent test failures

2010-08-22 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- keywords: +buildbot ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6462 ___ ___

[issue9662] ctypes not building under OS X because of ffi_closure_free not being defined early enough

2010-08-22 Thread Skip Montanaro
Changes by Skip Montanaro s...@pobox.com: -- nosy: +skip.montanaro ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9662 ___ ___ Python-bugs-list

[issue9662] ctypes not building under OS X because of ffi_closure_free not being defined early enough

2010-08-22 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: Is LLVM a supported platform? -- nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9662 ___

[issue9662] ctypes not building under OS X because of ffi_closure_free not being defined early enough

2010-08-22 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: It might as well be. OS X ships with it and is working towards making it their default compiler over gcc. Unladen also relies on it. This compiler issue is a fairly new one (I would guess past week or so), so making sure LLVM can compile Python

[issue9377] socket, PEP 383: Mishandling of non-ASCII bytes in host/domain names

2010-08-22 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: Is this patch in response to an actual problem, or a theoretical problem? If actual problem: what was the specific application, and what was the specific host name? If theoretical, I recommend to close it as won't fix. I find it perfectly

[issue9662] ctypes not building under OS X because of ffi_closure_free not being defined early enough

2010-08-22 Thread Brett Cannon
New submission from Brett Cannon br...@python.org: When I build under OS X 10.6 with LLVM I get four warnings of the type: /Users/brett/Dev/python/3.x/scratch/Modules/_ctypes/callbacks.c:20:9: warning: implicit declaration of function 'ffi_closure_free' is invalid in C99

[issue9653] New default argparse output to be added

2010-08-22 Thread Steven Bethard
Steven Bethard steven.beth...@gmail.com added the comment: Sorry, typo. Should have been len(sys.argv) == 1. Full script: import argparse import sys parser = argparse.ArgumentParser() parser.add_argument('--foo') if len(sys.argv) == 1: parser.print_help() else:

[issue8845] Expose sqlite3 connection inTransaction as read-only in_transaction attribute

2010-08-22 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: The sparc ubuntu buildbot appears to no longer exist. The sparc solaris buildbot doesn't have a problem with it. So right now only PPC Tiger is failing. An endianness issue was suggested, but since T_BOOL is used by _io, and that is

[issue9572] IOError in test_multiprocessing

2010-08-22 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: Fixed in r84271. I will open another issue for the locking stuff. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9572

[issue9663] importlib should exclusively open bytecode files

2010-08-22 Thread Brett Cannon
New submission from Brett Cannon br...@python.org: Importlib does not use any OS-level protections to gain exclusivity when opening a file like import.c does through open_exclusive. It probably should, though, when writing bytecode else one might end up with corrupt code. That's bad as bad

[issue858809] Use directories from configure rather than hardcoded

2010-08-22 Thread jan matejek
jan matejek jmate...@suse.cz added the comment: the problem this patch was solving is python libraries install into prefix/lib regardless of what is the correct local LIBDIR - which is obviously broken on systems where LIBDIR is something other than prefix/lib, most notable example being

[issue9663] importlib should exclusively open bytecode files

2010-08-22 Thread Jesse Noller
Jesse Noller jnol...@gmail.com added the comment: Nice. -- nosy: +jnoller ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9663 ___ ___

[issue9425] Rewrite import machinery to work with unicode paths

2010-08-22 Thread Romme
Changes by Romme sad.n...@gmail.com: -- nosy: +Romme ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9425 ___ ___ Python-bugs-list mailing list

[issue9661] 2to3 except fixer does the wrong thing for certain raise statements

2010-08-22 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: r84276. I didn't fix the second case raise e, None since that syntax is quite pointless. -- nosy: +benjamin.peterson resolution: - fixed status: open - closed ___ Python tracker

[issue1495802] cygwin: popen3 lock up

2010-08-22 Thread John Pham
John Pham j...@hotmail.com added the comment: last time I use - it is still a problem -- nosy: +jpham Added file: http://bugs.python.org/file18611/unnamed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1495802

[issue9512] logging.handlers.RotatingFileHandler - mode argument not respected

2010-08-22 Thread Vinay Sajip
Vinay Sajip vinay_sa...@yahoo.co.uk added the comment: The rotating handlers provided with the logging package are expected to be simple append-only handlers; if you need more specialised behaviour you need to subclass and implement what you need. The ELFF is about request logging, not

[issue8622] Add PYTHONFSENCODING environment variable

2010-08-22 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: In an up to date checkout of py3k on Gentoo linux with LC_CTYPE=en_US.UTF-8, I get a failure in test_sys: == FAIL: test_pythonfsencoding (test.test_sys.SysModuleTest)

[issue8622] Add PYTHONFSENCODING environment variable

2010-08-22 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Setting LC_ALL instead of LANG in the test fixes the problem. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8622 ___

[issue1467619] Header.decode_header eats up spaces

2010-08-22 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Georg's patch no longer applies to py3k. I ported it, but the result is not functional. It causes extra spaces during header generation, because it is there that email4/5 deals with ignoring spaces between encoded words by *adding*

[issue1492704] distinct error type from shutil.move()

2010-08-22 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Antoine, is this obsoleted by PEP 3151? -- nosy: +pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1492704 ___

[issue2830] Copy cgi.escape() to html

2010-08-22 Thread Pablo Mouzo
Pablo Mouzo pablomo...@gmail.com added the comment: I'm attaching a patch against py3k trunk that moves the function to the html module and fixes the documentation as Brett asked for. It also changes all the occurrences of cgi.escape I found for html.escape . -- keywords: +patch nosy:

[issue3548] subprocess.pipe function

2010-08-22 Thread Ernesto Menéndez
Changes by Ernesto Menéndez pya...@gmail.com: -- nosy: +Netto ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3548 ___ ___ Python-bugs-list mailing

<    1   2