[issue808164] socket.close() doesn't play well with __del__

2009-05-16 Thread test...@smail.ee
test...@smail.ee added the comment: The same is happened when you are trying to close pycurl handler at __del__ method. -- nosy: +test157 versions: +Python 2.5 -Python 2.6, Python 2.7, Python 3.0, Python 3.1 ___ Python tracker

[issue4856] Remove checks for win NT

2009-05-16 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto : -- nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue1738179] help() can't find right source file

2009-05-16 Thread Senthil
Changes by Senthil : -- stage: test needed -> committed/rejected ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue3527] Py_WIN_WIDE_FILENAMES removal

2009-05-16 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Thanks, committed in r72698(trunk) and r72701(py3k). -- resolution: accepted -> fixed status: open -> closed ___ Python tracker ___ _

[issue1738179] help() can't find right source file

2009-05-16 Thread Senthil
Senthil added the comment: This is an invalid bug. python -m 'compileall' -d pdir actdir all the files in the actdir will be compiled and it will appear as though the files are getting compiled from pdir. That is the intended purpose of the -d switch, as I can see from the sourcecode and from

[issue6042] Document and slightly simplify lnotab tracing

2009-05-16 Thread Collin Winter
Changes by Collin Winter : -- nosy: +collinwinter ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue6037] MutableSequence.__iadd__ should return self

2009-05-16 Thread Raymond Hettinger
Raymond Hettinger added the comment: I concur. Will fix. -- priority: -> critical versions: +Python 2.7, Python 3.0, Python 3.1 ___ Python tracker ___ _

[issue6044] Exception message in int() when trying to convert a complex

2009-05-16 Thread aletornw
New submission from aletornw : Hi, I noticed that when trying to convert with the int() function a complex number the exception error says "use int(abs(z))". I think that insted it should say "use int(z.real)" because if I want to convert 1j**2 to int using the abs method, the result is 1 positiv

[issue2690] Precompute range length

2009-05-16 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- assignee: -> rhettinger nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue3489] add rotate{left,right} methods to bytearray

2009-05-16 Thread Raymond Hettinger
Raymond Hettinger added the comment: Am -1 on this. Rotating byte arrays has very few use cases and the ones it does have can typically be met by indexing. -- nosy: +rhettinger ___ Python tracker _

[issue6038] Should collections.Counter check for int?

2009-05-16 Thread Raymond Hettinger
Raymond Hettinger added the comment: No thanks. I'm happy with the API as-is. It is a consenting adult tool, simply a dictionary that automatically fills-in missing values with zero. There's no reason to slow it down to a crawl with integer checks at every step. Besides, there are some vali

[issue5980] Add bug tracker tasks to PEP 101

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: We sure could have helpers for updating RFEs and bugs to correct versions. They could be scripts for bulk updating and/or per-issue UI shortcuts for Developers. I'll open a meta-tracker RFE for this. Correcting user reports and requests is also possible, but I'd

[issue4144] 3 tutorial documentation errors

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: David, I hope others can understand your report, I get dizzy looking at it :) -- assignee: -> georg.brandl components: +Documentation nosy: +ajaksu2, georg.brandl priority: -> normal type: -> behavior versions: +Python 3.1 -Python 3.0

[issue4126] remove not decodable environment variables

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- nosy: +loewis priority: -> high versions: +Python 3.1 -Python 3.0 ___ Python tracker ___ ___ Python-bugs-

[issue4080] pyunit - display time of each test case - patch

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Library (Lib), Tests -None nosy: +michael.foord priority: -> normal stage: -> test needed versions: +Python 2.7, Python 3.2 ___ Python tracker

[issue4036] Support bytes for subprocess.Popen()

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Library (Lib) priority: -> high type: -> feature request versions: +Python 3.1 -Python 3.0 ___ Python tracker ___ _

[issue4035] Support bytes for os.exec*()

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Library (Lib) priority: -> high type: -> feature request versions: +Python 3.1 -Python 3.0 ___ Python tracker ___ _

