[issue9638] remove dead code from py3k imaplib

2010-08-18 Thread Mark Lawrence
New submission from Mark Lawrence : The title says it all. -- files: imaplibpy3k.diff keywords: patch messages: 114331 nosy: BreamoreBoy priority: normal severity: normal stage: patch review status: open title: remove dead code from py3k imaplib versions: Python 3.1, Python 3.2 Added fil

[issue917120] imaplib: incorrect quoting in commands

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: I agree with Dan's comment in msg112741 about dead code so this only applies to 2.7. I'll raise a new issue to get the dead code removed from py3k. -- nosy: +BreamoreBoy stage: unit test needed -> patch review ___ P

[issue904498] threading docs, start error should be specified

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: The docs for start() state "This method will raise a RuntimeException if called more than once on the same thread object." -- nosy: +BreamoreBoy resolution: -> out of date status: open -> closed ___ Python tracker

[issue903339] OpenVMS file system and UNIVERSAL_NEWLINES support

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: I'll close this in a couple of weeks unless anyone objects. -- nosy: +BreamoreBoy status: open -> pending ___ Python tracker ___ __

[issue902151] Thread start - strange error under Cygwin

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: I'll close this in a couple of weeks unless someone shows an interest in running with it. -- nosy: +BreamoreBoy status: open -> pending versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker

[issue2001] Pydoc interactive browsing enhancement

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: I've closed #902061 as a duplicate of this, but please keep in mind msg75324 from that issue. -- ___ Python tracker ___

[issue902061] pydoc insists upon producing file: URLs

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Closed as a duplicate of #2001, but please keep in mind msg75324. -- nosy: +BreamoreBoy resolution: -> duplicate status: open -> closed ___ Python tracker ___

[issue901727] extra_path kwarg to setup() undocumented

2010-08-18 Thread Mark Lawrence
Changes by Mark Lawrence : -- assignee: tarek -> d...@python nosy: +d...@python stage: -> patch review versions: +Python 3.2 -Python 2.6, Python 2.7, Python 3.0 ___ Python tracker

[issue894936] Have a split corresponding with os.path.join

2010-08-18 Thread Senthil Kumaran
Senthil Kumaran added the comment: Mark, +1 objection against closing this. -- nosy: +orsenthil status: pending -> open ___ Python tracker ___ _

[issue900092] hotshot.stats.load fails with AssertionError

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Closing as no reply to msg110827. -- resolution: -> wont fix status: open -> closed ___ Python tracker ___ ___

[issue896330] pyconfig.h is not placed in --includedir

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Is this still a problem, sorry I don't have a box to test it on? -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker ___

[issue6822] Error calling .storlines from ftplib

2010-08-18 Thread Ayman
Ayman added the comment: I do not agree with Antoine. For binary transfer, another method is called, and it does work fine. However, storelines would be called for ASCII mode, in which encoding and decoding should be done by the FTP program. ASCII mode would translate files, so a file load

[issue894936] Have a split corresponding with os.path.join

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: I'll close this in a couple of weeks as won't fix unless anyone objects. -- nosy: +BreamoreBoy status: open -> pending versions: -Python 2.7 ___ Python tracker __

[issue9637] docs do not say that urllib uses HTTP_PROXY

2010-08-18 Thread Kirikaza
New submission from Kirikaza : In practice urllib reads HTTP_PROXY firstly and then if HTTP_PROXY is empty urllib reads http_proxy. Documentation (http://docs.python.org/library/urllib.html) says nothing about HTTP_PROXY. Maybe it affects all the versions of Python. -- assignee: d...@

[issue892902] problem with pickling newstyle class instances

2010-08-18 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list m

[issue892902] problem with pickling newstyle class instances

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: This is still a problem with 2.6 and 2.7. I don't know how to test this with py3k as cPickle doesn't exist, can someone advise, thanks. -- nosy: +BreamoreBoy ___ Python tracker

[issue5027] xml namespace not understood by xml.sax.saxutils.XMLGenerator

2010-08-18 Thread Troy J. Farrell
Troy J. Farrell added the comment: Hi guys. I'd like to take a moment to remind everyone that this issue has a small patch with two tests and comments. Please don't let it get lost. :) Thanks, Troy -- ___ Python tracker

