[issue5259] smtplib is broken in Python3

2009-02-14 Thread Musashi Tamura
Musashi Tamura added the comment: The attachment is output of smtptest.py on Python 3.0. Added file: http://bugs.python.org/file13092/3.0.txt ___ Python tracker ___ _

[issue1108] Problem with doctest and decorated functions

2009-02-14 Thread Steven D'Aprano
Steven D'Aprano added the comment: Earlier I wrote: "I've applied the patch to my 2.4 installation, and it doesn't fix the issue. I'd like to request this be reopened, because I don't believe the patch works as advertised." Nevermind, I withdraw the request. I believe I was mislead due to the

[issue1097797] Encoding for Code Page 273 used by EBCDIC Germany Austria

2009-02-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: A Google search for "cp273 encoding" reveals that at least one other person needed it: http://www.stroeder.com/pylib/encodings/cp273.py -- nosy: +pitrou ___ Python tracker _

[issue5268] VMSError not documented in Doc/library/exceptions.rst

2009-02-14 Thread Mitchell Model
New submission from Mitchell Model : Lib/test/exception_hierarchy.txt shows VMSError but it is not mentioned in Doc/library/exceptions.rst -- assignee: georg.brandl components: Documentation messages: 82137 nosy: MLModel, georg.brandl severity: normal status: open title: VMSError not do

[issue812369] module shutdown procedure based on GC

2009-02-14 Thread Neil Schemenauer
Neil Schemenauer added the comment: This sounds like a nice idea. The current cleanup procedure in pythonrun.c is pretty lame since it can play havoc with __del__ methods (e.g. if they run after globals have been cleared). I've updated the patch to work with the current SVN head. Probably thi

[issue5267] Subversion problem with PythonLauncher after building 3.0 or 3.1 on Mac

2009-02-14 Thread Mitchell Model
New submission from Mitchell Model : After checking out 3.0 and 3.1 and building them on a Mac (Leopard, Intel) when I subsequently try to do "svn update" I get the error: svn: Directory 'Mac/PythonLauncher/Python Launcher.app/.svn' containing working copy admin area is missing As a result, "

[issue5266] StringIO.read(n) does not enforce requested size in newline mode

2009-02-14 Thread Antoine Pitrou
New submission from Antoine Pitrou : Or, more precisely, it returns less than the requested number of characters because characters are counted before translating newlines: >>> f = io.StringIO("a\r\nb\r\n", newline=None) >>> f.read(3) 'a\n' TextIOWrapper gets it right: >>> g = io.TextIOWrapper

[issue3871] cross and native build of python for mingw32 with distutils

2009-02-14 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: -tjreedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue850997] mbcs encoding ignores errors

2009-02-14 Thread Mark Hammond
Mark Hammond added the comment: It is still present, but I'm not sure what problems can be seen due to this so can't comment on its desirability. It would also introduce a backwards compatability concern but I've not enough experience to know how much of a problem that would be in practice eith

[issue5265] StringIO can duplicate newlines in universal newlines mode

2009-02-14 Thread Antoine Pitrou
New submission from Antoine Pitrou : This one is a bit strange: >>> f = io.StringIO("a\r\nb\r\n", newline=None) >>> f.read() 'a\nb\n' >>> f = io.StringIO("a\r\nb\r\n", newline=None) >>> f.read(6) 'a\nb\n' >>> f = io.StringIO("a\r\nb\r\n", newline=None) >>> f.read(5) 'a\n\nb\n' -- messag

[issue5264] StringIO failure when reading a chunk of text without newlines

2009-02-14 Thread Antoine Pitrou
New submission from Antoine Pitrou : >>> f = io.StringIO("a\r\n", newline=None) >>> f.read(1) Traceback (most recent call last): File "", line 1, in File "/home/antoine/py3k/__svn__/Lib/io.py", line 2007, in read res = self._decode_newlines(self._read(n), True) File "/home/antoine/py3k

[issue1085861] subprocess.Popen feature request

