[issue6444] multiline exception logging via syslog handler

2009-08-17 Thread Vinay Sajip
Vinay Sajip added the comment: Marked as pending, as there has been no activity for a while. Will close if there is no followup. -- status: open -> pending ___ Python tracker ___

[issue6720] multiprocessing logging

2009-08-17 Thread Vinay Sajip
Changes by Vinay Sajip : -- assignee: -> jnoller nosy: +jnoller ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6463] IDLE with Tk-Cocoa: Edit, format menus hang

2009-08-17 Thread Kevin Walzer
Kevin Walzer added the comment: Following active development and several bugfixes in Tk-Cocoa 8.5.7, the issue with the cut/paste events in IDLE's edit menu has resolved itself. Therefore I am closing this bug. -- status: open -> closed ___ Python

[issue6683] smtplib authentication - try all mechanisms

2009-08-17 Thread R. David Murray
Changes by R. David Murray : -- keywords: +easy priority: -> normal stage: -> test needed versions: +Python 2.6, Python 2.7, Python 3.1, Python 3.2 -Python 2.4 ___ Python tracker __

[issue1550273] Fix numerous bugs in unittest

2009-08-17 Thread R. David Murray
R. David Murray added the comment: At a guess, because equality is not the same as identity. (If identity was the requirement for equality for this class, the method body would _just_ be self is other). You should open a new bug report explaining the problem you are seeing in more detail, with

[issue1550273] Fix numerous bugs in unittest

2009-08-17 Thread Ionut Turturica
Ionut Turturica added the comment: I am a little bit concerned with the new __eq__: def __eq__(self, other): if type(self) is not type(other): return False return self._tests == other._tests Why did you use "self._tests == other._tests" instead of "self is other

[issue6721] Locks in python standard library should be sanitized on fork

2009-08-17 Thread Gregory P. Smith
New submission from Gregory P. Smith : The python logging module uses a lock to surround many operations, in particular. This causes deadlocks in programs that use logging, fork and threading simultaneously. 1) spawn one or more threads in your program 2) have at least one of those threads ma

[issue1023290] Conversion of longs to bytes and vice-versa.

2009-08-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: Alexandre: > Notable changes are: > > - The name of the methods have been changed to int.tobytes() and > int.frombytes(). Without wanting to bikeshed, I think these methods should take underscores as other int methods already do. This kind of inconsiste

[issue1023290] Conversion of longs to bytes and vice-versa.

2009-08-17 Thread Martin v . Löwis
Martin v. Löwis added the comment: Before this gets applied, a (preferably final) decision should be made whether it should be provided for 2.7 as well. Personally, it would be fine with me either way. -- ___ Python tracker

[issue2636] Regexp 2.7 (modifications to current re 2.2.2)

2009-08-17 Thread Alex Willmer
Alex Willmer added the comment: Matthew's 20080915.zip attachment is now on PyPI. This one, having a more complete MANIFEST, will build for people other than me. -- ___ Python tracker __

[issue6720] multiprocessing logging

2009-08-17 Thread Benjamin Liles
New submission from Benjamin Liles : In the backport package of the multiprocessing library. A bug was introduced in version 2.6.2.1 when the logging module was modified. If you use logging in the backport, you get the following: Traceback (most recent call last): File "/Library/Frameworks/Pyt

[issue1023290] Conversion of longs to bytes and vice-versa.

2009-08-17 Thread Alexandre Vassalotti
Alexandre Vassalotti added the comment: Here's a new patch incorporating the suggestions I received on python-ideas. Notable changes are: - The name of the methods have been changed to int.tobytes() and int.frombytes(). - The tri-state `little_endian' argument has been removed in favor

[issue6685] CGI module documentation references method 'toupper'; should be 'upper'

2009-08-17 Thread R. David Murray
R. David Murray added the comment: Fixed in r74492. Thanks. -- assignee: georg.brandl -> r.david.murray nosy: +r.david.murray priority: -> normal resolution: -> fixed stage: -> committed/rejected status: open -> closed type: feature request -> behavior versions: +Python 2.7, Python