[issue706406] fix bug #685846: raw_input defers signals

2010-08-18 Thread Michael Stone
Michael Stone added the comment: Wow, you wait 3/4 of a decade or so and the status of these bugs does tend to change on you. I'm not sure it's fixed, but it is different. Here's a test script for you: import readline import signal def handle(a,b): print "received signal" signal.signal(s

[issue747320] rfc2822 formatdate functionality duplication

2010-08-18 Thread Shashwat Anand
Changes by Shashwat Anand : -- nosy: +l0nwlf ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

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

2010-08-18 Thread STINNER Victor
STINNER Victor added the comment: I found this problem while running test_os with python -bb: there is an error on os.get_exec_path() because this function checks if b'PATH' key exists in the input dictionary. Extract of the function: def get_exec_path(env=None): if env is None: e

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

2010-08-18 Thread STINNER Victor
New submission from STINNER Victor : With python3 -bb: {'key': 'value'}[b'key'] raises a BytesWarning, but {'key': 'value'}[b'missing_key'] doesn't. The warning is unexpected here because it's an implicit comparaison (I mean, different than an explicit: 'key' == b'key'), we cannot check that t

[issue886488] WinPython 2.3.3 crashes using popen2 to spawn lots of child

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Can this be closed as popen2 is deprecated? -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python

[issue879399] socket line buffering

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: I'm just wondering if the original code could be the cause of subtle bugs with socket.py, anyone? (I'm no sockets guru). There's a proposed inline patch that's never been implemented, what do you (plural) make of it?. -- nosy: +BreamoreBoy stage: unit

[issue877121] configure detects incorrect compiler optimization

2010-08-18 Thread R. David Murray
R. David Murray added the comment: I agree, it is the job of the autotools to handle system portability issues such as this, and thus this can be considered a fixable bug. However, it is the kind of thing that is only going to get fixed if someone whom it affects can propose a patch, since I dou

[issue877904] freeze: problems excluding site

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: I can't see this happening after 6 1/2 years, feel free to reopen if you want to work on this. -- resolution: -> wont fix status: open -> closed ___ Python tracker _

[issue877121] configure detects incorrect compiler optimization

2010-08-18 Thread John Levon
John Levon added the comment: Even worse, a nasty hack was added just for Intel's compiler as seen in http://bugs.python.org/issue1162001 -- ___ Python tracker ___

[issue822005] Carbon.CarbonEvt.ReceiveNextEvent args wrong

2010-08-18 Thread Mark Lawrence
Changes by Mark Lawrence : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue877121] configure detects incorrect compiler optimization

2010-08-18 Thread John Levon
John Levon added the comment: That's a little abrupt. Whilst it would be nice if the compiler had a correct return value, it occurs with multiple compilers, and I pointed you to a suitable workaround Python could employ. Even if Studio gets fixed, there are previous releases out there for a lo

[issue877121] configure detects incorrect compiler optimization

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: This is a Sun Studio problem not a Python problem. -- nosy: +BreamoreBoy resolution: -> invalid status: open -> closed ___ Python tracker ___

[issue9516] sysconfig: $MACOSX_DEPLOYMENT_TARGET mismatch: now "10.3" but "10.5" during configure

2010-08-18 Thread Sridhar Ratnakumar
Sridhar Ratnakumar added the comment: On 2010-08-17, at 9:01 PM, Ronald Oussoren wrote: > I now understand why my script fails, and it is caused by this issue. > > The sysconfig.py code has another major issue: the use of os.putenv. This > changes the environment, without changing os.environ.

[issue868571] HTTPResponse.read(amt) fails when response length is UNKNOWN

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Closed as svn blame shows this is hopelessly out of date. -- nosy: +BreamoreBoy resolution: -> out of date status: open -> closed ___ Python tracker _

[issue822005] Carbon.CarbonEvt.ReceiveNextEvent args wrong

2010-08-18 Thread Ned Deily
Ned Deily added the comment: Carbon does not exist in Python 3. There's no need to wait to close this issue. -- nosy: +ned.deily status: pending -> open versions: -Python 3.1, Python 3.2 ___ Python tracker

[issue9635] RFE(patch): add Py_BREAKPOINT and sys.breakpoint hooks

