[issue1685453] email package should work better with unicode

2009-03-30 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Probably these are related too. #5259 #5304 -- dependencies: +email/base64mime.py cannot work, smtplib is broken in Python3 nosy: +ocean-city ___ Python tracker _

[issue5039] Adjust reference-counting note

2009-03-30 Thread John Hitz
John Hitz added the comment: Sorry about that. First one I've ever done. Consecrating more on how than what. John > Subject: [issue5039] Adjust reference-counting note > To: johnhitz...@msn.com > From: rep...@bugs.python.org > Date: Tue, 31 Mar 2009 02:20:45 + > > > Terry J. Reedy ad

[issue5610] email feedparser.py CRLFLF bug: $ vs \Z

2009-03-30 Thread Tony Nelson
Tony Nelson added the comment: make test still passes all tests except test_httpservers on my Python 2.6.1 build. The network resource was not enabled and tk is not available. The new test for CRLFLF at the end of a message body is added to Lib/email/test_email at the end of the TestParsers cl

[issue5619] Pass MS CRT debug flags into subprocesses

2009-03-30 Thread Martin v. Löwis
New submission from Martin v. Löwis : To avoid bringing up CRT assert message dialogs, the CRT debug flags need to be passed into subprocesses for multiprocessing. CRT doesn't have getters. Instead, you have to set to 0, get the current value, then restore it. This can be done with modes = []

[issue1714451] subprocess.py problems errors when calling cmd.exe

2009-03-30 Thread Collin Winter
Collin Winter added the comment: Do you know of anyone actively working on Windows support? If not, I say close it as "won't fix". -- ___ Python tracker ___ __

[issue5618] PyMemberDef type T_UBYTE incorrectly documtented

2009-03-30 Thread Brian Curtin
Brian Curtin added the comment: Adding 3x patch -- Added file: http://bugs.python.org/file13505/structures_3x.patch ___ Python tracker ___ ___

[issue5618] PyMemberDef type T_UBYTE incorrectly documtented

2009-03-30 Thread Brian Curtin
New submission from Brian Curtin : One of the available options for the type field in the PyMemberDef structure is incorrectly listed as T_UNBYTE. T_UBYTE is the correct type. See http://docs.python.org/c-api/structures.html#PyMemberDef -- assignee: georg.brandl components: Documentatio

[issue5610] email feedparser.py CRLFLF bug: $ vs \Z

2009-03-30 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: I think this is a good idea. Does the existing test suite still pass with this change? For a long time, email's philosophy was to use native line endings and never expected mixed eol, and it definitely never expected mixed line endings, so we'll need at least

[issue5574] multiprocessing queues.py doesn't include JoinableQueue in its __all__ list

2009-03-30 Thread Jesse Noller
Jesse Noller added the comment: r70792 on trunk -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs

[issue3791] bsddb not completely removed

2009-03-30 Thread Martin v. Löwis
Martin v. Löwis added the comment: Python 2.5 is completed; no further changes will be made to it. -- ___ Python tracker ___ ___ Pytho

[issue3791] bsddb not completely removed

2009-03-30 Thread karl
karl added the comment: On the mac version there is an issue with the python version installed by default. Python 2.5.1 (r251:54863, Jan 13 2009, 10:26:13) [GCC 4.0.1 (Apple Inc. build 5465)] on darwin File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/dbhash.py",

[issue5610] email feedparser.py CRLFLF bug: $ vs \Z

2009-03-30 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- assignee: -> barry versions: +Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue5039] Adjust reference-counting note

2009-03-30 Thread Terry J. Reedy
Terry J. Reedy added the comment: The patch has an error. It says 'Python currently...' instead of 'CPython currently', as in my suggestion. -- ___ Python tracker ___ __

[issue4535] Build / Test Py3K failed on Ubuntu 8.10

