[issue13674] crash in datetime.strftime

2011-12-29 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +belopolsky, flox, haypo versions: +Python 3.3 ___ Python tracker <http://bugs.python.org/issue13674> ___ ___ Python-bug

[issue13716] distutils doc contains lots of XXX

2012-01-05 Thread Florent Xicluna
New submission from Florent Xicluna : http://docs.python.org/distutils/apiref.html?highlight=XXX#module-distutils.ccompiler We find lots of "XXX" and "XXX see also." which give no information. -- assignee: docs@python components: Documentation messages: 150683 nos

[issue13716] distutils doc contains lots of XXX

2012-01-05 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +eric.araujo, tarek versions: +Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/issue13716> ___ ___ Pytho

[issue13716] distutils doc contains lots of XXX

2012-01-07 Thread Florent Xicluna
Florent Xicluna added the comment: The proposed solution is ok. It sounds like unfinished documentation when you hit an "XXX". For the "/dev/" documentation, it's OK, but for the released version, we should avoid it. --

[issue9572] IOError in test_multiprocessing

2010-08-11 Thread Florent Xicluna
New submission from Florent Xicluna : This error occurred on "x86 Ubuntu 3.x" buildbot. This is the 1st test on this run. http://www.python.org/dev/buildbot/all/builders/x86%20Ubuntu%203.x/builds/1699/steps/test/logs/stdio ./python -Wd -E -bb ./Lib/test/regrtest.py -uall -rwW -l

[issue9572] IOError in test_multiprocessing

2010-08-11 Thread Florent Xicluna
Florent Xicluna added the comment: I succeeded to reproduce one time on Debian Lenny (64 bits). ~ $ make pycremoval find . -name '*.py[co]' -exec rm -f {} ';' find . -name '__pycache__' -exec rmdir {} '+' ~ $ ./python -Wd -E -bb ./Lib/test/regrtest.py -

[issue9578] int() raises UnicodeDecodeError when called on malformed string

2010-08-12 Thread Florent Xicluna
Florent Xicluna added the comment: a duplicate of #7710 -- nosy: +flox resolution: -> duplicate status: open -> closed superseder: -> Inconsistent Exception for int() conversion ___ Python tracker <http://bugs.python.o

[issue7710] Inconsistent Exception for int() conversion

2010-08-12 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +belopolsky stage: -> unit test needed type: -> behavior versions: +Python 2.7, Python 3.1 ___ Python tracker <http://bugs.python.org/

[issue9589] test_heapq: AttributeError: 'int' object has no attribute 'pop'

2010-08-13 Thread Florent Xicluna
New submission from Florent Xicluna : Various buildbots show a failure on test_heapq. * "x86 FreeBSD 3.x" failed on revision r83882 (r83869 was OK) http://www.python.org/dev/buildbot/all/builders/x86%20FreeBSD%203.x/builds/492 and next runs were OK, too * "PPC (Leopard|

[issue9589] test_heapq: AttributeError: 'int' object has no attribute 'pop'

2010-08-13 Thread Florent Xicluna
Florent Xicluna added the comment: For some reason, sys.modules['heapq'] contains the Python implementation instead of the C implementation. Tested with r83981 on python 3: Python 3.2a1+ (py3k:83981M, Aug 13 2010, 19:02:31) [GCC 4.3.4] on linux2 Type "help", "

[issue9590] __init__ TypeError reverses expected vs received args

2010-08-13 Thread Florent Xicluna
Florent Xicluna added the comment: Definitely it does not look like a bug. >>> import unittest >>> help(unittest.TestCase) ... | If it is necessary to override the __init__ method, the base class | __init__ method must always be called. It is important that subclas

[issue8428] buildbot: test_multiprocessing timeout (test_notify_all? test_pool_worker_lifetime?)

2010-08-14 Thread Florent Xicluna
Florent Xicluna added the comment: Still failing on 3.2 and 2.7 - x86 FreeBSD 7.2 3.x r83981, r83971 ... http://www.python.org/dev/buildbot/all/builders/x86%20FreeBSD%207.2%203.x/builds/823 - x86 FreeBSD 7.2 2.7 r83985, r83806 ... http://www.python.org/dev/buildbot/all/builders

[issue5930] Transient error in multiprocessing (test_number_of_objects)

