[issue8422] tiger buildbot: test_abspath_issue3426 failure (test_genericpath.py)

2010-05-13 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: afaict, it needs backport to 2.7. -- components: +Tests nosy: +flox stage: - commit review status: closed - open type: - crash versions: +Python 2.7 -Python 3.2 ___ Python tracker rep

[issue8084] pep-0370 on osx duplicates existing functionality

2010-05-13 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: It fails on x86 Tiger trunk buildbot, too. (the PPC Tiger buildbot is happy) -- keywords: +buildbot nosy: +flox ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8084

[issue8423] tiger buildbot: test_pep277 failures

2010-05-13 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- assignee: - ronaldoussoren components: +Macintosh, Tests nosy: +flox, mark.dickinson, michael.foord, ned.deily, ronaldoussoren stage: - needs patch type: - behavior versions: +Python 2.7

[issue8423] tiger buildbot: test_pep277 failures

2010-05-13 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Some diagnosis information ... - happens for 2 tests inside test_pep277: test_listdir and test_normalize - happens only for 4 weird filenames (added with #8180) - happens only on x86 Tiger buildbot (PPC Tiger does not report

[issue8423] tiger buildbot: test_pep277 failures

2010-05-13 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: The gory details... import os, unicodedata tempdir = u'temp_pep277' name = u'\u0385\u03d3\u03d4' os.mkdir(tempdir) with open(os.path.join(tempdir, name), 'w') as f: ... f.write('foo') unicodedata.normalize('NFD', name) u

[issue1285086] urllib.quote is too slow

2010-05-16 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: Removed file: http://bugs.python.org/file17291/issue1285086_fast_quote.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1285086

[issue1285086] urllib.quote is too slow

2010-05-16 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: Removed file: http://bugs.python.org/file17295/issue1285086_using_translate.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1285086

[issue1285086] urllib.quote is too slow

2010-05-16 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: Removed file: http://bugs.python.org/file17298/issue1285086_using_rstrip.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1285086

[issue1285086] urllib.quote is too slow

2010-05-16 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: Removed file: http://bugs.python.org/file17299/urllib_quote_speed_test.py ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1285086

[issue1285086] urllib.quote is too slow

2010-05-16 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Updated script for benchmarks (on 2.x and 3.x). Inspired by the Tools/iobench script. It benchmarks various quote/unquote implementations on 2.x and 3.x. On 2.7 the fastest implementation is something like: def quote(s

[issue1285086] urllib.quote is too slow

2010-05-16 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: Added file: http://bugs.python.org/file17366/issue1285086_using_rstrip_v2.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1285086

[issue1285086] urllib.quote is too slow

2010-05-16 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Proposed patches for quote and unquote on 2.7 and 3.2. -- Added file: http://bugs.python.org/file17367/issue1285086_using_rstrip_py3k.diff ___ Python tracker rep...@bugs.python.org http

[issue1285086] urllib.quote is too slow

2010-05-17 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Committed in r81265 for 2.7. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1285086

[issue8740] infinite recursion with setfilesystemencoding and pdb

2010-05-17 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Next release should fix it: 3.1.3 (Tested on 3.1 branch) -- nosy: +flox, haypo resolution: - duplicate stage: - committed/rejected status: open - closed superseder: - sys.setfilesystemencoding(xxx); open(a) = stack overflow

[issue1285086] urllib.quote is too slow

2010-05-17 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: Removed file: http://bugs.python.org/file17366/issue1285086_using_rstrip_v2.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1285086

[issue1285086] urllib.quote is too slow

2010-05-17 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Committed to 3.2 in r81271, after some additional tuning. Btw, I kept list comprehension in 3.2, because it is faster for small strings (even if the gain is ~10%). -- status: open - closed

[issue8142] libffi update to 3.0.9

2010-05-19 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: It seems fixed now. -- resolution: - fixed stage: needs patch - committed/rejected status: open - pending ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8142

[issue8142] libffi update to 3.0.9

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

[issue8920] PYTHONSTARTUP should expand ~

2010-06-06 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Here it works with : PYTHONSTARTUP=$HOME/.pythonrc ./python -- components: +Interpreter Core nosy: +flox resolution: - wont fix stage: - committed/rejected status: open - pending versions: +Python 2.7

[issue8978] tarfile.ReadError: file could not be opened successfully if compiled without zlib

2010-06-11 Thread Florent Xicluna
New submission from Florent Xicluna florent.xicl...@gmail.com: When Python is compiled without zlib support, the error message is not very helpful when trying to untar an archive. tarfile.open('sample.tar.gz') tarfile.ReadError: file could not be opened successfully It happens when you run

[issue8978] tarfile.ReadError: file could not be opened successfully if compiled without zlib

2010-06-11 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: something like : raise CompressionError(zlib module is not available) -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8978

[issue8978] tarfile.ReadError: file could not be opened successfully if compiled without zlib

2010-06-11 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- components: +Library (Lib) -Extension Modules ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8978

[issue9145] test_coercion fails in refleak runs

2010-07-04 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- assignee: - flox components: -Library (Lib) resolution: - accepted stage: - needs patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9145

[issue9145] test_coercion fails in refleak runs

2010-07-04 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Fixed with r82529 -- resolution: accepted - fixed stage: needs patch - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9145

[issue6057] sqlite3 error classes should be documented

2010-07-09 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- assignee: ghaering - keywords: +easy nosy: +flox type: - behavior versions: -Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6057

[issue7825] test_threadsignals leaks references

2010-07-27 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: I did not commit the patch because I'm not sure it is the right approach. I need someone else to comment on this. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org

[issue4770] binascii module, inconsistent behavior: some functions accept unicode string input

2010-07-27 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Fixed with r83182. -- assignee: - flox resolution: - fixed stage: patch review - committed/rejected status: open - closed versions: -Python 3.1 ___ Python tracker rep...@bugs.python.org

[issue8966] ctypes: remove implicit conversion between unicode and bytes

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

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

2010-07-27 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: For 3.2, there's some other corner cases which are not covered by the patch. Example: unquote(()) unquote({}) See attached patch. -- keywords: +patch stage: committed/rejected - commit review status: closed - open versions

[issue7825] test_threadsignals leaks references

2010-07-27 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Now it's fixed for 2.7 with r83187. (thanks for the hint, Antoine) No issue on 3.x, AFAICT. -- resolution: - fixed stage: patch review - committed/rejected status: open - closed

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

2010-07-28 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: 1/ The AttributeError on unquote() is backward compatible with 2.6, 2.7 and 3.1. (issue 9301 is about backward compatibility) 2/ All the quote*/unquote* functions accept both str and bytes (except quote_from_bytes). I don't find

[issue5006] Duplicate UTF-16 BOM if a file is open in append mode

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

[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

[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

[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 http://bugs.python.org

[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 ___ ___ Python

[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

[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

[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

[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

[issue8249] expat.ParserCreate - SystemError bad argument to internal function

2010-08-01 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Unable to reproduce. -- nosy: +haypo resolution: - works for me status: pending - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8249

[issue8994] pydoc does not support non-ascii docstrings

2010-08-01 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: A duplicate of #7675? -- nosy: +flox resolution: - duplicate status: open - pending superseder: - help() doesn't accept unicode literals in built in docstrings ___ Python tracker rep

[issue8994] pydoc does not support non-ascii docstrings

2010-08-01 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Oops, I really mean #6625. -- status: pending - open superseder: help() doesn't accept unicode literals in built in docstrings - UnicodeEncodeError on pydoc's CLI ___ Python tracker rep

[issue9458] xml.etree.ElementTree.write(): encoding handling problems

2010-08-03 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- nosy: +effbot, flox ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9458 ___ ___ Python

[issue7668] test_httpservers fails with non-ascii path

2010-08-03 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Confirmed on 2.6 and 3.1 PPC Tiger and PPC Leopard buildbots. Example (on PPC Leopard 2.6): test_httpservers 'import site' failed; use -v for traceback [16390 refs] 'import site' failed; use -v for traceback [16390 refs] 'import site

[issue8757] Race condition when checking for set in set

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

[issue7186] Document specialness of __doc__, and possibly other special attributes

2010-08-04 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: This is similar with #9438, about __debug__ being read-only. -- nosy: +flox stage: - needs patch versions: +Python 2.6, Python 2.7, Python 3.1, Python 3.2 ___ Python tracker rep

[issue7186] Document specialness of __doc__, and possibly other special attributes

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

[issue4493] urllib2 doesn't always supply / where URI path component is empty

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

[issue7110] Output test failures on stderr in regrtest.py

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

[issue9403] cElementTree: replace PyObject_DEL() by Py_DECREF() to fix a crash in pydebug mode

2010-08-04 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- components: +Extension Modules, XML -Library (Lib) nosy: +effbot, flox type: - crash ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9403

[issue9402] pyexpat: replace PyObject_DEL() by Py_DECREF() to fix a crash in pydebug mode

2010-08-04 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- components: +Extension Modules, XML -Library (Lib) nosy: +effbot, flox stage: - patch review type: - crash ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9402

[issue9403] cElementTree: replace PyObject_DEL() by Py_DECREF() to fix a crash in pydebug mode

2010-08-04 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- stage: - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9403 ___ ___ Python

[issue9396] Standardise (and publish?) cache handling in standard library

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

[issue9273] 2to3 to simultaneously do code AND doctests

2010-08-04 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- nosy: +benjamin.peterson title: 2to to simultaneously do code AND doctests - 2to3 to simultaneously do code AND doctests type: - feature request ___ Python tracker rep...@bugs.python.org http

[issue9364] some problems with the documentation of pydoc

2010-08-04 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- keywords: +easy nosy: +flox stage: - needs patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9364

[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

[issue4608] urllib.request.urlopen does not return an iterable object

2010-08-08 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Thanks, Brian. Pushed with revision 83833. -- assignee: facundobatista - flox nosy: +flox resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python

[issue7564] test_ioctl may fail when run in background

2010-08-08 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Fixed with revision 83839. -- resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7564

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2010-08-08 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Done for 3.2 with r83851. Still opened, if someone wants to propose a patch for 3.1. -- assignee: effbot - keywords: +easy -patch stage: commit review - needs patch versions: -Python 3.2

[issue4617] SyntaxError when free variable name is also an exception target

2010-08-08 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: This bug is waiting for unit tests and a small patch cleanup. See previous message: http://bugs.python.org/issue4617#msg99950 -- keywords: -needs review nosy: +ezio.melotti, scoder versions: +Python 3.2 -Python 3.0

[issue7214] TreeBuilder.end(tag) differs between cElementTree and ElementTree

2010-08-08 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: Removed file: http://bugs.python.org/file16571/unnamed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7214

[issue7214] TreeBuilder.end(tag) differs between cElementTree and ElementTree

2010-08-08 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: The verification of the matching between start and end tag is performed in a debug assert statement in the Python version. This check is ignored if the module is compiled with -O. It is ignored in the C version, too. I would suggest

[issue6488] ElementTree documentation refers to path with no explanation, and inconsistently

2010-08-08 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Documentation patch accepted, for the path == XPath confusion and clarify other points too. http://bugs.python.org/issue6488#msg90528 -- assignee: effbot - type: - behavior ___ Python

[issue8110] subprocess.py doesn't correctly detect Windows machines

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

[issue8277] ElementTree won't parse comments

2010-08-08 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: IIUC it works like that by design. The ElementTree 1.3 (which is part of Python 2.7 and 3.2) allows to define your own parser which parses comments (see previous comments). Close as won't fix? -- nosy: +scoder resolution

[issue7772] test_py3kwarn fails when running the whole test suite

2010-08-08 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Fixed with r82149. -- dependencies: +buildbot: DeprecationWarning not raised for icglue (test_py3kwarn.TestStdlibRemovals) status: open - closed ___ Python tracker rep...@bugs.python.org

[issue5930] Transient error in multiprocessing (test_number_of_objects)

2010-08-08 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Confirmed on some buildbots. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5930

[issue8142] libffi update to 3.0.9

2010-08-08 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: x86 FreeBSD 3.x buildbot seems to compile libffi. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8142

[issue7732] imp.find_module crashes Python if there exists a directory named __init__.py

2010-08-08 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: According to message http://bugs.python.org/issue7732#msg102702, someone should write a patch for 3.x too. -- assignee: flox - stage: patch review - needs patch versions: +Python 3.1, Python 3.2

[issue8530] Stringlib fastsearch can read beyond the front of an array

2010-08-08 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Fixed with r83859 (on 3.2). -- resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8530

[issue7977] I found Python 3.1 xmlrpc lib use param not properly. and i have fixed it.

2010-08-08 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- stage: unit test needed - committed/rejected status: pending - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7977

[issue2864] etree: Add XPath documentation

2010-08-08 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: There's another issue about lack of documentation on this topic. See #6488. -- assignee: d...@python - resolution: - duplicate status: open - closed superseder: - ElementTree documentation refers to path with no explanation

[issue6488] ElementTree documentation refers to path with no explanation, and inconsistently

2010-08-08 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: See also patch attached to #2864 which proposes to add an XPath example to the documentation. -- nosy: +guettli, littlemog, mbone ___ Python tracker rep...@bugs.python.org http

[issue6231] ElementInclude may drop text

2010-08-08 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Thanks Neil. Pushed with r83864. -- resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org

[issue9546] buildbot: if a compile error occurs, the clean step is skipped

2010-08-09 Thread Florent Xicluna
New submission from Florent Xicluna florent.xicl...@gmail.com: When the buildbot fails to compile, the clean step is not run. http://www.python.org/dev/buildbot/builders/i386%20Ubuntu%203.x/builds/1838/ This is a problem for issue #9545 where the Modules/Setup.dist cannot be copied to Modules

[issue9545] Adding _collections to static build

2010-08-09 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: See report on issue #9546: the clean step should remove Modules/Setup, but it is skipped. -- dependencies: +buildbot: if a compile error occurs, the clean step is skipped nosy: +flox

[issue8685] set(range(100000)).difference(set()) is slow

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

[issue4726] doctest gets line numbers wrong due to quotes in comments

2010-08-09 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Out of date. -- nosy: +flox status: pending - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4726

[issue9546] buildbot: if a compile error occurs, the clean step is skipped

2010-08-09 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: I agree we should run the clean step as a finally step, even if compile error occurs. It is not required in case of svn exception, I guess. Btw, the exact command is make distclean (make clean target does not remove Modules/Setup

[issue9555] transient crashes on x86 XP-4 buildbot: test_file, test_file2k, test_bsddb3

2010-08-10 Thread Florent Xicluna
New submission from Florent Xicluna florent.xicl...@gmail.com: There's frequent crashes on the x86 XP-4 buildbot. On 2.6: 83915: # something crashed: test_file 83913: success 83743: # something crashed: test_file 83738: success 83721: success 83718: # something crashed: test_file 83704

[issue9555] transient crashes on x86 XP-4 buildbot: test_file, test_file2k, test_bsddb3

2010-08-10 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: IIUC code -1073741819 (0XC005) is an acces violation. Some other issues with same error code: #6869, #8849, ... -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org

[issue9555] transient crashes on x86 XP-4 buildbot: test_file, test_file2k, test_bsddb3

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- components: +Windows ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9555 ___ ___ Python

[issue7182] For non-debug builds, the cygwinccompiler.py should define NDEBUG

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- components: +Windows ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7182 ___ ___ Python

[issue1173134] improvement of the script adaptation for the win32 platform

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- assignee: - tarek components: +Windows nosy: +tarek ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1173134

[issue1626300] 'Installing Python Modules' does not work for Windows

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- assignee: - d...@python components: +Windows nosy: +d...@python ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1626300

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- components: +Windows ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9116 ___ ___ Python

[issue4032] distutils cannot recognize .dll.a as library on cygwin

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- components: +Windows ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4032 ___ ___ Python

[issue8171] bdist_wininst builds wrongly for --plat-name=win-amd64

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- components: +Windows ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8171 ___ ___ Python

[issue8170] Wrong Paths for distutils build --plat-name=win-amd64

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- components: +Windows ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8170 ___ ___ Python

[issue8548] Building on CygWin 1.7: PATH_MAX redefined

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- components: +Windows ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8548 ___ ___ Python

[issue5879] multiprocessing - example pool of http servers fails on windows socket has no attribute fromfd

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- components: +Windows ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5879 ___ ___ Python

[issue2233] Makefile.pre.in contains extra slash before $(DESTDIR) which can cause Cygwin build to fail

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- components: +Windows ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2233 ___ ___ Python

  1   2   3   4   5   6   7   8   9   10   >