[issue7700] "-3" flag does not work anymore

2010-01-14 Thread Florent Xicluna
New submission from Florent Xicluna : The -3 flag no longer works with Python 2.7. ~ $ ./python -3 -c 'print 1 <> 2, {}.has_key(3)' True False On python 2.6: ~ $ ./python -3 -c 'print 1 <> 2, {}.has_key(3)' :1: DeprecationWarning: <> not supported i

[issue7700] "-3" flag does not work anymore

2010-01-14 Thread Florent Xicluna
Changes by Florent Xicluna : -- components: +Interpreter Core type: -> behavior ___ Python tracker <http://bugs.python.org/issue7700> ___ ___ Python-bugs-lis

[issue7700] "-3" flag does not work anymore

2010-01-14 Thread Florent Xicluna
Florent Xicluna added the comment: The undocumented "-b" flag behaves correctly. I would suggest to implement it the same way. ~ $ ./python -b -c "bytearray('') == u''" -c:1: BytesWarning: Comparsion between bytearray and string (By the way, this fe

[issue7700] "-3" flag does not work anymore

2010-01-14 Thread Florent Xicluna
Florent Xicluna added the comment: A variant, which mimics BytesWarning implementation. -- Added file: http://bugs.python.org/file15872/issue7700_variant.diff ___ Python tracker <http://bugs.python.org/issue7

[issue7703] Replace buffer()-->memoryview() in Lib/ctypes/test/

2010-01-14 Thread Florent Xicluna
New submission from Florent Xicluna : In order to upgrate the tests for ctypes, following changes are required: - binascii.hexlify should accept memoryview() objects - the ctypes character buffer should accept assignment of memoryview() objects using their "raw" property Then we ca

[issue7703] Replace buffer()-->memoryview() in Lib/ctypes/test/

2010-01-14 Thread Florent Xicluna
Changes by Florent Xicluna : -- keywords: +patch Added file: http://bugs.python.org/file15874/issue7703_binascii_memoryview.diff ___ Python tracker <http://bugs.python.org/issue7

[issue7703] Replace buffer()-->memoryview() in Lib/ctypes/test/

2010-01-14 Thread Florent Xicluna
Changes by Florent Xicluna : Added file: http://bugs.python.org/file15875/issue7703_ctypes_memoryview.diff ___ Python tracker <http://bugs.python.org/issue7703> ___ ___

[issue7703] Replace buffer()-->memoryview() in Lib/ctypes/test/

2010-01-14 Thread Florent Xicluna
Florent Xicluna added the comment: Patches attached: - partial backport of Modules/binascii.c - partial backport of Modules/_ctypes/_ctypes.c (preserving 2.3 compat.) - update ctypes tests (buffer -> memoryview) -- assignee: -> theller components: +ctypes nosy: +theller

[issue7703] Replace buffer()-->memoryview() in Lib/ctypes/test/

2010-01-14 Thread Florent Xicluna
Florent Xicluna added the comment: Additional tests for binascii. -- Added file: http://bugs.python.org/file15877/issue7703_test_binascii.diff ___ Python tracker <http://bugs.python.org/issue7

[issue1559298] test_popen fails on Windows if installed to "Program Files"

2010-01-15 Thread Florent Xicluna
Florent Xicluna added the comment: It is on Python 2.7a2 >>> os.popen('"C:\\Python27\\python.exe" -c "import sys; print sys.argv" >>> 42').read() '' >>> os.popen('""C:\\Python27\\python.exe" -c "

[issue2775] Implement PEP 3108

2010-01-15 Thread Florent Xicluna
Florent Xicluna added the comment: Modules "hotshot" and "xmllib" give deprecation warnings. But they are not part of PEP 3108 or PEP 4. -- nosy: +flox ___ Python tracker <http://bu

[issue7691] test_bsddb3 files are not always removed when test fails

2010-01-15 Thread Florent Xicluna
Changes by Florent Xicluna : -- resolution: -> duplicate stage: test needed -> status: open -> closed superseder: -> Windows buildbot occasional DBFileExistsError failures in test_bsddb3 ___ Python tracker <http://bugs.pytho

[issue7269] Windows buildbot occasional DBFileExistsError failures in test_bsddb3

2010-01-15 Thread Florent Xicluna
Florent Xicluna added the comment: #7691 marked duplicate of this bug. I've set the current directory read-only to track this bug. There's a single TestCase which creates the file in the current directory instead of /tmp. All other bsddb tests use either "get_new_envir

[issue1559298] test_popen fails on Windows if installed to "Program Files"

2010-01-15 Thread Florent Xicluna
Changes by Florent Xicluna : -- keywords: +buildbot ___ Python tracker <http://bugs.python.org/issue1559298> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7668] test_httpservers fails with non-ascii path

2010-01-15 Thread Florent Xicluna
Changes by Florent Xicluna : -- keywords: +buildbot stage: -> needs patch ___ Python tracker <http://bugs.python.org/issue7668> ___ ___ Python-bugs-list mai

[issue7667] test_doctest fails with non-ascii path

2010-01-15 Thread Florent Xicluna
Changes by Florent Xicluna : -- keywords: +buildbot priority: -> normal stage: -> test needed ___ Python tracker <http://bugs.python.org/issue7667> ___ ___

[issue3426] os.path.abspath with unicode argument should call os.getcwdu

2010-01-15 Thread Florent Xicluna
Changes by Florent Xicluna : -- keywords: +buildbot ___ Python tracker <http://bugs.python.org/issue3426> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6961] test_distutils failure

2010-01-15 Thread Florent Xicluna
Florent Xicluna added the comment: There's still similar failures on 3.1 branch only. Some buildbots which have reported the error: AMD64 Ubuntu ia64 Ubuntu alpha Debian AMD64 Gentoo http://www.python.org/dev/buildbot/all/builders/AMD64%20Ubuntu%203.1/builds/194 http://www.pytho

[issue6961] test_distutils failure

2010-01-15 Thread Florent Xicluna
Florent Xicluna added the comment: whoops... I missed #7591 which is a report for the same issue. -- resolution: -> invalid status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue7591] test_distutils: test_get_platform fails on 3.1

2010-01-15 Thread Florent Xicluna
Florent Xicluna added the comment: Some buildbots which have reported the error: AMD64 Ubuntu ia64 Ubuntu alpha Debian AMD64 Gentoo -- nosy: +flox title: test_get_platform fails on 3.1 -> test_distutils: test_get_platform fails on

[issue7708] test_xmlrpc fails with non-ascii path

2010-01-15 Thread Florent Xicluna
New submission from Florent Xicluna : Another buildbot failure (repeated on AMD64 Ubuntu wide). test_xmlrpc Exception happened during processing of request from ('127.0.0.1', 59299) Traceback (most recent call last): File "/home/buildb

[issue7710] Inconsistent Exception for int() conversion

2010-01-15 Thread Florent Xicluna
New submission from Florent Xicluna : On Python 3: >>> int('\0') Traceback (most recent call last): File "", line 1, in UnicodeEncodeError: 'decimal' codec can't encode character '\x00' in position 0: invalid decimal Unicode string &g

[issue7710] Inconsistent Exception for int() conversion

2010-01-15 Thread Florent Xicluna
Florent Xicluna added the comment: The null byte gives UnicodeEncodeError for other conversions too. Python 3: int('\0'), float('\0'), complex('\0') Python 2: int(u'\0'), long(u'\0'), float(u'\0'), complex(u'0') Traceb

[issue4221] inconsistent exception from int is confusing

2010-01-15 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +flox versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.5 ___ Python tracker <http://bugs.python.org/issue4

[issue4221] inconsistent exception from int is confusing

2010-01-15 Thread Florent Xicluna
Florent Xicluna added the comment: Python 3 gives same confusing error: >>> int(b'\0', 999) Traceback (most recent call last): File "", line 1, in ValueError: invalid literal for int() with base 999: b'\x00' >>> int(b'x', 999

[issue7703] Replace buffer()-->memoryview() in Lib/ctypes/test/

2010-01-16 Thread Florent Xicluna
Florent Xicluna added the comment: Patch for the last "t#" format string in binascii module. And provide additional tests. PS: I removed this comment. IMHO, it is a wrong assertion: "# The hqx test is in test_binhex.py" -- Added file: http://bugs.

[issue7712] Add a context manager to change cwd in test.test_support

2010-01-16 Thread Florent Xicluna
Florent Xicluna added the comment: A patch which provides a context manager and a decorator. (with ideas from Ezio and Antoine) Sample usages: with temp_cwd() as cwd: assert cwd == os.getcwd() @writablecwd def test_zipfile(): # do something useful print os.path.abspath

[issue7703] Replace buffer()-->memoryview() in Lib/ctypes/test/

2010-01-16 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file15906/issue7703_binascii_a2b_hqx.diff ___ Python tracker <http://bugs.python.org/issue7703> ___ ___

[issue7703] Replace buffer()-->memoryview() in Lib/ctypes/test/

2010-01-16 Thread Florent Xicluna
Florent Xicluna added the comment: Changed. -- Added file: http://bugs.python.org/file15908/issue7703_binascii_a2b_hqx_v2.diff ___ Python tracker <http://bugs.python.org/issue7

[issue1285086] urllib.quote is too slow

2010-05-16 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file17291/issue1285086_fast_quote.diff ___ Python tracker <http://bugs.python.org/issue1285086> ___ ___

[issue1285086] urllib.quote is too slow

2010-05-16 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file17295/issue1285086_using_translate.diff ___ Python tracker <http://bugs.python.org/issue1285

[issue1285086] urllib.quote is too slow

2010-05-16 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file17298/issue1285086_using_rstrip.diff ___ Python tracker <http://bugs.python.org/issue1285

[issue1285086] urllib.quote is too slow

2010-05-16 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file17299/urllib_quote_speed_test.py ___ Python tracker <http://bugs.python.org/issue1285086> ___ ___

[issue1285086] urllib.quote is too slow

2010-05-16 Thread Florent Xicluna
Florent Xicluna 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): if no

[issue1285086] urllib.quote is too slow

2010-05-16 Thread Florent Xicluna
Changes by Florent Xicluna : Added file: http://bugs.python.org/file17366/issue1285086_using_rstrip_v2.diff ___ Python tracker <http://bugs.python.org/issue1285

[issue1285086] urllib.quote is too slow

2010-05-16 Thread Florent Xicluna
Florent Xicluna 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 <http://bugs.python.org/issue1285

[issue1285086] urllib.quote is too slow

2010-05-17 Thread Florent Xicluna
Florent Xicluna added the comment: Committed in r81265 for 2.7. -- ___ Python tracker <http://bugs.python.org/issue1285086> ___ ___ Python-bugs-list mailin

[issue8740] infinite recursion with setfilesystemencoding and pdb

2010-05-17 Thread Florent Xicluna
Florent Xicluna 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(

[issue1285086] urllib.quote is too slow

2010-05-17 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file17366/issue1285086_using_rstrip_v2.diff ___ Python tracker <http://bugs.python.org/issue1285

[issue1285086] urllib.quote is too slow

2010-05-17 Thread Florent Xicluna
Florent Xicluna 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 ___ Python trac

[issue8446] buildbot: DeprecationWarning not raised for icglue (test_py3kwarn.TestStdlibRemovals)

2010-05-17 Thread Florent Xicluna
Florent Xicluna added the comment: Maybe this is due to webbrowser dependency on "ic" module. Patch not tested. -- assignee: -> ronaldoussoren components: +Macintosh keywords: +patch nosy: +flox, ronaldoussoren stage: -> patch review type: -> behavior versions:

[issue8142] libffi update to 3.0.9

2010-05-19 Thread Florent Xicluna
Florent Xicluna added the comment: It seems fixed now. -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> pending ___ Python tracker <http://bugs.python.o

[issue8142] libffi update to 3.0.9

2010-05-24 Thread Florent Xicluna
Changes by Florent Xicluna : -- status: open -> closed ___ Python tracker <http://bugs.python.org/issue8142> ___ ___ Python-bugs-list mailing list Unsubscri

[issue8920] PYTHONSTARTUP should expand "~"

2010-06-06 Thread Florent Xicluna
Florent Xicluna 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 ve

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

2010-06-11 Thread Florent Xicluna
New submission from Florent Xicluna : 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 w

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

2010-06-11 Thread Florent Xicluna
Florent Xicluna added the comment: something like : raise CompressionError("zlib module is not available") -- ___ Python tracker <http://bugs.python.

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

2010-06-11 Thread Florent Xicluna
Changes by Florent Xicluna : -- components: +Library (Lib) -Extension Modules ___ Python tracker <http://bugs.python.org/issue8978> ___ ___ Python-bugs-list mailin

[issue9145] test_coercion fails in refleak runs

2010-07-04 Thread Florent Xicluna
Changes by Florent Xicluna : -- assignee: -> flox components: -Library (Lib) resolution: -> accepted stage: -> needs patch ___ Python tracker <http://bugs.python.o

[issue9145] test_coercion fails in refleak runs

2010-07-04 Thread Florent Xicluna
Florent Xicluna added the comment: Fixed with r82529 -- resolution: accepted -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.o

[issue6057] sqlite3 error classes should be documented

2010-07-09 Thread Florent Xicluna
Changes by Florent Xicluna : -- assignee: ghaering -> keywords: +easy nosy: +flox type: -> behavior versions: -Python 2.6, Python 3.0 ___ Python tracker <http://bugs.python.org/

[issue7825] test_threadsignals leaks references

2010-07-27 Thread Florent Xicluna
Florent Xicluna 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 <http://bugs.python.org/i

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

2010-07-27 Thread Florent Xicluna
Florent Xicluna added the comment: Fixed with r83182. -- assignee: -> flox resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed versions: -Python 3.1 ___ Python tracker <http://bugs.pytho

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

2010-07-27 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +flox ___ Python tracker <http://bugs.python.org/issue8966> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2010-07-27 Thread Florent Xicluna
Florent Xicluna 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 -&g

[issue7825] test_threadsignals leaks references

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

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

2010-07-27 Thread Florent Xicluna
Florent Xicluna 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 a strong reason to c

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

2010-07-28 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +flox ___ Python tracker <http://bugs.python.org/issue5006> ___ ___ Python-bugs-list mailing list Unsubscribe:

[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 t

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

[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 <http://bugs.python.org/issue9433> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

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

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

[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 -&g

[issue8920] PYTHONSTARTUP should expand "~"

2010-07-31 Thread Florent Xicluna
Changes by Florent Xicluna : -- status: open -> closed ___ Python tracker <http://bugs.python.org/issue8920> ___ ___ Python-bugs-list mailing list Unsubscri

[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

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

[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 trac

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

[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&qu

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

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

2010-08-01 Thread Florent Xicluna
Florent Xicluna added the comment: Unable to reproduce. -- nosy: +haypo resolution: -> works for me status: pending -> closed ___ Python tracker <http://bugs.python.org/

[issue8994] pydoc does not support non-ascii docstrings

2010-08-01 Thread Florent Xicluna
Florent Xicluna 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 <http:

[issue8994] pydoc does not support non-ascii docstrings

2010-08-01 Thread Florent Xicluna
Florent Xicluna 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 <htt

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

2010-08-03 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +effbot, flox ___ Python tracker <http://bugs.python.org/issue9458> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7668] test_httpservers fails with non-ascii path

2010-08-03 Thread Florent Xicluna
Florent Xicluna 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

[issue8757] Race condition when checking for set in set

2010-08-04 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +flox ___ Python tracker <http://bugs.python.org/issue8757> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2010-08-04 Thread Florent Xicluna
Florent Xicluna 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 <http://bugs.python.org/iss

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

2010-08-04 Thread Florent Xicluna
Changes by Florent Xicluna : -- keywords: +easy ___ Python tracker <http://bugs.python.org/issue7186> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2010-08-04 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +flox ___ Python tracker <http://bugs.python.org/issue4493> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2010-08-04 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +flox ___ Python tracker <http://bugs.python.org/issue7110> ___ ___ Python-bugs-list mailing list Unsubscribe:

[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 : -- components: +Extension Modules, XML -Library (Lib) nosy: +effbot, flox type: -> crash ___ Python tracker <http://bugs.python.org/iss

[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 : -- components: +Extension Modules, XML -Library (Lib) nosy: +effbot, flox stage: -> patch review type: -> crash ___ Python tracker <http://bugs.python.org/

[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 : -- stage: -> patch review ___ Python tracker <http://bugs.python.org/issue9403> ___ ___ Python-bugs-list mailing list Unsubscri

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

2010-08-04 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +flox ___ Python tracker <http://bugs.python.org/issue9396> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9273] 2to3 to simultaneously do code AND doctests

2010-08-04 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +benjamin.peterson title: 2to to simultaneously do code AND doctests -> 2to3 to simultaneously do code AND doctests type: -> feature request ___ Python tracker <http://bugs.python.org/

[issue9364] some problems with the documentation of pydoc

2010-08-04 Thread Florent Xicluna
Changes by Florent Xicluna : -- keywords: +easy nosy: +flox stage: -> needs patch ___ Python tracker <http://bugs.python.org/issue9364> ___ ___ Python-bugs-lis

[issue9522] xml.etree.ElementTree forgets the encoding

2010-08-06 Thread Florent Xicluna
Florent Xicluna 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.

[issue9522] xml.etree.ElementTree forgets the encoding

2010-08-06 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +scoder ___ Python tracker <http://bugs.python.org/issue9522> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2010-08-08 Thread Florent Xicluna
Florent Xicluna 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 tr

[issue7564] test_ioctl may fail when run in background

2010-08-08 Thread Florent Xicluna
Florent Xicluna added the comment: Fixed with revision 83839. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.o

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2010-08-08 Thread Florent Xicluna
Florent Xicluna 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 ___ Python t

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

2010-08-08 Thread Florent Xicluna
Florent Xicluna 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 : Removed file: http://bugs.python.org/file16571/unnamed ___ Python tracker <http://bugs.python.org/issue7214> ___ ___ Python-bugs-list mailin

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

2010-08-08 Thread Florent Xicluna
Florent Xicluna 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 to keep t

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

2010-08-08 Thread Florent Xicluna
Florent Xicluna 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 ___ Pytho

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

2010-08-08 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: -flox ___ Python tracker <http://bugs.python.org/issue8110> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8277] ElementTree won't parse comments

2010-08-08 Thread Florent Xicluna
Florent Xicluna 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 added the comment: Fixed with r82149. -- dependencies: +buildbot: DeprecationWarning not raised for icglue (test_py3kwarn.TestStdlibRemovals) status: open -> closed ___ Python tracker <http://bugs.python.org/iss

<    8   9   10   11   12   13   14   >