[issue6719] pdb messes up when debugging an non-ascii program

2009-08-17 Thread samuel de framond
New submission from samuel de framond : consider a program like this one: File: ./test.py #/usr/bin/env python #coding: utf8 print 'qwerty' - Here is a shell (e.g. bash) session: $ python -m pdb ./test.py --Return-- > /usr/lib/python2.6/encodings/__init__.py(

[issue6718] ValueError in 21.17.4.2. SocketServer.UDPServer Example

2009-08-17 Thread Eric Pope
New submission from Eric Pope : In the client side example under 21.17.4.2. SocketServer.UDPServer Example: at: http://docs.python.org/dev/library/socketserver.html <<<>>>should have been: HOST, PORT = "localhost", -- assignee: georg.brandl components: Documentation messages: 9166

[issue6717] Some problem with recursion handling

2009-08-17 Thread R. David Murray
Changes by R. David Murray : -- components: +Tkinter priority: -> normal type: -> crash versions: +Python 3.2 ___ Python tracker ___

[issue6717] Some problem with recursion handling

2009-08-17 Thread R. David Murray
R. David Murray added the comment: With py3k trunk on Gentoo Linux after less than a second of flailing the cursor around on the screen I got: rdmur...@partner:~/python/py3k>./python dragbug.py Fatal Python error: Cannot recover from stack overflow. zsh: abort ./python dragbug.py ---

[issue6717] Some problem with recursion handling

2009-08-17 Thread Gregor Lingl
New submission from Gregor Lingl : I suspect that there is some deeper (more severe) issue behind the problem I describe below. I've observed the following on Windows only. Didn't try it with different OSs running dragbug.py shows different behaviour with Python 3.1 compared to Python 2.6: Runn

[issue5949] IMAP4_SSL spin because of SSLSocket.suppress_ragged_eofs

2009-08-17 Thread Ryan Tucker
Ryan Tucker added the comment: I can reproduce this problem with Python 2.6. It manifests itself as a lengthy iteration through an IMAP SSL mailbox locking up after a long while and the interpreter consuming all available system memory. I suspect this to be the combination of doom: imaplib.py

[issue6716] Windows install error when choosing to compile .py files

2009-08-17 Thread pds
New submission from pds : There seem to be 3 problems in Python 3.1.1rc1 Windows installer package. 1. Command line argument of compileall.py seems wrong. 2. UnicodeEncodeError occurs depending on code page. 3. Syntax errors. First, I tried to install Python 3.1.1rc1 just by double-clicking the

[issue6715] xz compressor support

2009-08-17 Thread devurandom
devurandom added the comment: Yes, xz-utils contains a C library, though it still caries the name "liblzma.so", probably for historic reasons. You are right that xz is a file format based around the lzma algorithm. It just uses a more advanced container format. (lzma-utils had no container at al

[issue6715] xz compression support

2009-08-17 Thread Skip Montanaro
Skip Montanaro added the comment: What is xz compression and why is it important? Skip -- nosy: +skip.montanaro ___ Python tracker ___ __

[issue6695] PyXXX_ClearFreeList for dict, set, and list

2009-08-17 Thread Matthias Troffaes
Matthias Troffaes added the comment: To aid the discussion, I attach another quick patch which reports the time spent on PyXXX_ClearFreeList calls during highest generation garbage collection (including gc.collect()). For simplicity, the timer uses clock() so the resolution is quite limited (app

[issue6715] xz compression support

2009-08-17 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Is zc really a C library? I could find a standalone program, but no shared object. Actually, it seems that zc is a file format based on the lzma algorithm. The plan could be to first implement the lzma module (issue5689), then a xzfile module in pure pytho

[issue6715] xz compression support

2009-08-17 Thread devurandom
New submission from devurandom : Python currently supports zlib, gzip and bzip2 compressors. What is missing is support for xz (http://tukaani.org/xz/). It comes with a C library. -- components: Library (Lib) messages: 91657 nosy: devurandom severity: normal status: open title: xz comp