[issue4007] make clean fails to delete .a and .so.X.Y files

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- versions: +Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue3949] curses' sigwinch handler isn't visible from python

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: Shish, Can you provide a short test script? I think this might also be related to issue 1687125. -- dependencies: +readline steals sigwinch nosy: +ajaksu2 priority: -> normal stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.4 __

[issue3948] readline steals sigwinch

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: See related(?) issue 3180. -- nosy: +ajaksu2 priority: -> normal stage: -> test needed versions: +Python 2.6 -Python 2.4 ___ Python tracker ___

[issue3877] test_fileio fails on OpenBSD 4.4

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Tests -Extension Modules priority: -> normal stage: -> patch review ___ Python tracker ___

[issue3876] multiprocessing does not compile on systems which do not define sem_timedwait

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed versions: +Python 3.1 -Python 3.0 ___ Python tracker ___ ___ Python-bugs-list maili

[issue3693] Obscure array.array error message

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: FWIW, in trunk the message for unicode strings is the same: >>> array.array('b', u'fox') Traceback (most recent call last): File "", line 1, in TypeError: an integer is required -- nosy: +ajaksu2 priority: -> normal stage: -> test needed type: -> be

[issue6018] Fix the output word from "ok" to "OK" when a testcase passes

2009-05-16 Thread Benjamin Peterson
Benjamin Peterson added the comment: I think the idea is that things like FAIL and ERROR are supposed to grab your attention as opposed to a simple "ok". -- nosy: +benjamin.peterson resolution: -> works for me status: open -> closed ___ Python track

[issue3839] wsgi.simple_server resets 'Content-Length' header on empty content even if app defined it.

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- nosy: +pje priority: -> normal stage: -> test needed versions: -Python 2.5, Python 3.0 ___ Python tracker ___ _

[issue3840] if TESTFN == "/tmp/@test", some tests fail

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- nosy: +r.david.murray priority: -> normal stage: -> needs patch type: -> behavior ___ Python tracker ___ __

[issue6038] Should collections.Counter check for int?

2009-05-16 Thread Carl Johnson
Carl Johnson added the comment: Sounds like a job for ABCs. -- nosy: +carlj ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue6043] HTMLParseError derivation

2009-05-16 Thread Benjamin Peterson
Benjamin Peterson added the comment: Actually, the new advice to derive from Exception since StandardError is being removed in Python 3. -- nosy: +benjamin.peterson resolution: -> wont fix status: open -> closed ___ Python tracker

[issue6043] HTMLParseError derivation

2009-05-16 Thread Fred Bayer
New submission from Fred Bayer : Acoording to documentation, only a few exceptions should inherit directly from Exception, most should inherit from StandardError. However, HTMLParser.HTMLParseError doesn't conform: isinstance(HTMLParser.HTMLParseError("foo"),StandardError) --> False --

[issue6017] Dict fails to notice addition and deletion of keys during iteration

2009-05-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: I would be happy enough to change 'will' to 'may'. There are a lot of undocumented exception-raising circumstances, and this one already be undocumented in Py3. -- ___ Python tracker

[issue3635] pickle.dumps cannot save instance of dict-derived class that overrides __getattribute__

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: Is this related to #1730480? -- nosy: +ajaksu2 priority: -> normal stage: -> test needed versions: +Python 2.6, Python 3.1 -Python 2.5, Python 3.0 ___ Python tracker __

[issue4712] Document pickle behavior for subclasses of dicts/lists

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- dependencies: +pickle.dumps cannot save instance of dict-derived class that overrides __getattribute__ ___ Python tracker ___ ___

[issue3605] Py_FatalError causes infinite loop

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: -> normal stage: -> test needed type: -> behavior versions: +Python 3.1 -Python 3.0 ___ Python tracker ___ __

[issue3581] failures in test_uuid