2010-08-18 Thread Dave Malcolm
Dave Malcolm added the comment: > Note that when running on Linux when _not_ under a debugger, the > default for SIGTRAP is to get a coredump: > Trace/breakpoint trap (core dumped) > so people should be strongly discouraged from adding these calls to > their code. Looks like Windows' DebugBre

[issue812750] OSA support for properties broken

2010-08-18 Thread Ned Deily
Ned Deily added the comment: Suggest a different wording to reflect that the 3rd-party appscript package has become the de facto standard for AppleScript support, so something like: -stopped, and a replacement is expected for Python 2.5. +stopped. For more up-to-date implementation of AppleScr

[issue850482] Enhance frame handing in warnings.warn()

2010-08-18 Thread Mark Lawrence
Changes by Mark Lawrence : -- stage: needs patch -> patch review versions: +Python 3.2 -Python 2.7 ___ Python tracker ___ ___ Python-

[issue9635] RFE(patch): add Py_BREAKPOINT and sys.breakpoint hooks

2010-08-18 Thread Dave Malcolm
New submission from Dave Malcolm : It's sometimes useful to be able to programatically inject a breakpoint when debugging CPython. For example, sometimes you want a conditional breakpoint, but the logic involved is too complex to be expressed in the debugger (e.g. runtime complexity of evalua

[issue849097] Request: getpos() for sgmllib

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Anyone interested in this? I found the patch unreadable but YMMV. -- nosy: +BreamoreBoy ___ Python tracker ___ ___

[issue846817] control-c is being sent to child thread rather than main

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Closed as no reply to msg81880. -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list m

[issue845560] imaplib: traceback from _checkquote with empty string

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: The patch is more trouble than it's worth because it's hopelessly out of date. I think this needs a new patch if it's still relevant or else it should be closed. -- ___ Python tracker

[issue843590] 'macintosh' encoding alias for 'mac_roman'

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: @Marc-Andre as there's no comments since your last post would you like to take this forward, cheers. -- nosy: +BreamoreBoy stage: -> patch review versions: +Python 3.2 ___ Python tracker

[issue837046] pyport.h redeclares gethostname() if SOLARIS is defined

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: I'll close in a couple of weeks unless someone states this is still a problem. -- nosy: +BreamoreBoy status: open -> pending ___ Python tracker ___

[issue836035] strftime month name is encoded somehow

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Closed as no reply to msg107343. -- nosy: +BreamoreBoy resolution: -> out of date status: open -> closed ___ Python tracker ___ __

[issue834840] Unhelpful error message from cgi module

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Closed as no reply to msg109263. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue834461] simple bsddb interface potential for deadlock with threads

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Closed as bsddb has been deprecated in 2.x and removed from py3k. -- nosy: +BreamoreBoy resolution: -> out of date status: open -> closed ___ Python tracker _

[issue832159] C++ extensions using SWIG and MinGW

2010-08-18 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list m

[issue828450] sdist generates bad MANIFEST on Windows

2010-08-18 Thread Mark Lawrence
Changes by Mark Lawrence : -- type: -> behavior versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.5, Python 2.6 ___ Python tracker ___ ___

[issue822005] Carbon.CarbonEvt.ReceiveNextEvent args wrong

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: As Carbon is deprecated and the resolution is already won't fix I'll close this in a couple of weeks unless anyone objects. -- nosy: +BreamoreBoy status: open -> pending versions: +Python 3.1, Python 3.2 -Python 2.6

[issue7647] Add statvfs flags to the posix module

2010-08-18 Thread A.M. Kuchling
A.M. Kuchling added the comment: Committed to 3.2 in rev. 84188; thanks, Adam! -- resolution: -> accepted status: open -> closed ___ Python tracker ___ _

[issue814253] Grouprefs in lookbehind assertions

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: I've deliberately changed the stage to patch review and the version to 3.2 to highlight the fact that a lot of work will be needed to get the new regex engine into the standard library. Feel free to change these as is seen fit. -- nosy: +BreamoreBoy s

[issue8863] Segfault handler: display Python backtrace on segfault

2010-08-18 Thread STINNER Victor
STINNER Victor added the comment: dmalcolm asked if it would be possible to display the Python backtrace on Py_FatalError(). I don't know: Py_FatalError() is usually called when Python internals are broken. But well, segfaults do also usually occurs when something is broken :-) -- _