2009-02-14 Thread Benjamin Peterson
Benjamin Peterson added the comment: 2.6 has a terminate() method. -- nosy: +benjamin.peterson resolution: -> out of date status: open -> closed ___ Python tracker ___ __

[issue1098732] Enhance tracebacks and stack traces with vars

2009-02-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: It would certainly be horrible to enable this by default. Think about intermediate functions having 10 local variables each, most of which are totally irrelevant. -- nosy: +pitrou ___ Python tracker

[issue1098732] Enhance tracebacks and stack traces with vars

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: Maybe this could be enabled only on the interactive interpreter? Skip's patch includes tests and docs, needs updating. -- nosy: +ajaksu2 ___ Python tracker _

[issue1097797] Encoding for Code Page 273 used by EBCDIC Germany Austria

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: Looks like it was never included. I guess '"old" IBM Mainframes' is a dwindling user base, should this one be closed? -- nosy: +ajaksu2 type: -> feature request versions: +Python 2.7 ___ Python tracker

[issue1085861] subprocess.Popen feature request

2009-02-14 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed versions: +Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue1080387] Making IDLE Themes and Keys Config more Robust

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: This bug describes a 2.3 -> 2.4 transition problem. The idea of making the config system robust seems like a good RFE, if similar issues are still possible. -- nosy: +ajaksu2 stage: -> test needed title: IDLE Themes and Keys Config not Robust -> Making I

[issue1078919] Email.Header encodes non-ASCII content incorrectly

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: The proposed output has the virtue of being easier to read. -- nosy: +ajaksu2 stage: -> test needed type: -> feature request versions: +Python 2.7 -Python 2.4 ___ Python tracker

[issue5263] Error printing UTF-8 decoded text

2009-02-14 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- resolution: -> invalid status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue1100366] Frame does not receive configure event on move

2009-02-14 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker ___ ___

[issue1533164] Installed but not listed *.pyo break bdist_rpm

2009-02-14 Thread Lukas Lueg
Lukas Lueg added the comment: passing optimize=1 does not help when there is a script (...scripts=['bla.py']...) in the given distribution. The error will be thrown for bla.pyo and bla.pyc -- nosy: +ebfe ___ Python tracker

[issue1063229] not enough information in SGMLParseError

2009-02-14 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> feature request versions: +Python 2.7 -Python 2.3 ___ Python tracker ___ _

[issue1072404] Bugs in _csv module - lineterminator

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: Needs confirmation, probably a won't fix either way. -- nosy: +ajaksu2 stage: -> test needed type: -> behavior versions: +Python 2.6 ___ Python tracker _

[issue1074333] input from numeric pad always dropped when numlock off

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: Confirmed in trunk, the (80) events show in a terminal if one adds some print-based debug help. -- nosy: +ajaksu2 stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.3 ___ Python tracker

[issue5263] Error printing UTF-8 decoded text

2009-02-14 Thread Lovely Grace
Lovely Grace added the comment: Sorry guys, my goof: http://wiki.python.org/moin/PrintFails ___ Python tracker ___ ___ Python-bugs-list mailin

[issue5263] Error printing UTF-8 decoded text

2009-02-14 Thread Lovely Grace
New submission from Lovely Grace : The following code fails on the print command (see error message bellow the code). I use windows and run the code under command prompt env. import urllib.request if __name__ == "__main__": sock = urllib.request.urlopen("http://docs.python.org/3.0/library/ht

[issue4967] Bugs in _ssl object read() when a buffer is specified

2009-02-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: Bumping to critical since the io-c branch won't be merged before this is solved. -- priority: normal -> critical ___ Python tracker ___

[issue4565] Rewrite the IO stack in C

2009-02-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: Issue depends on #4967 which blocks use of memoryview objects with the _ssl module. -- assignee: amaury.forgeotdarc -> dependencies: +Bugs in _ssl object read() when a buffer is specified ___ Python tracker

[issue5261] with lock fails on multiprocessing

2009-02-14 Thread Tim Golden
Tim Golden added the comment: Problem seems to be in Modules/_multiprocessing/semaphore.c line 549 where "__enter__" is defined as an alias for semlock_acquire, as is "acquire" a few lines above. However, while "acquire" specifies METH_VARARGS | METH_KEYWORDS, "__enter__" has only METH_VARARGS

[issue4258] Use 30-bit digits instead of 15-bit digits for Python integers.

2009-02-14 Thread Mark Dickinson
Mark Dickinson added the comment: The most recent patch is out of date and no longer applies cleanly. I'm working on an update. ___ Python tracker ___ __

[issue5261] with lock fails on multiprocessing

2009-02-14 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- assignee: -> jnoller nosy: +jnoller ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue1043706] External storage protocol for large email messages