2009-05-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: Apparently, a bad test assumption. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue3367] Uninitialized value read in parsetok.c

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: Confirmed in trunk: ~/trunk-py$ ./configure --with-pydebug --without-pymalloc && make [...] ~/trunk-py$ valgrind --suppressions=Misc/valgrind-python.supp ./python ==29730== Memcheck, a memory error detector. [...] Python 2.7a0 (trunk:72608M, May 16 2009, 17:31:09)

[issue2921] enable embedding: declare/#define only py* symbols in #includes

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: Hallvard, There is ongoing discussion on separating public and private headers: http://groups.google.com/group/unladen-swallow/t/f3a89fc723411c49 Also see #2897, #4805, #5748 and #896330 for (sometimes slightly) related issues. -- dependencies: +include

[issue1694442] Failure to build on AIX 5.3

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- status: -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue3471] PyObject_GetAttr() to get special methods

2009-05-16 Thread Benjamin Peterson
Benjamin Peterson added the comment: I fixed the PyObject_GetAttr issue in r72690. I've also been working on fixing the lookup of other special methods. Armin, do you have a list of methods we should check? -- assignee: -> benjamin.peterson ___ Pyth

[issue3583] test_urllibnet.test_bad_address() fails when using OpenDNS

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- nosy: +ajaksu2 versions: +Python 3.1 -Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue3581] failures in test_uuid

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: Hmm, is this a bug in uuid._ifconfig_getnode or just a bad test assumption? -- nosy: +ajaksu2 priority: normal -> low ___ Python tracker ___ _

[issue3338] cPickle segfault with deep recursion

2009-05-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: Now that #3640 has been fixed, this bug is probably fixed too (at least in trunk and py3k). -- ___ Python tracker ___ __