2009-03-30 Thread Ron DuPlain
Ron DuPlain added the comment: For what it's worth, I ran these tests on Ubuntu 8.10 with Python trunk (2.7) r70765 (svn). All tests passed. Output is attached (cleaned out ref counts). --rduplain -- nosy: +rduplain Added file: http://bugs.python.org/file13503/trunk.r70765.debug-ubu

[issue1676121] Problem linking to readline lib on x86(64) Solaris

2009-03-30 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: I don't have a Solaris box to test at the moment, but I believe the following commit fixed this issue: r66283 | gregory.p.smith | 2008-09-07 01:15:18 -0400 (Sun, 07 Sep 2008) | 5 lin

[issue1748015] Module-level stack scopes have incorrect bindings.

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : Added file: http://bugs.python.org/file13502/inspectStack.py ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue1748015] Module-level stack scopes have incorrect bindings.

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : Added file: http://bugs.python.org/file13501/triggerBug.py ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue1748015] Module-level stack scopes have incorrect bindings.

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : Added file: http://bugs.python.org/file13500/triggerPdb.py ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue1748015] Module-level stack scopes have incorrect bindings.

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: Confirmed in trunk, adding the bare .py files. -- nosy: +ajaksu2 stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.5 Added file: http://bugs.python.org/file13499/buggy.py ___ Python tracker

[issue5617] Unicode printing in gdb post-mortem sessions

2009-03-30 Thread David Christian
Changes by David Christian : -- title: Unicode pringint in post-mortem sessions -> Unicode printing in gdb post-mortem sessions ___ Python tracker ___ ___

[issue5617] Unicode pringint in post-mortem sessions

2009-03-30 Thread David Christian
New submission from David Christian : http://blog.kowalczyk.info/article/Gdb-basics.html It is difficult to display the frame you're in while debugging a core dump in python 3.0 (when in a core dump, you can't run functions, and thus cannot use many of the normal methods of displaying unicode).

[issue1739789] Accelerate attr dict lookups

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: normal -> low type: -> performance versions: +Python 2.7, Python 3.1 -Python 2.6 ___ Python tracker ___

[issue1742837] Documentation for BaseHTTPServer.HTTPServer

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- versions: +Python 2.6, Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1741130] struct.pack("I", "foo"); struct.pack("L", "foo") should fail

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: Cannot confirm for trunk. -- components: +Extension Modules -None nosy: +ajaksu2, marketdickinson stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.5 ___ Python tracker

[issue1736483] os.popen('yes | echo hello') stuck

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: normal -> stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.3 ___ Python tracker ___ ___

[issue1735509] Newer reply format for imap commands in imaplib.py

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +patch stage: -> test needed versions: +Python 2.7 ___ Python tracker ___ ___ Python-bugs-li

[issue1284670] Allow to restrict ModuleFinder to get "direct" dependencies

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> feature request versions: +Python 2.7 ___ Python tracker ___ ___ Pytho

[issue4753] Faster opcode dispatch on gcc

2009-03-30 Thread A.M. Kuchling
A.M. Kuchling added the comment: Is a backport to 2.7 still planned? -- nosy: +akuchling ___ Python tracker ___ ___ Python-bugs-list m

[issue1742940] can't run single lamba funcs as unittest

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> feature request versions: +Python 2.7, Python 3.1 -Python 2.5 ___ Python tracker ___ _

[issue1733544] HP 64 bit does not run

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: Brad: I'm going to close this unless you give us the requested information. -- nosy: +ajaksu2 priority: normal -> low stage: -> test needed status: open -> pending type: -> behavior ___ Python tracker

[issue1733484] Solaris 64 bit LD_LIBRARY_PATH_64 needs to be set

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: I'll close this unless someone wants to see this fixed. -- nosy: +ajaksu2 priority: normal -> low stage: -> test needed status: open -> pending type: -> behavior versions: +Python 2.6 ___ Python tracker

[issue1733509] Modules/ld_so_aix needs to strip path off of whichcc call

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: I'll close this unless opposition is voiced. -- nosy: +ajaksu2 priority: normal -> low stage: -> test needed status: open -> pending type: -> behavior ___ Python tracker ___