[issue747320] rfc2822 formatdate functionality duplication

2010-08-18 Thread R. David Murray
R. David Murray added the comment: It still needs to be addressed. I'm marking it for 3.2 but I doubt it will get addressed before 3.3 in reality. I also made the type 'performance' since we have no 'refactoring' type. -- nosy: +r.david.murray stage: -> needs patch type: -> perfor

[issue812750] OSA support for properties broken

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: All that is needed is the doc patch to be applied and the issue closed. Or have I missed something? -- assignee: jackjansen -> d...@python nosy: +BreamoreBoy, d...@python stage: unit test needed -> patch review ___

[issue9634] Add timeout parameter to Queue.join()

2010-08-18 Thread Raymond Hettinger
Raymond Hettinger added the comment: I will leave this open for a while. It may be that it is a good idea and that some good use cases will emerge to inform a correct design. In the meantime, it would be great if you could post your subclass to the ASPN Cookbook to collect feedback. --

[issue812369] module shutdown procedure based on GC

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: #1545463 has been reopened with comments about being used as a stop gap. Possibly review and implementation of the patch here would be a better option, sorry it's over my head. -- versions: +Python 3.2 ___ Python t

[issue9634] Add timeout parameter to Queue.join()

2010-08-18 Thread Kelly Lucas
Kelly Lucas added the comment: This is easy enough to implement by subclassing the Queue class and overriding join(), so it's not a big deal. Just seems like it would be a nice thing to have. -- ___ Python tracker

[issue9634] Add timeout parameter to Queue.join()

2010-08-18 Thread Raymond Hettinger
Raymond Hettinger added the comment: One of the provided links is duplicate (repost from StackOverflow). None of the links offer use cases which can be used to inform the design (i.e. is this the correct approach, should a timeout raise a RuntimeError like Condition.wait() does, should a tim

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

2010-08-18 Thread Daniel Stutzbach
Changes by Daniel Stutzbach : Added file: http://bugs.python.org/file18571/issue808164-py3k.patch ___ Python tracker ___ ___ Python-bugs-list

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

2010-08-18 Thread Daniel Stutzbach
Daniel Stutzbach added the comment: Here is the py3k version of the patch -- ___ Python tracker ___ ___ Python-bugs-list mailing lis

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

2010-08-18 Thread Daniel Stutzbach
Changes by Daniel Stutzbach : -- keywords: +needs review, patch stage: unit test needed -> patch review Added file: http://bugs.python.org/file18570/issue808164-27.patch ___ Python tracker

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

2010-08-18 Thread Daniel Stutzbach
Daniel Stutzbach added the comment: I suspect that it's not possible. I'm uploading patches that fix the .close method to avoid referencing globals that might be None during interpreter shutdown. Since the .close method has changed significantly in py3k, I'm uploading separate patches for py

[issue8423] tiger buildbot: test_pep277 failures

2010-08-18 Thread STINNER Victor
STINNER Victor added the comment: #8207 was the same issue and r79426 (for trunk and r79426 in py3k) was supposed to fix it. -- ___ Python tracker ___ __

[issue9433] regrtest.py -j 2 doesn't work on Windows: remove close_fds=True on Windows

2010-08-18 Thread STINNER Victor
STINNER Victor added the comment: No, thank *you*, Antoine :-) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue8622] Add PYTHONFSENCODING environment variable

2010-08-18 Thread STINNER Victor
STINNER Victor added the comment: Commited to 3.2 as r84182. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue809846] bdist_wininst doesn't clean up read-only files in build dir

2010-08-18 Thread Éric Araujo
Changes by Éric Araujo : -- title: distutils/bdistwin32 doesn't clean up RO files properly -> bdist_wininst doesn't clean up read-only files in build dir ___ Python tracker ___

[issue5737] add Solaris errnos

2010-08-18 Thread Antoine Pitrou
Antoine Pitrou added the comment: I don't have a Solaris machine to test, but the patch is straightforward enough. I've committed it in r84179. Thank you! -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___

[issue9634] Add timeout parameter to Queue.join()

2010-08-18 Thread Antoine Pitrou
Antoine Pitrou added the comment: We already have an optional timeout on threading.Thread.join(), which I suppose means that people need/want that feature. -- nosy: +pitrou ___ Python tracker _