[issue5786] len(reversed(

2009-05-16 Thread Mark Dickinson
Mark Dickinson added the comment: Closing. -- resolution: -> wont fix status: pending -> closed ___ Python tracker ___ ___ Python-bug

[issue3541] bsddb memory leak on ubuntu

2009-05-16 Thread Marcin Bachry
Marcin Bachry added the comment: The test program uses constant memory on my machine. Ubuntu 9.04, libdb4.7.25-6ubuntu1, python 2.7 trunk. -- nosy: +marcin.bachry ___ Python tracker

[issue2921] enable embedding: declare/#define only py* symbols in #includes

2009-05-16 Thread Hallvard B Furuseth
Hallvard B Furuseth added the comment: Daniel Diniz writes: > Would this break existing code? Source code? Not if you use the PYTHON_NAMESPACE_ONLY trick. Old programs will receive all old definitions in addition to the new autoconf symbols, since they didn't #define PYTHON_NAMESPACE_ONLY. P

[issue3541] bsddb memory leak on ubuntu

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: Confirmed in trunk. -- nosy: +ajaksu2, jcea priority: -> normal stage: -> test needed versions: +Python 2.6 -Python 2.5 ___ Python tracker ___ _

[issue3527] Py_WIN_WIDE_FILENAMES removal

2009-05-16 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue3532] bytes.tohex method

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: Looks like transform/untransform went nowhere? -- nosy: +ajaksu2, lemburg priority: -> normal stage: -> patch review versions: +Python 3.2 -Python 3.1 ___ Python tracker __

[issue3527] Py_WIN_WIDE_FILENAMES removal

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Windows priority: -> normal stage: -> patch review type: -> feature request versions: +Python 2.7, Python 3.1 -Python 2.5, Python 2.6, Python 3.0 ___ Python tracker _

[issue3451] Asymptotically faster divmod and str(long)

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- nosy: +haypo stage: -> patch review versions: +Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mai

[issue3489] add rotate{left,right} methods to bytearray

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed versions: +Python 3.2 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list maili

[issue3486] bytes.join does not accept a sequence of bytearrays

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: How about adding a note on this to 2.6 docs and be done with it? -- nosy: +ajaksu2 ___ Python tracker ___

[issue3471] PyObject_GetAttr() to get special methods

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: This snippet is fixed (returns False), see issue 2325: import abc isinstance(5, abc.ABCMeta) The general PyObject_GetAttr issue should be reviewed. -- components: +Interpreter Core nosy: +ajaksu2, benjamin.peterson priority: -> normal stage: -> test n

[issue3293] incorrect comments for PyObject_ReleaseBuffer

2009-05-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: PyObject_ReleaseBuffer() is dead actually. -- resolution: -> out of date status: open -> closed ___ Python tracker ___

[issue5380] pty.read raises IOError when slave pty device is closed

2009-05-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: Uh, a file descriptor returned by openpty() doesn't satisfy S_ISFIFO(). It's just reported as a character device by fstat (st_mode is 0o20666). Perhaps the best thing is to just let the error propagate, since after all the user tries to read more bytes than are

[issue3435] trace.py tries to get coverage data from non Python files

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: -> normal stage: -> test needed versions: +Python 2.6, Python 3.1 -Python 2.5 ___ Python tracker ___ _

[issue3356] some tests fail with 'make EXTRA_CFLAGS="-DPy_DEBUG"' (test_distutils, test_set)

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Build priority: high -> low title: some tests fail with Py_DEBUG (test_distutils, test_set) -> some tests fail with 'make EXTRA_CFLAGS="-DPy_DEBUG"' (test_distutils, test_set) versions: +Python 3.1 -Python 3.0 __

[issue3354] Improve error reporting for the argument parsing API

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed versions: +Python 3.2 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list maili

[issue3353] make built-in tokenizer available via Python C API

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: -> normal stage: -> test needed versions: +Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker ___ _

[issue3338] cPickle segfault with deep recursion

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- dependencies: +test_cpickle crash on AMD64 Windows build priority: -> normal versions: +Python 2.6 -Python 2.4 ___ Python tracker ___ ___

[issue3293] incorrect comments for PyObject_ReleaseBuffer

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: Travis, How should code, comment and PEP be reconciled? -- nosy: +ajaksu2 stage: -> test needed type: -> behavior ___ Python tracker ___ ___

[issue3246] configure: WARNING: sys/socket.h: present but cannot be compiled

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: ric, Can you confirm this for 2.6? -- nosy: +ajaksu2 priority: -> normal stage: -> test needed versions: +Python 2.6 -Python 2.5 ___ Python tracker

[issue3243] Support iterable bodies in httplib

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: -> normal stage: -> test needed versions: +Python 3.2 ___ Python tracker ___ ___ Python-bugs-l

[issue3232] Wrong str->bytes conversion in Lib/encodings/idna.py

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: -> normal stage: -> test needed versions: +Python 3.1 -Python 3.0 ___ Python tracker ___ ___ P

[issue3163] module struct support for ssize_t and size_t

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: -> normal stage: -> patch review versions: +Python 3.2 ___ Python tracker ___ ___ Python-bugs-

[issue2397] Backport 3.0 struct module changes to 2.6

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: This risks missing 2.x if nobody adopts the implementation of PEP 3118 in 3.x: 2.7 might be the last 2.x release. -- nosy: +ajaksu2 priority: -> low stage: -> test needed type: -> feature request versions: +Python 2.7 -Python 2.6 _

[issue2395] [Py3k] struct module changes of PEP 3118

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: We're in 3.1 beta. Can you review the status of this implementation? -- dependencies: +implement PEP 3118 struct changes nosy: +ajaksu2 priority: -> normal stage: -> test needed versions: +Python 3.1 -Python 3.0 ___

[issue3132] implement PEP 3118 struct changes

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: Travis, Do you think you can contribute for this to actually land in 3.2? Having a critical issue slipping from 3.0 to 3.3 would be bad... Does this supersede issue 2395 or is this a subset of that one.? -- nosy: +ajaksu2 stage: -> test needed versions:

[issue3071] The ValueError raised by failing to unpack sequence should have more information.

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: What would happen with infinite iterables? import itertools [foo] = itertools.count() -- nosy: +ajaksu2 stage: -> test needed versions: +Python 2.7, Python 3.2 -Python 2.3, Python 2.4, Python 2.5 ___ Python tracker

[issue3401] wsgiref can't handle unicode environments

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue6042] Document and slightly simplify lnotab tracing