2009-02-14 Thread Jean-Paul Calderone
Changes by Jean-Paul Calderone : -- nosy: -exarkun ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue1053365] nntplib: add support for NNTP over SSL

2009-02-14 Thread Jean-Paul Calderone
Changes by Jean-Paul Calderone : -- nosy: -exarkun ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue805194] Inappropriate error received using socket timeout on Windows.

2009-02-14 Thread Jean-Paul Calderone
Changes by Jean-Paul Calderone : -- nosy: -exarkun ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue5261] with lock fails on multiprocessing

2009-02-14 Thread Tim Golden
Tim Golden added the comment: Reproduced on trunk r69621 -- nosy: +tim.golden versions: +Python 2.7 ___ Python tracker ___ ___ Python-

[issue3871] cross and native build of python for mingw32 with distutils

2009-02-14 Thread Roumen Petrov
Changes by Roumen Petrov : Removed file: http://bugs.python.org/file12943/python-trunk-20090204-MINGW.patch ___ Python tracker ___ ___ Python-b

[issue3871] cross and native build of python for mingw32 with distutils

2009-02-14 Thread Roumen Petrov
Changes by Roumen Petrov : Removed file: http://bugs.python.org/file12678/python-trunk.patch-MINGW-20090110 ___ Python tracker ___ ___ Python-b

[issue3871] cross and native build of python for mingw32 with distutils

2009-02-14 Thread Roumen Petrov
srcdir. Now distutils support srcdir on all platforms and this include win32. and to apply cleanly to trunk 2009-02-14 (after minimal cross patch - see above). Added file: http://bugs.python.org/file13089/python-trunk-20090214-MINGW.patch ___ Python tracker

[issue4258] Use 30-bit digits instead of 15-bit digits for Python integers.

2009-02-14 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- dependencies: +longobject.c: minor fixes, cleanups and optimizations ___ Python tracker ___ ___ Python

[issue5260] longobject.c: minor fixes, cleanups and optimizations

2009-02-14 Thread Gregory P. Smith
Gregory P. Smith added the comment: agreed, looks good. (and thats a good motive) -- nosy: +gregory.p.smith ___ Python tracker ___ __

[issue1105770] null source chars handled oddly

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

[issue1104249] configure doesn't set up CFLAGS properly

2009-02-14 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker ___ ___

[issue1104021] wishlist: os.feed_urandom(input)

2009-02-14 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed versions: +Python 2.7 -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list ma

[issue1103350] send/recv SEGMENT_SIZE should be used more in socketmodule

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: Any clarifications on this RFE's merit appreciated. -- nosy: +ajaksu2 type: -> feature request versions: +Python 2.7 ___ Python tracker ___ __

[issue1103213] Adding the missing socket.recvall() method

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

[issue1101399] dict subclass breaks cPickle noload()

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: Confirmed on trunk, traceback: Traceback (most recent call last): File "~/Desktop/noload.py", line 12, in u.noload() TypeError: 'NoneType' object does not support item assignment -- nosy: +ajaksu2 stage: -> test needed type: -> behavior versions

[issue1100942] Add datetime.time.strptime and datetime.date.strptime

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: Patch needs updating. -- nosy: +ajaksu2 stage: -> test needed title: datetime.strptime constructor added -> Add datetime.time.strptime and datetime.date.strptime versions: +Python 2.7 -Python 2.6 ___ Python tracker