[issue1733513] zlib configure behaves differently than main configure

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: Anyone against closing this? -- nosy: +ajaksu2 priority: normal -> low status: open -> pending ___ Python tracker ___ _

[issue1733546] AIX shared object build of python 2.5 does not work

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: I'll close this unless we get more info. -- nosy: +ajaksu2 priority: normal -> low stage: -> test needed status: open -> pending type: -> behavior versions: +Python 2.6 ___ Python tracker

[issue1733532] HP automatic build of zlib

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: Brad: any feedback? I'll close this otherwise. -- nosy: +ajaksu2 priority: normal -> low stage: -> test needed status: open -> pending type: -> compile error versions: +Python 2.6 ___ Python tracker

[issue1733523] HP shared object option

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: I'll close this unless we get some useful feedback. -- nosy: +ajaksu2 priority: normal -> low stage: -> test needed status: open -> pending type: -> feature request versions: +Python 2.7, Python 3.1 ___ Python tracke

[issue1732662] socket makefile objects are not independent

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> behavior versions: +3rd party ___ Python tracker ___ ___ Python-bugs-l

[issue1717900] Destructor behavior faulty

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> behavior versions: +Python 2.7, Python 3.1 ___ Python tracker ___ ___

[issue1542544] Improve dynamic linking support on AIX

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: OK :) -- status: pending -> open ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue1542544] Improve dynamic linking support on AIX

2009-03-30 Thread Antoine Pitrou
Antoine Pitrou added the comment: I suggest keeping the issue open since building on AIX with proper extension module support can be tricky, and it's good to have an idea of what a possible patch looks like. (especially if snakebite finally gets an AIX machine) -- nosy: +pitrou ___

[issue5614] Malloc errors in test_io

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: I can't believe that I completely missed that this is the purpose of the tests, I honestly believed that I had checked everything there was to check :-( Disabling the test won't be necessary, I'm keeping this issue open for a while longer to check if we can

[issue3551] multiprocessing.Pipe terminates with ERROR_NO_SYSTEM_RESOURCES if large data is sent (win2000)

2009-03-30 Thread John Ehresman
John Ehresman added the comment: It turns out that the original reproduce.py deadlocks if the pipe buffer is smaller than message size -- even with a fix to the bug. Patch to fix is coming soon. -- Added file: http://bugs.python.org/file13498/reproduce.py _

[issue5614] Malloc errors in test_io

2009-03-30 Thread Antoine Pitrou
Antoine Pitrou added the comment: PS: if the warnings are annoying, the test can be disabled selectively under Mac OS X. -- ___ Python tracker ___ ___

[issue5614] Malloc errors in test_io

2009-03-30 Thread Antoine Pitrou
Antoine Pitrou added the comment: If you look at test_io, calling malloc() with sys.maxsize is precisely the purpose of the test, to check that allocation failures are detected and reported properly. So the warnings can be safely ignored, if they only happen in test_constructor. -- nosy

[issue1714451] subprocess.py problems errors when calling cmd.exe

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: Collin: do you still want a patch or is this a won't fix? -- nosy: +ajaksu2 stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.5 ___ Python tracker

[issue1730959] telnetlib: A callback for monitoring the telnet session

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> feature request versions: +Python 2.7 ___ Python tracker ___ ___ Pytho

[issue1727418] xmlrpclib waits indefinately

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: Would the patch from issue 1767370 help with the robustness part? -- nosy: +ajaksu2 stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.5 ___ Python tracker

[issue1726196] Windows Build Warnings

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: Is this still an issue with the new build system? -- nosy: +ajaksu2 priority: normal -> low stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.5 ___ Python tracker

[issue1191964] asynchronous Subprocess

2009-03-30 Thread Josiah Carlson
Josiah Carlson added the comment: I don't believe this should be closed. The functionality is still desired by me and others who have posted on and off since the patch was created. This patch definitely needs some love (tests mostly). -- ___ Pyth