2010-08-14 Thread Florent Xicluna
Florent Xicluna added the comment: It happens on some 3.1 buildbots: - x86 FreeBSD 7.2 3.1 r83984, r83968, ... http://www.python.org/dev/buildbot/all/builders/x86%20FreeBSD%207.2%203.1/builds/595 - ARMv4 Debian 3.1 r83831, r83805, r83772, ... http://www.python.org/dev/buildbot/all

[issue5930] Transient error in multiprocessing (test_number_of_objects)

2010-08-14 Thread Florent Xicluna
Changes by Florent Xicluna : -- versions: +Python 3.2 ___ Python tracker <http://bugs.python.org/issue5930> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9145] test_coercion fails in refleak runs

2010-08-14 Thread Florent Xicluna
Florent Xicluna added the comment: This one is a (small) regression from 2.6.5. Patch attached -- keywords: +patch nosy: +barry priority: normal -> release blocker status: closed -> open versions: +Python 2.6 -Python 2.7 Added file: http://bugs.python.org/file18535/issue9145_f

[issue9425] Rewrite import machinery to work with unicode paths

2010-08-15 Thread Florent Xicluna
Florent Xicluna added the comment: r83972 breaks OS X buildbots: support.TESTFN_UNENCODABLE is not defined if sys.platform == 'darwin'. File "/Users/db3l/buildarea/3.x.bolen-tiger/build/Lib/test/test_imp.py", line 309, in class NullImporterTests(unittest.TestCase):

[issue9425] Rewrite import machinery to work with unicode paths

