[issue9631] Python 2.7 installation issue for Linux Red Hat 4.1

2010-08-18 Thread Prakash Palanivel
Prakash Palanivel added the comment: After Installed the following error was through: PYTHONPATH=/usr/local/Python-2.7/lib/python2.7 \ ./python -Wi -tt /usr/local/Python-2.7/lib/python2.7/compileall.py \ -d /usr/local/Python-2.7/lib/python2.7 -f \ -x 'bad_coding|badsyn

[issue672656] securing pydoc server

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: This looks weird, a security issue with a low priority??? -- nosy: +BreamoreBoy ___ Python tracker ___

[issue9631] Python 2.7 installation issue for Linux Red Hat 4.1

2010-08-18 Thread Senthil Kumaran
Senthil Kumaran added the comment: spprakash, do the following, in your python2.7 checkout (or download): do make distclean ./configure make make install If there is any failure in make/make install of the above steps, please paste that error message and also provide the file system type (run

[issue5215] change value of local variable in debug

2010-08-18 Thread Markus Pröller
Markus Pröller added the comment: Okay, thanks for giving me the correct patch, but I still face the following problem (with the same code snippet): > c:\tst_pdb.py(14)function_3() -> print stack_3 (Pdb) l 9 function_3(stack_2) 10 11 def function_3(number): 12 stack_3

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

2010-08-18 Thread Tim Golden
Tim Golden added the comment: I can confirm that the patched regrtest runs ok on WinXP. -- ___ Python tracker ___ ___ Python-bugs-list

[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: > > Here you have a patch. It adds tests in test_sys. > > The tests are skipped on a non-ascii Python executable path because of #8611 > (see #9425). Thanks for the patch. A couple of notes:

[issue5215] change value of local variable in debug

2010-08-18 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Right, this last problem still exists with 2.7 or 3.1. Please open a new tracker item for it, and let's close this one. -- ___ Python tracker ___

[issue8622] Add PYTHONFSENCODING environment variable

2010-08-18 Thread STINNER Victor
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 seen > by Python I copied the PYTHONIOENCODING doc which doesn't mention that.

[issue9632] Remove sys.setfilesystemencoding()

2010-08-18 Thread STINNER Victor
New submission from STINNER Victor : sys.setfilesystemencoding() function is dangerous because it introduces a lot of inconsistencies: this function is unable to reencode all filenames in all objects (eg. Python is unable to find filenames in user objects or 3rd party libraries). Eg. if you ch

[issue9632] Remove sys.setfilesystemencoding()

2010-08-18 Thread STINNER Victor
Changes by STINNER Victor : -- keywords: +patch nosy: +Arfrever, lemburg, pitrou Added file: http://bugs.python.org/file18565/remove_sys_setfilesystemencoding.patch ___ Python tracker __

[issue8622] Add PYTHONFSENCODING environment variable

2010-08-18 Thread STINNER Victor
Changes by STINNER Victor : Removed file: http://bugs.python.org/file18562/pythonfsencoding.patch ___ Python tracker ___ ___ Python-bugs-list m

[issue8622] Add PYTHONFSENCODING environment variable

2010-08-18 Thread STINNER Victor
STINNER Victor added the comment: > To remove sys.setfilesystemencoding(), ... I will open a new issue done, issue #9632 -- ___ Python tracker ___ __

[issue9633] pdb go stack up/down

2010-08-18 Thread Markus Pröller
New submission from Markus Pröller : Hello, with python 2.7 I encounter the following problem: I have created the following sample script: import pdb def function_1(number): stack_1 = number function_2(stack_1) def function_2(number): stack_2 = number + 1 function_3(stack_

[issue675976] mhlib does not obey MHCONTEXT env var

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: This won't happen directly as mhlib has been removed from py3k, but presumably the patch could be reworked to apply to the mailbox module where the MH class now lives. -- nosy: +BreamoreBoy versions: +Python 3.2 -Python 2.7 ___

[issue678250] test_mmap failling on AIX

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

[issue678264] test_resource fails when file size is limited

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

[issue683938] HTMLParser attribute parsing bug

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Closed as fixed in r23322. -- nosy: +BreamoreBoy resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue9633] pdb go stack up/down

2010-08-18 Thread Éric Araujo
Éric Araujo added the comment: Thank you for the report. I don’t know pdb much, but I assume you have checked the doc to make sure this is indeed a bug. Can you test it with 3.1 and 3.2 too? Bug tracker tip: You can find if a core developer is interested in a module in Misc/maintainers.rst an

[issue755660] allow HTMLParser to continue after a parse error

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Attached a patch for py3k where the file name has changed. Doc changes could be based on the comment added to the error method in the patch. I don't think a unit test is needed but could easily be persuaded otherwise. -- keywords: +patch nosy: +Bream

[issue9631] Python 2.7 installation issue for Linux gcc-4.1.0-3 (Fedora Core 5?)

2010-08-18 Thread Dave Malcolm
Dave Malcolm added the comment: (BTW, the versioning seems slightly misleading: "(Red Hat 4.1.0-3)" refers to the version of GCC, not of the operating system. You appear to be running gcc-4.1.0-3, which I believe was shipped in Fedora Core 5. Updating "title" metadata of the bug accordingly)

[issue694374] Recursive regular expressions

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Closing because of quote from msg83993 "Another feature request that I've decided not to consider any further is recursive regular expressions. There are other tools available for that kind of thing, and I don't want the re module to go the way of Perl 6's rul

[issue706263] print raises exception when no console available

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Works fine with pythonw on 2.6 and 2.7. -- nosy: +BreamoreBoy resolution: -> out of date status: open -> closed ___ Python tracker ___ ___

[issue502236] Asynchronous exceptions between threads

2010-08-18 Thread A.M. Kuchling
A.M. Kuchling added the comment: I'll close this issue, then. Maybe something fancier needs to be built atop the AsyncExc() function to allow a single thread to terminate all other threads, but unless someone actually presents a current use case (or a PEP), there seems little to do. Please

[issue706263] print raises exception when no console available

2010-08-18 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: No, nothing changed in this aspect since python 2.2. With 2.7, I get the same error.txt file containing the "Bad file descriptor" message. -- resolution: out of date -> status: closed -> open ___ Python track

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

2010-08-18 Thread Itai i
Itai i added the comment: Hi all, I'm joining Mark's assertion - this is a real issue for me too. I've stumbled into this problem too. I have a numpy/scipy kind of application (about 6000+ lines so far) which needs to allocate alot of memory for statistics derived from "real life data" which

[issue2521] ABC caches should use weak refs

2010-08-18 Thread Daniel Stutzbach
Daniel Stutzbach added the comment: Benjamin, Thanks for the feedback. Since you only commented on the test case, may I assume that the fix itself looked good to you? I will work on revising the test case based on your comments. Since I ran into the bug while working with the ABCs in the c

[issue706406] fix bug #685846: raw_input defers signals

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Can this still be reproduced on an appropriate box or can it be closed or what? -- nosy: +BreamoreBoy ___ Python tracker ___ __

[issue2521] ABC caches should use weak refs

2010-08-18 Thread Daniel Stutzbach
Changes by Daniel Stutzbach : -- components: +Library (Lib) -Interpreter Core versions: -Python 2.6 ___ Python tracker ___ ___ Python-

[issue708007] TelnetPopen3, TelnetBase, Expect split

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Is there any interest in seeing the patch updated for py3k? Any comments from Windows users since Pexpect uses pty which is Linux only? -- nosy: +BreamoreBoy stage: -> patch review type: -> feature request versions: +Python 3.2 -Python 2.6 _

[issue706406] fix bug #685846: raw_input defers signals

2010-08-18 Thread Ray.Allen
Ray.Allen added the comment: I seems this has been fixed already, at least on my python 2.7 on linux. -- nosy: +ysj.ray ___ Python tracker ___ _

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

2010-08-18 Thread Ray.Allen
Ray.Allen added the comment: How about calling gc.collect() explicitly in the loop? -- nosy: +ysj.ray ___ Python tracker ___ ___ Py

[issue9633] pdb go stack up/down

2010-08-18 Thread Georg Brandl
Georg Brandl added the comment: The problem here is that changes in the locals are only saved back to the frame when leaving the trace function, and up/down don't do that. This could be fixed by making Pdb.curframe_locals a dictionary for all visited frames while interaction is running. I'll

[issue706263] print raises exception when no console available

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: @Amaury I tested with Windows Vista and the latest 2.6 and 2.7 maintainance releases, what did you use? -- ___ Python tracker ___

[issue2521] ABC caches should use weak refs

2010-08-18 Thread Daniel Stutzbach
Daniel Stutzbach added the comment: Attached is a new test case, based on Benjamin's comments. -- Added file: http://bugs.python.org/file18567/leak_test2.patch ___ Python tracker ___

[issue713169] test_pty fails on HP-UX and AIX when run after test_openpty

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

[issue730467] Not detecting AIX_GENUINE_CPLUSPLUS

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Can an AIX user state whether or not this is still an issue. The current patch is a one liner. A patch that looks in all the known directories was promised but never delivered. -- nosy: +BreamoreBoy stage: -> patch review type: -> behavior versions:

[issue731991] find correct socklen_t type

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Closing as no reply to msg110333. -- resolution: -> out of date status: open -> closed ___ Python tracker ___

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

2010-08-18 Thread Itai
Itai added the comment: Sure, that's what i'll do for now. Its an ok workaround for me, I was just posting to support the notion that its a bug (lets call it usability bug) and something that people out there do run into. There's also a scenerio where you couldn't use this workaround - for exam

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

2010-08-18 Thread Daniel Stutzbach
Daniel Stutzbach added the comment: Attached is a patch implementing the change agreed upon in the earlier discussion. This will allow wchar_t <-> Py_UNICODE conversions to use memcpy on systems where wchar_t and Py_UNICODE have the same size but different signs (e.g., Linux). -- ke

[issue734176] Make Tkinter.py's nametowidget work with cloned menu widgets

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: A small simple patch that I see no problems with. -- nosy: +BreamoreBoy stage: -> patch review type: -> feature request versions: +Python 3.2 -Python 2.6, Python 2.7, Python 3.0, Python 3.1 ___ Python tracker

[issue747320] rfc2822 formatdate functionality duplication

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Does this need to be addressed or can it be closed as out of date or what? -- nosy: +BreamoreBoy ___ Python tracker ___ ___

[issue748843] Let Email.Utils.parsedate use last 3 timetuple items

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: Closed as no reply to msg81501. -- nosy: +BreamoreBoy resolution: -> wont fix status: open -> closed ___ 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: > > Attached is a patch implementing the change agreed upon in the earlier > discussion. This will allow wchar_t <-> Py_UNICODE conversions to use memcpy > on systems where wchar_t and Py_

[issue749722] isinstance and weakref proxies.

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

[issue734176] Make Tkinter.py's nametowidget work with cloned menu widgets

2010-08-18 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Can someone post a script demonstrating the proposed feature? Is "clones of clones" issue mentioned by OP resolved in the latest patch? Given that nobody commented on this issue for 7 years, I am skeptical about the utility of this feature. --

[issue755670] improve HTMLParser attribute processing regexps

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: There are messages both for and against the patch which contains a unit test. Can we have a statement from a knowledgeable HTML person as to whether the patch should be accepted or rejected. -- nosy: +BreamoreBoy stage: unit test needed -> patch revie

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

2010-08-18 Thread Daniel Stutzbach
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. If SIZEOF_WCHAR_T is not defined, the preprocessor will treat it as 0 causing it

[issue761888] popen2.Popen3 and popen2.Popen4 leaks filedescriptors

2010-08-18 Thread Mark Lawrence
Changes by Mark Lawrence : -- resolution: -> out of date status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing

[issue816059] popen2 work, fixes bugs 768649 and 761888

2010-08-18 Thread Mark Lawrence
Changes by Mark Lawrence : -- resolution: -> out of date status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing

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

2010-08-18 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Is anyone still interested in moving this forward? -- ___ Python tracker ___ ___ Python-bug

[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

[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 ___ __

[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

[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 <

[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

[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

[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

[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 ___ ___

[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

[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

[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 ___

[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

[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 ___

[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

[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

[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 ___

[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

[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 _

[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

[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 ___

[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

[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

[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

[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 ___ ___

[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 ___

[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

[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

[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:

[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

[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 ___ __

[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

[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

[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 ___

[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

[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 _

[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 ___

[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 ___

[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 ___ __

[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

[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 ___ __

[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

[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: 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 : Added file: http://bugs.python.org/file18571/issue808164-py3k.patch ___ Python tracker ___ ___ Python-bugs-list

[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

[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

[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 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. --

[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 ___

[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

  1   2   >