[issue1726172] ftplib.py: IndexError in voidresp occasionally

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- nosy: +giampaolo.rodola stage: -> test needed type: -> behavior ___ Python tracker ___ ___ Python-bug

[issue1725295] Line ending bug SimpleXMLRPCServer

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue1721862] email.FeedParser.BufferedSubFile improperly handles "\r\n"

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: Confirmed on trunk. -- nosy: +ajaksu2 stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker ___ __

[issue1718017] posixpath and friends have uses that should be documented

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: normal -> low type: -> feature request versions: +Python 2.7 ___ Python tracker ___ ___ Pyth

[issue1707768] os.path.normpath changes path (chops of trailing slash)

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +patch stage: -> test needed type: -> behavior versions: +Python 2.6, Python 3.0 -Python 2.5 ___ Python tracker ___ ___

[issue1699853] locale.getlocale() output fails as setlocale() input

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> needs patch title: locale.getlocale() output fails as setlocale() input -> locale.getlocale() output fails as setlocale() input type: -> behavior versions: +Python 2.6 -Python 2.5 ___ Python tracker

[issue5614] Malloc errors in test_io

2009-03-30 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto : -- nosy: -ocean-city ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue5261] with lock fails on multiprocessing

2009-03-30 Thread Jesse Noller
Jesse Noller added the comment: Reviewed, applied in python-trunk r70783 -- resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue1683908] PEP 361 Warnings

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- resolution: -> out of date ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1705393] Select() failure (race condition)

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: Cannot verify for trunk. -- components: +Extension Modules nosy: +ajaksu2 stage: -> test needed type: -> behavior versions: +Python 2.6, Python 3.0 -Python 2.5 ___ Python tracker

[issue1706323] Updated ASTVisitor Classes

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> feature request versions: +Python 2.7 -Python 2.5 ___ Python tracker ___ _

[issue1709112] test_1686475 of test_os & pagefile.sys

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: The Modules/posixmodule.c patch needs tests. -- components: +Windows nosy: +ajaksu2 stage: -> test needed title: test_1686475 of test_os & pagefile.sys -> test_1686475 of test_os & pagefile.sys type: -> behavior versions: +Python 2.6, Python 3.0 -Pyth

[issue1704134] minidom Level 1 DOM compliance

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- nosy: +ajaksu2 stage: -> patch review type: -> feature request versions: +Python 2.7, Python 3.1 -Python 2.6 ___ Python tracker ___ _

[issue1683908] PEP 361 Warnings

2009-03-30 Thread Adam Olsen
Adam Olsen added the comment: Aye. 2.6 has come and gone, with most or all warnings applied using (I believe) a different patch. If any future work is needed it can get a new ticket. -- status: open -> closed ___ Python tracker

[issue1562822] importing threading in a thread does not work

2009-03-30 Thread Brett Cannon
Brett Cannon added the comment: So the failure stems from threading being imported by decimal in a thread itself. This is just not going to be supported as it confuses threading as to what thread was the main thread. Closing as "won't fix". -- resolution: -> wont fix status: open -> c

[issue5614] Malloc errors in test_io

2009-03-30 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Sorry, this is not related to mmap module... Forgot my comments. -- ___ Python tracker ___ ___ Py

[issue4865] system wide site-packages dir not used on Mac OS X

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: Committed a fix for this as r70778 (trunk), r70782 (3.1) -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue5614] Malloc errors in test_io

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: I don't think this is related to Python's mmap module, the message says that malloc(3) cannot mmap some extra memory space. I'll test with the older version of mmap just in case. -- ___ Python tracker

[issue1703592] have a way to ignore nonexisting locales in locale.setlocale

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: normal -> low versions: +Python 2.7, Python 3.1 -Python 2.6 ___ Python tracker ___ ___ Python