2009-05-16 Thread Jeffrey Yasskin
New submission from Jeffrey Yasskin : lnotab-based tracing is very complicated and isn't documented very well. There were at least 3 comment blocks purporting to document co_lnotab, and none did a very good job. This patch unifies them into Objects/lnotab_notes.txt which tries to completely captu

[issue1943] improved allocation of PyUnicode objects

2009-05-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Daniel, which patch? freelists2.patch or unialloc4.patch? If these are > targeted py3k (judging by the "Versions" selector above), none of > Unladen Swallow's benchmarks work under 3k (we're focusing on 2.x). They target py3k indeed. Also, they need updating

[issue1424152] urllib/urllib2: HTTPS over (Squid) Proxy fails

2009-05-16 Thread Alexander Solovyov
Changes by Alexander Solovyov : -- nosy: +piranha ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue1943] improved allocation of PyUnicode objects

2009-05-16 Thread Collin Winter
Collin Winter added the comment: Daniel, which patch? freelists2.patch or unialloc4.patch? If these are targeted py3k (judging by the "Versions" selector above), none of Unladen Swallow's benchmarks work under 3k (we're focusing on 2.x). -- ___ Pytho

[issue2122] mmap.flush does not check for errors on windows

2009-05-16 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +ocean-city ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue3023] Problem with invalidly-encoded command-line arguments (Unix)

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: -> normal versions: +Python 3.1 -Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue3030] compiler warning on HP-UX

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: -> low type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2973] _ssl compiler warnings

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: Would HEADER_ASN1_MAC_H or IMPLEMENT_ASN1_ENCODE_FUNCTIONS_const_fname help? -- nosy: +ajaksu2 ___ Python tracker ___

[issue2921] enable embedding: declare/#define only py* symbols in #includes

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: Would this break existing code? Are the benefits worth it? -- nosy: +ajaksu2 priority: -> normal versions: +Python 2.7, Python 3.2 -Python 2.6 ___ Python tracker ___

[issue2857] add codec for java modified utf-8

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Unicode nosy: +ezio.melotti, haypo priority: -> normal stage: -> test needed type: -> feature request versions: +Python 2.7, Python 3.2 -Python 2.5 ___ Python tracker ___

[issue2690] Precompute range length

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> patch review versions: +Python 3.2 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mail

[issue2528] Change os.access to check ACLs under Windows

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Windows priority: -> normal stage: -> patch review type: -> feature request versions: +Python 2.7, Python 3.2 -Python 2.6 ___ Python tracker _

[issue2489] Patch for bugs in pty.py

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: Fergus, Can you provide a test for the _copy loop bug? IIUC, the spawn change is an RFE and shouldn't land on the maintenance branches (or 3.1). -- nosy: +ajaksu2 priority: -> normal stage: -> test needed versions: +Python 3.1 -Python 2.5, Python 3.0 _

[issue2423] test_smtplib.py no longer butt slow

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: What platform is that? I'm sure I don't get such a long runtime for test_smtplib on Linux. Maybe this was fixed by changes in socket or smtplib itself? -- nosy: +ajaksu2 versions: +Python 2.7, Python 3.2 -Python 2.6 __

[issue2295] cPickle corner case - docs or bug?

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: -> normal stage: -> test needed versions: +Python 2.6, Python 3.1 -Python 2.5 ___ Python tracker ___ _

[issue2122] mmap.flush does not check for errors on windows

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: -> high stage: -> test needed versions: +Python 3.1 -Python 2.5, Python 3.0 ___ Python tracker ___ ___

[issue2027] Module containing C implementations of common text algorithms

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Extension Modules, Unicode -Library (Lib) priority: normal -> low stage: -> test needed versions: +Python 2.7, Python 3.2 -Python 2.6 ___ Python tracker ___