[issue9433] regrtest.py -j 2 doesn't work on Windows: remove close_fds=True on Windows

2010-08-18 Thread Antoine Pitrou
Antoine Pitrou added the comment: Ok, I've committed the change in r84176 (py3k) and r84178 (2.7). Thank you! -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue1545463] New-style classes fail to cleanup attributes

2010-08-18 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: This is superseded by issue812369, but as a stop-gap measure, I don't see any downside of applying gc-import.patch. -- assignee: -> belopolsky ___ Python tracker ___

[issue1545463] New-style classes fail to cleanup attributes

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Reopened because the history shows comments and patches months after it was set to closed and won't fix, see msg61886. -- nosy: +BreamoreBoy resolution: wont fix -> status: closed -> open ___ Python tracker

[issue809846] distutils/bdistwin32 doesn't clean up RO files properly

2010-08-18 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 2.7, Python 3.1, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list

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

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Can someone reply to Daniel Stutzbach's query in msg104541, thanks. -- nosy: +BreamoreBoy ___ Python tracker ___ __

[issue9634] Add timeout parameter to Queue.join()

2010-08-18 Thread Kelly Lucas
Kelly Lucas added the comment: Here are a few that I saw: http://stackoverflow.com/questions/1564501/add-timeout-argument-to-pythons-queue-join http://www.eggheadcafe.com/software/aspnet/36145181/max-time-threads.aspx http://efreedom.com/Question/1-1564501/Add-timeout-argument-to-python-s-Que

[issue805194] Inappropriate error received using socket timeout

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: I've tried reproducing this on Windows Vista but sorry I can't make any sense out of it. I've assumed that a unit test can be based around code given in msg18142. -- components: +Library (Lib) -Windows nosy: +BreamoreBoy stage: -> needs patch title:

[issue672656] securing pydoc server

2010-08-18 Thread Senthil Kumaran
Senthil Kumaran added the comment: As the pydoc server "advertises" that it is running from localhost in both CLI and GUI, it is best to bind the socket to 'localhost' instead of '' (which would bind it to all the interfaces). So, a simple fix for this issue, which will remove the security co

[issue802310] tkFont may reuse font names

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Patch is really simple and looks ok to me, can we get this committed please. -- nosy: +BreamoreBoy stage: -> patch review type: -> behavior versions: +Python 2.7, Python 3.1, Python 3.2 ___ Python tracker

[issue853507] socket.recv() raises MemoryError exception (WindowsXP ONLY)

2010-08-18 Thread geremy condra
geremy condra added the comment: I can sporadically reproduce this on Linux as well, repeatedly passing values larger than 2**20 to recv. Doesn't seem to happen with regularity, but I have better than 11Gb of unused RAM on hand. Is there a good reason for this? -- nosy: +debatem1 ___

[issue798876] windows sys.path contains nonexistant directory

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Still an issue in 2.6, 2.7, 3.1 and 3.2. -- nosy: +BreamoreBoy versions: +Python 2.7 -Python 2.6 ___ Python tracker ___ ___

[issue8622] Add PYTHONFSENCODING environment variable

2010-08-18 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: STINNER Victor wrote: > > STINNER Victor added the comment: > >> The command line -h explanation is missing from the patch. > > done > >> The documentation should mention that the env var is only >> read once; subsequent changes to the env var are not s

[issue1524938] PEP MemoryError with a lot of available memory gc not called

2010-08-18 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : Removed file: http://bugs.python.org/file18568/unnamed ___ Python tracker ___ ___ Python-bugs-list mailing

[issue9634] Add timeout parameter to Queue.join()

2010-08-18 Thread Raymond Hettinger
Raymond Hettinger added the comment: FWIW, if you want to do other tasks in a main thread and need to check on the status task completion in worker threads, you can already loop on: while q.unfinished_tasks: do_other_fun_stuff() q.join() # this shouldn't block anymore

[issue9634] Add timeout parameter to Queue.join()

2010-08-18 Thread Raymond Hettinger
Raymond Hettinger added the comment: Can you provide links to the other requests? This seems to be at odds with the whole premise of what Queue.join() is trying to do (wait until all worker threads have marked their tasks as done). -- assignee: -> rhettinger nosy: +rhettinger ___

[issue1524938] PEP MemoryError with a lot of available memory gc not called