[issue1683908] PEP 361 Warnings

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: I think this one is out of date. -- components: +Interpreter Core, Library (Lib) nosy: +ajaksu2 stage: -> patch review type: -> behavior ___ Python tracker _

[issue1681974] mkdtemp fails on Windows if username has non-ASCII character

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Windows stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.5 ___ Python tracker ___ ___

[issue1694442] Failure to build on AIX 5.3

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: Jaman: is this still a problem for you? If not (and nobody else opposes), I'll close this one. -- components: +Build -None nosy: +ajaksu2 priority: normal -> low stage: -> test needed status: open -> pending type: -> compile error versions: +Python 2.6

[issue1693546] email.Message set_param rfc2231 encoding incorrect

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- assignee: -> barry nosy: +barry stage: -> test needed type: -> behavior versions: +Python 2.6, Python 3.0 ___ Python tracker ___ ___

[issue1191964] asynchronous Subprocess

2009-03-30 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' : -- nosy: +giampaolo.rodola ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue4892] Sending Connection-objects over multiprocessing connections fails

2009-03-30 Thread Jesse Noller
Jesse Noller added the comment: Before I can logically support this, I need a clear use case that supports the idea that this should be supported in the current version of multiprocessing. -- priority: normal -> low ___ Python tracker

[issue5614] Malloc errors in test_io

2009-03-30 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: >malloc: *** mmap(size=-9223372036854775808) failed Does this error occur even if you revert Modules/mmapmodule.c to r69214? I have touched this module recently (I believe I fixed only SEGV bugs, not changed behavior) so I want to know it. -- nosy:

[issue779153] bgen requires Universal Headers, not OS X dev headers

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: Although this might be seen as a bug in the Python build machinery, I'm closing this as a won't fix feature request. The Carbon bindings are deprecated and will not be updated in the future, hence the state of bgen is basically irrelevant. -- nosy:

[issue3451] Asymptotically faster divmod and str(long)

2009-03-30 Thread Pernici Mario
Pernici Mario added the comment: In this second patch to the above patch it is added the recursive division algorithm by Burnikel and Ziegler (BZ) from longobject2.diff, unmodified, to see the effect of the subquadratic algorithm; there is still a lot of work to be done on it, as Mark pointed o

[issue1004810] Carbon.File fails if server vol is mounted after launch

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: I propose closing this as won't fix, the issue is caused by a limitation in the Carbon APIs (which assume you're running an eventloop and won't notice changes when you don't). -- nosy: +ronaldoussoren resolution: -> wont fix status: open -> pending

[issue1113328] OSATerminology still semi-broken

2009-03-30 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue3451] Asymptotically faster divmod and str(long)

2009-03-30 Thread Pernici Mario
Pernici Mario added the comment: In this patch there is an implementation of the algorithm to convert numbers in strings by recursively splitting the number in half, adapted from Fredrik's div.py -- Added file: http://bugs.python.org/file13496/longformat.diff __

[issue672656] securing pydoc server

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: normal -> low stage: -> test needed type: -> security versions: +Python 2.7, Python 3.1 ___ Python tracker ___ _

[issue1681333] email.header unicode fix

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> patch review type: -> behavior versions: +Python 2.6 -Python 2.5 ___ Python tracker ___ ___

[issue1560032] confusing error msg from random.randint

2009-03-30 Thread paul rubin
paul rubin added the comment: Daniel, thanks--I didn't mean to jump on you, so I'm sorry if it came across that way. Maybe I'm a little oversensitized to this issue due to some unrelated incidents with other programs. I'll try to write a more detailed reply and maybe include a patch later (I c

[issue1685453] email package should work better with unicode

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: Link to #1681333, #4487, #1443875, #1555842, #4661, #1078919, #963906, #1379416 and #1368247. -- components: +Unicode dependencies: +Add utf8 alias for email charsets, Email.Header encodes non-ASCII content incorrectly, Unicode email address helper, emai

[issue1089624] Carbon.File.FSCatalogInfo.createDate implementation

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: Closing this as won't fix. Nobody else complained and changing this might break existing code. -- resolution: -> wont fix status: open -> closed ___ Python tracker __

[issue4962] urlparse & nfs url (rfc 2224)

2009-03-30 Thread Senthil
Changes by Senthil : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue4892] Sending Connection-objects over multiprocessing connections fails