[issue1100562] deepcopying listlike and dictlike objects

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

[issue5262] PythonLauncher considered harmfull

2009-02-14 Thread Ronald Oussoren
New submission from Ronald Oussoren : The Mac port of Python contains a binary named "PythonLauncher" which can be used as the association of ".py" and ".pyw" files. This program will launch the script (either in a Terminal window or without a window). In hindsight adding this tool was not a

[issue5259] smtplib is broken in Python3

2009-02-14 Thread kalevi
kalevi added the comment: The attached test script works fine in Python 2.6. Replace the following texts in the script: f...@gmail.com t...@gmail.com password -- nosy: +kalevi Added file: http://bugs.python.org/file13088/smtptest.py ___ Python track

[issue5261] with lock fails on multiprocessing

2009-02-14 Thread Stephen Lynch
New submission from Stephen Lynch : the following code gives a system error under python 2.6.1 import multiprocessing with multiprocessing.Lock(): pass SystemError: ..\Python\getargs.c:1413: bad argument to internal function -- components: Library (Lib) messages: 82106 nosy: stepheng

[issue1062277] Pickle breakage with reduction of recursive structures

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: Patch has test, can someone try it? I think it might be fixed already. -- nosy: +ajaksu2 type: -> feature request versions: +Python 2.7 ___ Python tracker ___

[issue1058305] HTMLParser.locatestartagend regex too stringent

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: The regex is still the same. This is one of many 'HTMLParser regex for attributes' issues. -- keywords: +easy, patch nosy: +ajaksu2 stage: -> test needed type: -> feature request versions: +Python 2.7 -Python 2.3 ___

[issue5260] longobject.c: minor fixes, cleanups and optimizations

2009-02-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: The patch looks good. -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue4626] compile() doesn't ignore the source encoding when a string is passed in

2009-02-14 Thread Benjamin Peterson
Benjamin Peterson added the comment: Here's another patch. The one problem is that it causes test_coding to fail because coding cookies are ignored and not checked to see if they are the same as the encoding of the file. It seems fine to me to just skip this test. -- keywords: +needs re

[issue1038591] Python 2.3+ socket._fileobject handles EAGAIN with data loss

2009-02-14 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> behavior versions: +Python 2.6 ___ Python tracker ___ ___ Python-bugs-

[issue1040439] Missing documentation on How To Link With libpython

2009-02-14 Thread Daniel Diniz
Changes by Daniel Diniz : -- versions: +Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue1043134] mimetypes.guess_extension('text/plain') == '.ksh' ???

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: Confirmed on trunk. -- nosy: +ajaksu2 stage: -> test needed versions: +Python 2.7 ___ Python tracker ___ _

[issue1043706] External storage protocol for large email messages

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: Patch has test. -- nosy: +ajaksu2 stage: -> patch review type: -> feature request versions: +Python 2.7 -Python 2.5 ___ Python tracker ___ __

[issue1044299] compile error with stlport

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: Does anybody else believe this is a Python issue? If so, what could/should be done about it? I'll understand lack of feedback as "go ahead and close it" :) -- nosy: +ajaksu2 type: -> behavior ___ Python tracker

[issue1047397] cgitb failures

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: Confirmed on trunk. -- keywords: +easy, patch nosy: +ajaksu2 stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker ___

[issue1047540] Turtle.py hangs Idle

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: Given that it wasn't possible to reproduce the bug in 2.4 nor 2.4, I'll close this unless someone is against that. -- nosy: +ajaksu2 stage: -> test needed type: -> behavior versions: +Python 2.6 ___ Python tracker <

[issue1049450] Solaris: EINTR exception in select/socket calls in telnetlib

2009-02-14 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.3 ___ Python tracker ___ ___

[issue1050268] rfc822.parseaddr is broken, breaks sendmail call in smtplib