2010-08-18 Thread Martin v . Löwis
Martin v. Löwis added the comment: Anybody *really* interested in this issue: somebody will need to write a PEP, get it accepted, and provide an implementations. Open source is about scratching your own itches: the ones affected by a problems are the ones which are also expected to provide so

[issue798520] os.popen with invalid mode differs on Windows and POSIX

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Closed as os.popen deprecated in favour of subprocess.popen. -- nosy: +BreamoreBoy resolution: -> wont fix status: open -> closed ___ Python tracker _

[issue592703] HTTPS does not handle pipelined requests

2010-08-18 Thread Senthil Kumaran
Senthil Kumaran added the comment: This needs investigation. Don't close. -- nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs

[issue9634] Add timeout parameter to Queue.join()

2010-08-18 Thread Brian Curtin
Changes by Brian Curtin : -- stage: -> needs patch type: -> feature request versions: +Python 3.2 -Python 3.1 ___ Python tracker ___

[issue9634] Add timeout parameter to Queue.join()

2010-08-18 Thread Kelly Lucas
Changes by Kelly Lucas : -- versions: +Python 3.1 -Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue793069] Add --remove-source option

2010-08-18 Thread Éric Araujo
Éric Araujo added the comment: New features go into distutils2, not distutils. I’m -0 on this one. -- components: +Distutils2 -Distutils versions: +Python 2.5, Python 2.6, Python 2.7, Python 3.1 ___ Python tracker

[issue793069] Add --remove-source option

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: I don't see this as particularly useful but other opinions are welcome. -- nosy: +BreamoreBoy versions: -Python 2.7, Python 3.1 ___ Python tracker ___

[issue9634] Add timeout parameter to Queue.join()

2010-08-18 Thread Kelly Lucas
New submission from Kelly Lucas : I've seen quite a few people requesting to add a timeout value to the Queue.join() method, as it seems like a nice feature to have when waiting for queue's to finish. Please add a feature so that Queue.join() will issue a self.all_tasks_done.release() when th

[issue788931] resolving relative paths for external entities with xml.sax

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: I'll close in a couple of weeks unless someone has a good reason to keep it open. -- nosy: +BreamoreBoy status: open -> pending ___ Python tracker ___

[issue786827] IDLE starts with no menus (Cygwin)

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Is this still an issue with later versions of Python and Cygwin? -- nosy: +BreamoreBoy stage: unit test needed -> needs patch versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker

[issue783528] Inconsistent results with super and __getattribute__

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Closed as no response to msg81870. -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-bugs-lis

[issue775321] plistlib error handling

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Closing as no reply to msg110335. -- resolution: -> wont fix status: open -> closed ___ Python tracker ___ ___

[issue767645] incorrect os.path.supports_unicode_filenames

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: There are at least three messages stating that os.path.supports_unicode_filenames should go so can someone please provide a definitive statement regarding its future. -- nosy: +BreamoreBoy ___ Python tracker

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

2010-08-18 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: Daniel Stutzbach wrote: > > Daniel Stutzbach added the comment: > > Thanks. I dug into that a little just now, and it turns out to happen > automatically. > > If ./configure doesn't define HAVE_WCHAR_H then it also will not define > SIZEOF_WCHAR_T. I

[issue762920] API Functions for PyArray

2010-08-18 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- resolution: out of date -> rejected ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue749722] isinstance and weakref proxies.

2010-08-18 Thread Benjamin Peterson
Benjamin Peterson added the comment: It would be possible now, though perhaps inadvisable, to proxy isinstance and issubclass. -- nosy: +benjamin.peterson resolution: out of date -> status: closed -> open versions: +Python 3.2 ___ Python tracker <

[issue766910] fix one or two bugs in trace.py

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Is there any interest in this issue? -- nosy: +BreamoreBoy type: -> behavior versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.3 ___ Python tracker

[issue762920] API Functions for PyArray

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Closed as no reply to msg106638. -- nosy: +BreamoreBoy resolution: -> out of date status: open -> closed ___ Python tracker ___ __

[issue708007] TelnetPopen3, TelnetBase, Expect split

2010-08-18 Thread Guido van Rossum
Changes by Guido van Rossum : -- nosy: -gvanrossum ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

  1   2   >