2009-03-30 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- components: -Macintosh ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue1645148] MIME renderer: wrong header line break with long subject?

2009-03-30 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- assignee: cjw296 -> barry status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing

[issue1974] email.MIMEText.MIMEText.as_string incorrectly folding long subject header

2009-03-30 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: So astoundingly, this change has deep implications. The upshot is that it's difficult to fix this so that headers look nice for e.g. Subject headers, but so that splitting and wrapping work as expected for e.g. machine readability of Received headers. After d

[issue5039] Adjust reference-counting note

2009-03-30 Thread Georg Brandl
Georg Brandl added the comment: Committed as r70773, thanks for the patch! -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue3551] multiprocessing.Pipe terminates with ERROR_NO_SYSTEM_RESOURCES if large data is sent (win2000)

2009-03-30 Thread Jesse Noller
Jesse Noller added the comment: The if __name__ clause is actually well documented, see: http://docs.python.org/library/multiprocessing.html#windows -- ___ Python tracker ___ ___

[issue5614] Malloc errors in test_io

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: Buffer_size is set to 0x7fff in BufferedWriter_init at the end of test_constructor. I have no idea why this happens, but this definitly seems wrong to me. Debugging is rather hard at the moment because the issue goes away in the debugger. Setti

[issue1243678] httplib gzip support

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: Should this be closed in favor of #1675951? -- nosy: +ajaksu2 stage: -> patch review type: -> feature request versions: +Python 2.7, Python 3.1 -Python 2.5 ___ Python tracker __

[issue1677694] test_timeout refactoring

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Tests -None dependencies: +test_timeout updates stage: -> patch review type: -> feature request versions: +Python 2.7, Python 3.1 ___ Python tracker ___

[issue675976] mhlib does not obey MHCONTEXT env var

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: If it's a new feature, it should have a test. -- nosy: +ajaksu2 stage: -> test needed type: -> feature request versions: +Python 2.7 -Python 2.6 ___ Python tracker __

[issue1191964] asynchronous Subprocess

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: Josiah: can this be closed? -- components: +Library (Lib) -None keywords: +patch nosy: +ajaksu2 stage: -> test needed versions: +Python 2.7, Python 3.1 ___ Python tracker ___

[issue1371937] minidom namespace problems

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: Closing as issue 1621421 has better discussion and patch. -- components: +XML nosy: +ajaksu2 resolution: -> duplicate status: open -> closed superseder: -> normalize namespace from minidom type: -> behavior ___ Pyth

[issue1076515] shutil.move clobbers read-only files.

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- dependencies: +shutil.copyfile fails when dst exists read-only stage: -> test needed type: -> behavior versions: +Python 2.6 ___ Python tracker _

[issue3551] multiprocessing.Pipe terminates with ERROR_NO_SYSTEM_RESOURCES if large data is sent (win2000)

2009-03-30 Thread John Ehresman
John Ehresman added the comment: Latest version works -- question is why prior versions spawned many subprocesses. It's really another bug because prior version wasn't hitting the write length limit. -- title: multiprocessing.Pipe terminates with ERROR_NO_SYSTEM_RESOURCES if large d

[issue5616] Distutils 2to3 support doesn't have the doctest_only flag.

2009-03-30 Thread Lennart Regebro
New submission from Lennart Regebro : The run_2to3 method, and therefore also the Mixin2to3 class doesn't take a parameter for doctest_only parameter that refactor has. That means you have to do a lot of code duplication if you want to write distutil commands that handle doctest files. The fix i

  1   2   3   4   >