2009-02-14 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed title: rfc822.parseaddr is broken, breaks sendmail call in smtplib -> rfc822.parseaddr is broken, breaks sendmail call in smtplib type: -> behavior versions: +Python 2.6 -Python 2.4 ___ Python tra

[issue1053365] nntplib: add support for NNTP over SSL

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

[issue1053687] PyOS_InputHook not called in subprocess

2009-02-14 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.5 ___ Python tracker ___ ___

[issue1054041] Python doesn't exit with proper resultcode on SIGINT

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

[issue1055864] HTMLParser not compliant to XHTML spec

2009-02-14 Thread Daniel Diniz
Changes by Daniel Diniz : -- dependencies: +HTMLParser doesn't treat endtags in

[issue995458] Does not build selected SGI specific modules

2009-02-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: Guido's answer: "Irix is long dead and we don't support it in any form or version." -- resolution: -> out of date status: open -> closed ___ Python tracker _

[issue5104] getsockaddrarg() casts port number from int to short without any warning

2009-02-14 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- resolution: -> fixed status: open -> closed versions: +Python 2.7, Python 3.0 ___ Python tracker ___

[issue5260] longobject.c: minor fixes, cleanups and optimizations

2009-02-14 Thread Mark Dickinson
New submission from Mark Dickinson : Here are various minor portability and standards-compliance fixes, optimizations and cleanups for the trunk version of Objects/longobject.c. Most of these also apply to py3k. I'll admit to an ulterior motive here: the aim is to extract all the trivial, non-

[issue991266] Cookie.py does not correctly quote Morsels

2009-02-14 Thread Zan Dobersek
Zan Dobersek added the comment: This patch adds an unicode character, converted to UTF8 as a cookie's comment and then checks if it is correctly quoted. -- keywords: +patch nosy: +zdobersek Added file: http://bugs.python.org/file13085/991266test.patch __

[issue995458] Does not build selected SGI specific modules

2009-02-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: I suspect this can be closed either as "won't fix" or "out of date". While only Irix 4 and not Irix 6 is listed in Removing support for little used platforms http://www.python.org/dev/peps/pep-0011/ I suspect Irix 6 may be close to that stage. I asked on pydev

[issue5179] subprocess leaves open fds on construction error

2009-02-14 Thread Georg Brandl
Georg Brandl added the comment: OK, Windows has 2048. Added test and fixed in r69620. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue1027570] os.stat errors when using shared drive on XP or NT

2009-02-14 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: I'll close this entry. Please reopen if something left. (ex: not work on XP or so) -- resolution: -> out of date status: open -> closed ___ Python tracker __

[issue984219] hotspot.stats.load is very slow

2009-02-14 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- resolution: -> wont fix status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing

[issue916013] Improving MacPython's IAC support

2009-02-14 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- resolution: -> rejected status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing

[issue995907] memory leak with threads and enhancement of the timer class

2009-02-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: I can't understand problem number 1 either. I suspect it is a misunderstanding by the poster, since he is talking about a "destructor of the c++ based library" and there's no c++ code in the interpreter. As for number 2, it is a legitimate feature request. Howe

[issue984219] hotspot.stats.load is very slow

2009-02-14 Thread Viktor Ferenczi
Viktor Ferenczi added the comment: I agree. Just close this as "won't fix". ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue5178] Add context manager for temporary directory

2009-02-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Maybe there should be a special flag modules can set to make them get > cleared later in the interpreter cleanup procedure. Modules could set > it if they don't create reference cycles themselves and don't hold > references to user objects. Or, perhaps we co

[issue916013] Improving MacPython's IAC support

2009-02-14 Thread hhas
hhas added the comment: As of Python 2.6/3.0, all Mac-specific modules are deprecated/eliminated from the standard library and there are no longer any plans to submit appscript for possible inclusion. This issue should be rejected and closed. ___ Python tr

[issue960325] "--require " option for configure/make (fail if building not possible)

2009-02-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: Hallvard, do you still consider this a live issue? ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue5178] Add context manager for temporary directory