[issue1943] improved allocation of PyUnicode objects

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: Collin, Can you test this patch with Unladen Swallow's benchmarks? -- components: +Unicode nosy: +ajaksu2, collinwinter, ezio.melotti, haypo stage: -> test needed versions: +Python 3.2 -Python 3.0 ___ Python tracker

[issue1838] Ctypes C-level infinite recursion

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: Confirmed in trunk and py3k. Maybe we should treat ctypes segfaults that don't involve external C code more strictly as bugs? -- nosy: +ajaksu2 stage: -> test needed versions: +Python 3.1 ___ Python tracker

[issue1827] svnversion_init() doesn't support svn urls in sandbox/trunk

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: I'm setting as 'behavior' because ISTM that a bogus svnversion making Python fail to start is a bug. -- nosy: +ajaksu2 priority: normal -> low stage: -> test needed type: -> behavior versions: +Python 3.1 -Python 3.0 ___

[issue1778] SyntaxError.offset sometimes wrong

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: Confirmed in trunk and py3k. -- nosy: +ajaksu2 stage: -> test needed versions: +Python 2.6, Python 3.1 -Python 2.4, Python 2.5 ___ Python tracker ___

[issue4256] optparse: provide a simple way to get a programmatically useful list of options

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy priority: -> normal stage: -> test needed versions: +Python 2.7, Python 3.2 -Python 2.5 ___ Python tracker ___ _

[issue3001] RLock's are SLOW

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue2931] optparse: various problems with unicode and gettext

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- nosy: +ezio.melotti, haypo, loewis priority: -> normal stage: -> patch review type: -> behavior versions: +Python 2.6 -Python 2.5 ___ Python tracker __

[issue2609] Tests fail if ./@test is not writeable

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- nosy: +r.david.murray priority: -> normal versions: +Python 3.1 ___ Python tracker ___ ___ Python-bugs-li

[issue6028] Interpreter crashes when chaining an infinite number of exceptions

2009-05-16 Thread Benjamin Peterson
Benjamin Peterson added the comment: Well, perhaps something like #1195571 should be added. -- nosy: +benjamin.peterson ___ Python tracker ___ ___

[issue1855] Codepage unset in msilib.init_database()

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- dependencies: +msilib.SetProperty(msilib.PID_CODEPAGE, '1252') raises 0x65d = type mismatch priority: normal -> low stage: -> test needed type: resource usage -> feature request versions: +Python 2.7, Python 3.2 -Python 2.5

[issue1884] msilib.SetProperty(msilib.PID_CODEPAGE, '1252') raises 0x65d = type mismatch

2009-05-16 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed versions: +Python 2.6, Python 3.1 -Python 2.5 ___ Python tracker ___ ___ Python-bug

[issue6035] test_poplib Bus error with gcc-4.4 on OS X

2009-05-16 Thread Mark Dickinson
Mark Dickinson added the comment: > I'm still trying to work out whether the bug is in gcc, > Python, or libssl. It was, of course, none of the above. It was a PEBCAK error. I had two versions of openssl: one from macports and one from OS X, and I was using the include files from one version

[issue5956] test_distutils fails for Python 3.1b1 on MacOS X

2009-05-16 Thread Ned Deily
Ned Deily added the comment: Another good reason not to install Stuffit or Stuffit Expander. These days OS X expands the standard open formats (i.e. .gz, .zip, .tar, etc) all by itself, and there are the standard command line tools as well. If you need Stuffit for actual stuffit archives, I

[issue5956] test_distutils fails for Python 3.1b1 on MacOS X

2009-05-16 Thread Jean Brouwers
Jean Brouwers added the comment: Possible, I do not know and had never seen this before. Also, I just installed the latest (free) version 13.0.3 (Intel Build 165) of Stuffit Expander and the problem does *not* occur. But the older Stuffit 11.0.2 (Intel Build 627) still creates 2 files for

  1   2   >