2010-08-15 Thread Florent Xicluna
Florent Xicluna added the comment: It breaks test_unicode_file on OS X, too: File "/Users/db3l/buildarea/3.x.bolen-tiger/build/Lib/test/test_unicode_file.py", line 8, in from test.support import (run_unittest, rmtree, ImportError: cannot import name TESTFN_U

[issue8857] socket.getaddrinfo needs tests

2010-08-15 Thread Florent Xicluna
Florent Xicluna added the comment: test_socket fails on OS X: == ERROR: testGetaddrinfo (test.test_socket.GeneralModuleTests) -- Traceback (most recent call

[issue8428] buildbot: test_multiprocessing timeout (test_notify_all? test_pool_worker_lifetime?)

2010-08-15 Thread Florent Xicluna
Florent Xicluna added the comment: Seen on Windows 7 3.1: test test_multiprocessing failed -- Traceback (most recent call last): File "D:\cygwin\home\db3l\buildarea\3.1.bolen-windows7\build\lib\test\test_multiprocessing.py", line 746, in test_notify_all self.assertReturnsIfI

[issue9592] Limitations in objects returned by multiprocessing Pool

2010-08-15 Thread Florent Xicluna
Florent Xicluna added the comment: Case 3 seen on buildbot Windows 7 3.1: http://www.python.org/dev/buildbot/all/builders/x86%20Windows7%203.1/builds/676 test_array (test.test_multiprocessing.WithProcessesTestArray) ... Traceback (most recent call last): File "", line 1, in

[issue9592] Limitations in objects returned by multiprocessing Pool

2010-08-15 Thread Florent Xicluna
Florent Xicluna added the comment: A different issue on XP-5 buildbot (Python 3.1): test test_multiprocessing failed -- Traceback (most recent call last): File "C:\buildslave\3.1.moore-windows\build\lib\test\test_multiprocessing.py", line 1234, in test_rapid_restart manage

[issue8857] socket.getaddrinfo needs tests

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

[issue9592] Limitations in objects returned by multiprocessing Pool

2010-08-15 Thread Florent Xicluna
Florent Xicluna added the comment: It is an update with 2 similar failures on Windows XP and 7 buildbots (on normal runs). FWIW, I ran the script from Freek on my laptop (Debian 64bits) and I noticed similar failures on 3.1 and 3.2 (you need to uncomment 1 of the 3 commented lines of the

[issue8428] buildbot: test_multiprocessing timeout (test_notify_all? test_pool_worker_lifetime?)

2010-08-15 Thread Florent Xicluna
Florent Xicluna added the comment: It is intermittent on most buildbots. The exception is "x86 FreeBSD 7.2 3.x" where it occurs on each run. http://www.python.org/dev/buildbot/all/builders/x86%20FreeBSD%207.2%203.x/ -- ___ Python trac

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

2010-08-15 Thread Florent Xicluna
Changes by Florent Xicluna : -- components: +Macintosh keywords: +buildbot ___ Python tracker <http://bugs.python.org/issue8845> ___ ___ Python-bugs-list mailin

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

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

[issue9610] buildbot: uncaptured python exception (smtpd), but no failure in regrtest

2010-08-15 Thread Florent Xicluna
New submission from Florent Xicluna : It occurs on PPC Leopard 3.x buildbot. (...) [184/346] test_ssl error: uncaptured python exception, closing channel (:pop from empty list [/Users/buildbot/buildarea/3.x.parc-leopard-1/build/Lib/asyncore.py|read|79] [/Users/buildbot/buildarea/3.x.parc

[issue8449] buildbot: test_dbm and test_dbm_ndbm failures on ia64 Ubuntu 3.1

2010-08-15 Thread Florent Xicluna
Florent Xicluna added the comment: No update on this issue, and there's no more ia64 buildbot. There's very little chance to fix it. -- components: +Tests nosy: +flox resolution: -> out of date status: open -> languishing title: Now: buildbot: test_dbm and test_dbm_

[issue5154] OSX broken poll testing doesn't work

2010-08-15 Thread Florent Xicluna
Florent Xicluna added the comment: Same issue, probably, on buildbot "PPC Tiger" == ERROR: test_main (test.test_signal.InterProcessSignalTests) --

[issue7902] relative import broken

2010-08-16 Thread Florent Xicluna
Florent Xicluna added the comment: Btw, the comment and failure message in r81380/r81381 look wrong. -# If absolute import syntax is used, then do not try to perform -# a relative import in the face of failure. +# If explicit relative import syntax is used, then do not try

[issue9145] test_coercion fails in refleak runs

2010-08-16 Thread Florent Xicluna
Florent Xicluna added the comment: Fixed in 2.6.6 with release manager approval on r84093. -- status: open -> closed ___ Python tracker <http://bugs.python.org/iss

[issue7902] relative import broken

2010-08-16 Thread Florent Xicluna
Florent Xicluna added the comment: Comment changed in r84097, 3.2 branch, with minor fixes. -- ___ Python tracker <http://bugs.python.org/issue7902> ___ ___ Pytho

[issue7902] relative import broken

2010-08-16 Thread Florent Xicluna
Florent Xicluna added the comment: Merged in 3.1 with r84115. -- ___ Python tracker <http://bugs.python.org/issue7902> ___ ___ Python-bugs-list mailing list Unsub

[issue9147] dis.show_code() variant that accepts source strings (and returns rather than prints)

2010-08-17 Thread Florent Xicluna
Florent Xicluna added the comment: The buildbot XP-4 3.x fails on test_dis. http://www.python.org/dev/buildbot/all/builders/x86%20XP-4%203.x/builds/2770 test_code_info (test.test_dis.CodeInfoTests) ... FAIL test_show_code (test.test_dis.CodeInfoTests) ... FAIL

[issue9636] {'key': 'value'}[b'key'] raises a BytesWarning

2010-08-19 Thread Florent Xicluna
Florent Xicluna added the comment: Various annoyances: >>> some_set = {'oOO', b'oOO'} BytesWarning: Comparison between bytes and string >>> 'a' in {b'', ''} BytesWarning: Comparison between bytes and string >>

[issue9636] {'key': 'value'}[b'key'] raises a BytesWarning

2010-08-19 Thread Florent Xicluna
Changes by Florent Xicluna : -- type: -> behavior ___ Python tracker <http://bugs.python.org/issue9636> ___ ___ Python-bugs-list mailing list Unsubscri

[issue9636] BytesWarning annoyances {'key': 'value'}.get(b'key')

2010-08-19 Thread Florent Xicluna
Changes by Florent Xicluna : -- title: {'key': 'value'} -> BytesWarning annoyances {'key': 'value'}.get(b'key')

[issue9655] urllib2 fails to retrieve a url which is handled correctly by urllib

2010-08-21 Thread Florent Xicluna
Florent Xicluna added the comment: Confirmed with telnet sessions: == Simulate "urllib2" == $ telnet www.mfsa.com.mt 80 GET /insguide/english/glossarysearch.jsp?letter=all HTTP/1.1 Accept-Encoding: identity Host: www.mfsa.com.mt Connection: close User-Agent: Python-urllib/2.7 HTTP/

[issue8589] test_warnings.CEnvironmentVariableTests.test_nonascii fails under an ascii terminal

2010-08-22 Thread Florent Xicluna
Florent Xicluna added the comment: A similar issue occurs on "x86 debian parallel" buildbot: == FAIL: test_nonascii (test.test_warnings.CEnvironmentVar

[issue8589] test_warnings.CEnvironmentVariableTests.test_nonascii fails under an ascii terminal

2010-08-22 Thread Florent Xicluna
Florent Xicluna added the comment: There's a failure on the same buildbot, "x86 debian parallel", with test test_subprocess (test_undecodable_env). This test was introduced with issue #8391. The test_subprocess and test_warnings failures are specific t

[issue8589] test_warnings.CEnvironmentVariableTests.test_nonascii fails under an ascii terminal

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

[issue8622] Add PYTHONFSENCODING environment variable

2010-08-22 Thread Florent Xicluna
Florent Xicluna added the comment: This is still an issue on some buildbots: - since r84224 on OS X (PPC Leopard, x86 Tiger) - since r84182 on sparc solaris10 gcc, x86 FreeBSD, x86 FreeBSD 7.2 The issue was fixed in r84201, r84202, r84203 for OS X buildbots only, but since r84224 it is

[issue1397] mysteriously failing test_bsddb3 threading test in other threads

2010-08-22 Thread Florent Xicluna
Florent Xicluna added the comment: This issue is no longer reported since pybsddb 4.8.4 integration. Issue #8156, revision 79285. -- nosy: +flox resolution: -> out of date status: open -> pending ___ Python tracker <http://bugs.p

[issue6462] bsddb3 intermittent test failures

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

[issue1027206] unicode DNS names in socket, urllib, urlopen

2010-08-23 Thread Florent Xicluna
Florent Xicluna added the comment: Two builders are sad: * x86 gentoo * sparc solaris10 gcc == ERROR: test_idna (test.test_socket.GeneralModuleTests

[issue8432] buildbot: test_send_signal of test_subprocess failure

2010-08-24 Thread Florent Xicluna
Florent Xicluna added the comment: Also occurs on Python 2.7, with "x86 FreeBSD 7.2" buildbot. (I found it on many builds since revision 83725 at least. Older builds are not available) Seen on "x86 FreeBSD" buildbot, too. test test_subprocess failed -- Traceback (m

[issue9675] segfault: PyDict_SetItem: Assertion `value' failed.

2010-08-24 Thread Florent Xicluna
New submission from Florent Xicluna : Crash on Python 2.7 branch. $ ./python -We -c 'import anydbm' python: Objects/dictobject.c:759: PyDict_SetItem: Assertion `value' failed. Abandon It occurs with all optional modules compiled. -- messages: 114823 nosy: flox p

[issue9675] segfault: PyDict_SetItem: Assertion `value' failed.

2010-08-24 Thread Florent Xicluna
Florent Xicluna added the comment: Actually, the issue seems to be in bsddb. $ ./python -We -c 'import bsddb' python: Objects/dictobject.c:759: PyDict_SetItem: Assertion `value' failed. Abandon -- ___ Python tracker <http

[issue9675] segfault: PyDict_SetItem: Assertion `value' failed.

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

[issue9675] segfault: PyDict_SetItem: Assertion `value' failed.

2010-08-24 Thread Florent Xicluna
Florent Xicluna added the comment: It is probably related to the CObject PendingDeprecationWarning. For the record, bsddb does not use the new Capsule API in Python 2.7. ref: http://bugs.python.org/issue7992#msg104140 -- ___ Python tracker <h

[issue9675] segfault: PyDict_SetItem: Assertion `value' failed.

2010-08-24 Thread Florent Xicluna
Florent Xicluna added the comment: The crash is triggered because PyDict_SetItemString(d, "api", py_api) is called with py_api=NULL when PyCObject_FromVoidPtr returns an error. A possible workaround is to create a copy of PyCObject_FromVoidPtr (e.g. _PyCObject_FromVoidPtr) which

[issue8781] 32-bit wchar_t doesn't need to be unsigned to be usable (I think)

2010-08-25 Thread Florent Xicluna
Florent Xicluna added the comment: Hi Daniel, there's a test failure which is related with r84307 on windows buildbot. == FAIL: test_cw_strings (ctypes.test.test_parameters.SimpleTypesTes

[issue9572] IOError or OSError in test_multiprocessing

2010-08-25 Thread Florent Xicluna
Florent Xicluna added the comment: This one looks very similar (r84315 on i386 Ubuntu 3.x buildbot): ./python -Wd -E -bb ./Lib/test/regrtest.py -uall -rwW -l == CPython 3.2a1+ (py3k:84315, Aug 25 2010, 17:07:54) [GCC 4.6.0 20100814 (experimental) [trunk revision 163239]] == Linux-2.6.32-24

[issue9572] IOError or OSError in test_multiprocessing

2010-08-26 Thread Florent Xicluna
Florent Xicluna added the comment: Łukasz, _closing is not necessary on FileIO instances. The class already declares an __exit__ method which takes care of closing file. >>> import io >>> f = io.FileIO('/tmp/test_closing', 'wb') >>> f.closed F

[issue9572] IOError or OSError in test_multiprocessing

2010-08-26 Thread Florent Xicluna
Florent Xicluna added the comment: Patch. -- keywords: +patch Added file: http://bugs.python.org/file18649/issue9572_oserror.diff ___ Python tracker <http://bugs.python.org/issue9

[issue1610654] cgi.py multipart/form-data

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

[issue1573931] WSGI, cgi.FieldStorage incompatibility

2010-08-26 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +flox versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker <http://bugs.python.org/issue1573

[issue4953] cgi module cannot handle POST with multipart/form-data in 3.0

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

[issue6234] cgi.FieldStorage is broken when given POST data

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

[issue8846] cgi.py bug report + fix: tailing carriage return and newline characters in multipart cgi input broken

2010-08-26 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +flox versions: +Python 3.2 ___ Python tracker <http://bugs.python.org/issue8846> ___ ___ Python-bugs-list mailing list Unsub

[issue3609] does parse_header really belong in CGI module?

2010-08-26 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +flox stage: -> patch review versions: +Python 3.2 -Python 3.0 ___ Python tracker <http://bugs.python.org/iss

[issue9710] 2to3 could remove "-*- coding: utf-8 -*-"

2010-08-29 Thread Florent Xicluna
New submission from Florent Xicluna : According to PEP8, "Files using ASCII (or UTF-8, for Python 3.0) should not have a coding cookie." -- components: 2to3 (2.x to 3.0 conversion tool) messages: 115191 nosy: flox priority: normal severity: normal status: open title: 2to3 co

[issue9712] tokenize yield an ERRORTOKEN if the identifier starts with a non-ascii char

2010-08-30 Thread Florent Xicluna
New submission from Florent Xicluna : from io import BytesIO from tokenize import tokenize, tok_name sample = 'éléphants = "un éléphant, deux éléphants, ..."\nprint(éléphants)\n' sampleb = sample.encode('utf-8') exec(sample) # output: un éléphant, deux éléphants,

[issue9756] Crash with custom __getattribute__

2010-09-03 Thread Florent Xicluna
New submission from Florent Xicluna : I found this crash while playing with proxies (thanks haypo). http://code.activestate.com/recipes/496741-object-proxying/ class MyClass(object): def __init__(self): self.pwn = None def __getattribute__(self, name): print('My

[issue9754] assertWarns and assertWarnsRegexp

2010-09-03 Thread Florent Xicluna
Florent Xicluna added the comment: > unittest should provide assertWarns and assertWarnsRegexp +1 (the internal helpers in test.support could be refactored) > The __warningregistry__ stuff looks horrible. +1 (and it does not behave exactly the same in all Python versions) -

[issue9754] assertWarns and assertWarnsRegexp

2010-09-03 Thread Florent Xicluna
Florent Xicluna added the comment: Patch looks good. However tests do not pass with -Werror (while test_warnings and others pass). Is there a way to catch multiple warnings on a single logical line? (With assertRaises we don't have such use case) -- stage: needs patch -&g

[issue9710] 2to3 could remove "-*- coding: utf-8 -*-"

2010-09-03 Thread Florent Xicluna
Florent Xicluna added the comment: PEP8 fixed with r84354 -- ___ Python tracker <http://bugs.python.org/issue9710> ___ ___ Python-bugs-list mailing list Unsub

[issue9708] cElementTree iterparse does not support "parser" argument

2010-09-03 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +effbot stage: -> unit test needed type: -> behavior versions: +Python 3.2 ___ Python tracker <http://bugs.python.org/

[issue8273] move generally useful test_support functions into the unittest package

2010-09-03 Thread Florent Xicluna
Florent Xicluna added the comment: Issue #9754 proposes to implement assertWarns / assertWarnsRegexp -- dependencies: +assertWarns and assertWarnsRegexp ___ Python tracker <http://bugs.python.org/issue8

[issue8273] move generally useful test.support functions into the unittest package

2010-09-03 Thread Florent Xicluna
Changes by Florent Xicluna : -- title: move generally useful test_support functions into the unittest package -> move generally useful test.support functions into the unittest package ___ Python tracker <http://bugs.python.org/iss

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

2010-09-03 Thread Florent Xicluna
Florent Xicluna added the comment: I propose to close this, since 2.7 is released and the situation is better in Python 3. -- resolution: -> wont fix status: open -> pending ___ Python tracker <http://bugs.python.org/

[issue9771] add an optional "default" argument to tokenize.detect_encoding

2010-09-04 Thread Florent Xicluna
New submission from Florent Xicluna : The function tokenize.detect_encoding() detects the encoding either in the coding cookie or in the BOM. If no encoding is found, it returns 'utf-8': When result is 'utf-8', there's no (easy) way to know if the encoding was really

[issue9772] test_pep277 failure on AMD64 debian parallel buildbot

2010-09-04 Thread Florent Xicluna
New submission from Florent Xicluna : This failure occurs on AMD64 debian parallel buildbot. It is not the same failure as OS X Tiger buildbot (issue 8423). == FAIL: test_listdir (test.test_pep277.UnicodeFileTests

[issue9773] test_tarfile fails because of inaccurate mtime on AMD64 debian parallel buildbot

2010-09-04 Thread Florent Xicluna
New submission from Florent Xicluna : Occurs repeatedly on AMD64 debian parallel. == FAIL: test_extractall (test.test_tarfile.MiscReadTest) -- Traceback (most

[issue9774] test_smtpnet fails with "[110] Connection timed out" on AMD64 debian parallel buildbot

2010-09-04 Thread Florent Xicluna
New submission from Florent Xicluna : Repeated failure on AMD64 debian parallel buildbot. [329/346] test_smtpnet test test_smtpnet failed -- Traceback (most recent call last): File "/var/autofs/net/homedir/home/martin.vonloewis/buildarea/3.x.loewis-parallel2/build/Lib/test/test_smtpn

[issue9598] untabify.py fails on files that contain non-ascii characters

2010-09-04 Thread Florent Xicluna
Florent Xicluna added the comment: Other C files converted from latin-1 to utf-8 with r84485. -- components: +Unicode nosy: +flox ___ Python tracker <http://bugs.python.org/issue9

[issue7962] Demo and Tools need to be tested and pruned

2010-09-04 Thread Florent Xicluna
Changes by Florent Xicluna : -- dependencies: +add an optional "default" argument to tokenize.detect_encoding ___ Python tracker <http://bugs.python.

[issue1397] mysteriously failing test_bsddb3 threading test in other threads

2010-09-04 Thread Florent Xicluna
Changes by Florent Xicluna : -- status: pending -> closed ___ Python tracker <http://bugs.python.org/issue1397> ___ ___ Python-bugs-list mailing list Unsubscri

[issue9780] fill character cannot be '{'

2010-09-05 Thread Florent Xicluna
New submission from Florent Xicluna : According to the documentation: "The fill character can be any character other than ‘}’ (which signifies the end of the field)." http://docs.python.org/dev/library/string.html#format-specification-mini-language However the format() builtin ac

[issue9780] fill character cannot be '{'

2010-09-05 Thread Florent Xicluna
Florent Xicluna added the comment: The PEP 3101 does not prohibit any character for the 'fill' argument. Another example which just works: >>> '{:{fill}^6}'.format(42, fill='{') '{{42{{' >>> '{:{fill}^6}'.format(42, fill=&

[issue7300] Unicode arguments in str.format()

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

[issue8556] Confusing string formatting examples

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

[issue8913] Document that datetime.__format__ is datetime.strftime

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

[issue9195] Link in docs from "String Formatting Operations" to "Template Strings"

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

[issue9418] Move _formatter_* methods from string type into _string module

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

[issue6081] str.format_from_mapping()

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

[issue7951] Should str.format allow negative indexes when used for __getitem__ access?

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

[issue1467929] %-formatting and dicts

2010-09-09 Thread Florent Xicluna
Florent Xicluna added the comment: Too late for 2.x and 3.1. -- nosy: +flox versions: -Python 2.7, Python 3.1 ___ Python tracker <http://bugs.python.org/issue1467

[issue9832] test_unicodedata fails on MacOSX 10.6

2010-09-11 Thread Florent Xicluna
Florent Xicluna added the comment: Did you run `make distclean` before? -- assignee: -> ronaldoussoren components: +Macintosh nosy: +flox, ronaldoussoren stage: -> unit test needed ___ Python tracker <http://bugs.python.org/

[issue9832] test_unicodedata fails on MacOSX 10.6

2010-09-11 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +michael.foord, ned.deily ___ Python tracker <http://bugs.python.org/issue9832> ___ ___ Python-bugs-list mailing list Unsub

[issue9833] test_ttk_guionly fails on MacOSX 10.6

2010-09-11 Thread Florent Xicluna
Florent Xicluna added the comment: This is a duplicate of #8445 -- nosy: +flox resolution: -> duplicate status: open -> closed superseder: -> buildbot: test_ttk_guionly failures (test_traversal, test_tab_identifiers, test_identify, test_heading

[issue8445] buildbot: test_ttk_guionly failures (test_traversal, test_tab_identifiers, test_identify, test_heading_callback)

2010-09-11 Thread Florent Xicluna
Changes by Florent Xicluna : -- assignee: -> ronaldoussoren components: +Macintosh nosy: +cartman, flox, ronaldoussoren stage: -> needs patch type: -> behavior ___ Python tracker <http://bugs.python.o

[issue9831] test_distutils fails on MacOSX 10.6

2010-09-11 Thread Florent Xicluna
Changes by Florent Xicluna : -- assignee: -> tarek components: +Distutils, Macintosh nosy: +eric.araujo, michael.foord, ned.deily, tarek ___ Python tracker <http://bugs.python.org/iss

[issue8448] buildbot: test_subprocess failure (test_no_leaking, Broken pipe)

2010-09-11 Thread Florent Xicluna
Florent Xicluna added the comment: It still happens on the same builder, occasionally. http://www.python.org/dev/buildbot/builders/sparc%20Debian%203.1/builds/24 -- components: +Tests nosy: +flox type: -> behavior ___ Python tracker &l

[issue8589] test_warnings.CEnvironmentVariableTests.test_nonascii fails under an ascii terminal

2010-09-11 Thread Florent Xicluna
Florent Xicluna added the comment: Still happens with r84709 on PPC Tiger 3.x == FAIL: test_nonascii (test.test_warnings.CEnvironmentVariableTests

[issue9832] test_unicodedata fails on MacOSX 10.6

2010-09-11 Thread Florent Xicluna
Florent Xicluna added the comment: According to issue #9210, "--with-wctype-functions" is pending removal. Could you retry without this switch? -- nosy: +amaury.forgeotdarc, lemburg superseder: -> remove --with-wctype-functions con

[issue7994] object.__format__ should reject format strings

2010-09-12 Thread Florent Xicluna
Florent Xicluna added the comment: This should be merged before 3.2 beta. -- nosy: +flox resolution: -> accepted ___ Python tracker <http://bugs.python.org/iss

[issue7994] object.__format__ should reject format strings

2010-09-13 Thread Florent Xicluna
Florent Xicluna added the comment: now the PendingDeprecationWarnings are checked in the test suite, with r84772 (for 2.7). -- ___ Python tracker <http://bugs.python.org/issue7

[issue9323] trace.py bug with the main file being traced

2010-09-13 Thread Florent Xicluna
Florent Xicluna added the comment: I've made the wrong assumption that test.regrtest.__file__ is always absolute. Here is a patch which should fix it. -- nosy: +ezio.melotti Added file: http://bugs.python.org/file18870/issue9323_regrtest

[issue9323] trace.py bug with the main file being traced

2010-09-13 Thread Florent Xicluna
Florent Xicluna added the comment: regrtest fixed with r84776 (3.x) and r84779 (2.7) -- ___ Python tracker <http://bugs.python.org/issue9323> ___ ___ Python-bug

<    1   2   3   4   5   6   7   8   9   10   >