2009-02-14 Thread Neil Schemenauer
Neil Schemenauer added the comment: Argh, it's like pulling a sweater thread. The stat.S_ISDIR function uses the S_IFDIR global so I would have write my own. This does not look like good maintainable code, IMO. Maybe there should be a special flag modules can set to make them get cleared late

[issue975646] tp_(get|set)attro? inheritance bug

2009-02-14 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- resolution: -> wont fix status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing

[issue5179] subprocess leaves open fds on construction error

2009-02-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: Wow, the Roundup email gateway borks code snippets: >>> import resource >>> resource.getrlimit(resource.RLIMIT_NOFILE) (1024, 1024) ___ Python tracker _

[issue5179] subprocess leaves open fds on construction error

2009-02-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Hmm, is there a way to get the current number of open file descriptors? Under Unix, you can use resource.getrlimit(): (1024, 1024) But 1024 is a very common value, so you could simply loop 1024 times if it's not too slow. Besides, you definitely don't want

[issue5179] subprocess leaves open fds on construction error

2009-02-14 Thread Georg Brandl
Georg Brandl added the comment: On second thought, if the patch is applied, there *shouldn't* be an exception. And simply running the loop for a fixed number of repetitions isn't a good test either, since different platforms may have a different maximum for open file descriptors. Hmm, is there

[issue1027570] os.stat errors when using shared drive on XP or NT

2009-02-14 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: I tried on Win2000, I cannot reproduce this bug. Probably this issue was fixed at some point. -- nosy: +ocean-city ___ Python tracker ___

[issue1036490] Extend Shelf to support unicode keys

2009-02-14 Thread Martin v. Löwis
Martin v. Löwis added the comment: It's fixed in 3.0, by means of the keyencoding argument to Shelf. It would be possible to port that back to 2.7; since no patch had been forthcoming, I'm closing this as fixed, anyway. -- resolution: -> fixed status: open -> closed __

[issue976613] socket timeout problems on Solaris

2009-02-14 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Extension Modules stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.3 ___ Python tracker ___ __

[issue979658] Improve HTML documentation of a directory

2009-02-14 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: normal -> low stage: -> test needed versions: +Python 2.7 -Python 2.6 ___ Python tracker ___

[issue993580] inspect.findsource does not call linecache.checkcache

2009-02-14 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> feature request versions: +Python 2.7 -Python 2.3 ___ Python tracker ___ __

[issue995458] Does not build selected SGI specific modules

2009-02-14 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Extension Modules type: -> behavior versions: +Python 2.6 -Python 2.3 ___ Python tracker ___ _

[issue995907] memory leak with threads and enhancement of the timer class

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: Can't quite understand what the problem is supposed to be, comments? -- nosy: +ajaksu2 stage: -> test needed type: -> feature request versions: +Python 2.7 -Python 2.3 ___ Python tracker

[issue995956] TclError with intel's hypertheading

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: Will close unless OP provides more feedback or someone else can confirm. -- nosy: +ajaksu2 stage: -> test needed type: -> behavior versions: +3rd party, Python 2.6 -Python 2.3 ___ Python tracker

[issue1001150] hotspot profiler does not work correctly on P4 CPUs with HT

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: Will close unless OP provides more feedback or someone else opposes. -- components: +Extension Modules nosy: +ajaksu2 priority: normal -> low type: -> behavior versions: +3rd party, Python 2.6 ___ Python tracker

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

2009-02-14 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.3 ___ Python tracker ___ ___

[issue1006238] cross compile patch

2009-02-14 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> feature request versions: +Python 2.7 -Python 2.3 ___ Python tracker ___ _

[issue1007223] SGI (IRIX6.5.24) Problems building nismodule.c

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: Will close unless OP provides more feedback or someone else can follow through. -- nosy: +ajaksu2 priority: normal -> low stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker

[issue1011894] PyDoc does not support ZIP

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: Fixed, e.g. revision 45510. -- components: +Library (Lib) -None nosy: +ajaksu2 resolution: -> out of date status: open -> closed type: -> feature request ___ Python tracker

  1   2   3   >