[issue11449] tarfile tries to file_.tell() even when creating a new archive

2011-03-08 Thread Ned Deily
Changes by Ned Deily : -- nosy: +lars.gustaebel ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue1706039] Added clearerr() to clear EOF state

2011-03-08 Thread Scott Dial
Scott Dial added the comment: I've updated the patch to apply to the current tip. (This patch was an opportunity for me to update to an Hg workflow.) Alexander, I disagree with you about the tests. The unittests use the exact same pattern/model that testIteration uses. I find your complaint t

[issue11441] compile() raises SystemError if called from except clause

2011-03-08 Thread Daniel Urban
Daniel Urban added the comment: > Why is the exception normalized at the end? I suppose it's because > when value is an exception instance, it's replaced by a tuple, but the > original value has to be recreated at the end. So in some cases, the > SyntaxError object is created twice... > > If PyE

[issue10907] OS X installer: warn users of buggy Tcl/Tk in OS X 10.6

2011-03-08 Thread Tom Loredo
Tom Loredo added the comment: Ned- Thanks a lot for the clarifications. Both the tracker and modified web page have cleared things up for me. > "* No recommended or alternate Tcl/Tk is indicated for 32/64 on 10.6. But > the 2.7.2 patched README indicates > ActiveTcl-8.5.9 will work. Will i

[issue11445] python.exe on OS X shared-llbrary build erroneously linked to MacPorts python library

2011-03-08 Thread Ned Deily
Changes by Ned Deily : -- components: +Macintosh nosy: +ronaldoussoren stage: -> needs patch title: Something changed w.r.t. /pythonN.M/site-packages in the Hg switch -> python.exe on OS X shared-llbrary build erroneously linked to MacPorts python library

[issue11406] There is no os.listdir() equivalent returning generator instead of list

2011-03-08 Thread Марк Коренберг
Марк Коренберг added the comment: > -1 on going back through blah/xblah all over again. Originally, I want return value of listdir to be changed from list to generator. But next, I thought about compatibility. It will break some code. For example, SimpleHTTPServer: list = os.listdir(path) li

[issue10690] IDLE Crash when running/saving Module

2011-03-08 Thread Ned Deily
Ned Deily added the comment: Now that ActiveState has released a version of Tcl/Tk 8.5 (8.5.9.2) for Mac OS X that is also an Aqua Cocoa Tk (like the Apple-supplied Tk 8.5.7 in 10.6) and supports 64-bit, versions of Python linked with the new ActiveTcl 8.5.9 do not display the problem reporte

[issue11406] There is no os.listdir() equivalent returning generator instead of list

2011-03-08 Thread Martin v . Löwis
Martin v. Löwis added the comment: > Can't we simply add os.xlistdir() leaving listdir() as is? Only if an advantage can be demonstrated. in a realistic application. -- ___ Python tracker

[issue10907] OS X installer: warn users of buggy Tcl/Tk in OS X 10.6

2011-03-08 Thread Ned Deily
Ned Deily added the comment: "* My impression was that Python's tkinter figures out what Tcl/Tk to link to at build time, not runtime. The table on the web site suggests I can use a pre-built Python with an ActiveTcl that I install myself later. Is this correct? If so, does ActiveTcl have

[issue10537] OS X IDLE 2.7 from 64-bit installer hangs when you paste something.

2011-03-08 Thread Ned Deily
Ned Deily added the comment: Now that ActiveState has released a version of Tcl/Tk 8.5 (8.5.9.2) for Mac OS X that is also an Aqua Cocoa Tk (like the Apple-supplied Tk 8.5.7 in 10.6) and supports 64-bit, versions of Python linked with the new ActiveTcl 8.5.9 do not display the problem reporte

[issue3722] print followed by exception eats print with doctest

2011-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: For the purpose of this tracker, a 'bug' (behavior issue) is a discrepancy between doc and behavior. Micro ('bugfix') releases fix such discrepancies, which are all unintentional. Every feature request addresses what someone considers a 'design bug'. Micro r

[issue11449] tarfile tries to file_.tell() even when creating a new archive

2011-03-08 Thread Dan Stromberg
New submission from Dan Stromberg : The attached file demonstrates the problem in 2.5, 2.5, 2.7, 3.0, 3.1 and 3.2. In short, I believe when you're creating a new tar archive (say, to a pipe), there should be no need for a file_.tell() (which blows up when it's a pipe). I have a workaround, as

[issue9384] Tkinter windows pop under the terminal in OSX

2011-03-08 Thread Ned Deily
Ned Deily added the comment: The placement of Tk windows is dependent on the version of Tk and platform window manager. The Aqua Tk version on Mac OS X run as a separate GUI application process and so, as is customary, the focus and window stacking does not change when it is launched. The p

[issue11445] Something changed w.r.t. /pythonN.M/site-packages in the Hg switch

2011-03-08 Thread Skip Montanaro
Skip Montanaro added the comment: > Any idea why --enable-shared didn't hose up my svn sandbox build? I take that back. I looked in config.status. I didn't use --enable-shared in my svn sandbox build. I misread the output of grep. So, it's clearly the --enable-shared that's the culprit. Th

[issue7867] Proposed FAQ entry on pass-by-? semantics and the meaning of 'variable' in python

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue4216] subprocess.Popen hangs at communicate() when child exits

2011-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: Closing as suggested by Ross -- nosy: +terry.reedy resolution: -> rejected status: open -> closed versions: +Python 3.3 -Python 2.7, Python 3.1 ___ Python tracker

[issue11445] Something changed w.r.t. /pythonN.M/site-packages in the Hg switch

2011-03-08 Thread Skip Montanaro
Skip Montanaro added the comment: Ned> No doubt you can work around it by removing the --enable-shared Ned> and/or removing the MacPorts Python2.7 from the picture. I don't rightly recall why I use --enable-shared, but hopefully I can get rid of it. MacPorts must have installed Python 2.7

[issue11007] stack tracebacks should give the relevant class name

2011-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am not sure that traceback changes should be made in bug-fix releases, though it is a moot point until a change is ready for 3.3. That said, having a bit more info in tracebacks so they can more often be understood without looking through possibly many sour

[issue4819] Misc/cheatsheet needs updating

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue9045] 2.7rc1: 64-bit OSX installer is not built with 64-bit tkinter

2011-03-08 Thread Ned Deily
Ned Deily added the comment: The 2.7.1 python.org 64-/32-bit installer was changed to be built with a deployment target of 10.6 and linked with the Apple-supplied Cocoa Tk 8.5.7. Now that ActiveState has released a 64-bit version of Cocoa Tk 8.5 and one that is much more stable than the curr

[issue11406] There is no os.listdir() equivalent returning generator instead of list

2011-03-08 Thread Brian Curtin
Brian Curtin added the comment: -1 on going back through blah/xblah all over again. -- nosy: +brian.curtin ___ Python tracker ___ ___

[issue11406] There is no os.listdir() equivalent returning generator instead of list

2011-03-08 Thread Vetoshkin Nikita
Vetoshkin Nikita added the comment: Can't we simply add os.xlistdir() leaving listdir() as is? -- ___ Python tracker ___ ___ Python-b

[issue11448] docs for HTTPConnection.set_tunnel are ambiguous

2011-03-08 Thread Ryan Kelly
Ryan Kelly added the comment: Sorry, "endpoint" is just a noun that seemed to fit for me, I've no idea if there is a standard term for this. Perhaps "origin server" if you follow the terminology from the RFC? By way of example, suppose I'm running a proxy on localhost:3128 and I want to tun

[issue1528154] New sequences for Unicode groups and block ranges needed

2011-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: Is there a practical issue left here? Mathew says his regex module does as requested, but adding that to the stdlib is a separate issue. Martin would like an implementation of Unicode TR18, but that is also another issue. -- nosy: +terry.reedy version

[issue7769] SimpleXMLRPCServer.SimpleXMLRPCServer.register_function as decorator

2011-03-08 Thread Santoso Wijaya
Santoso Wijaya added the comment: I see. Attaching a patch against 3.3 tip, then. -- Added file: http://bugs.python.org/file21058/xmlrpc_register_decorator_py33.patch ___ Python tracker ___

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

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3 -Python 2.7, Python 3.1, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list

[issue7896] IDLE.app crashes when attempting to open a .py file

2011-03-08 Thread Ned Deily
Ned Deily added the comment: Now that ActiveState has released a version of Tcl/Tk 8.5 (8.5.9.2) for Mac OS X that is also an Aqua Cocoa Tk (like the Apple-supplied Tk 8.5.7 in 10.6), versions of Python linked with the new ActiveTcl 8.5.9 do not display the kind of problem reported here as we

[issue935117] pkgutil doesn't understand case-senseless filesystems

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3 -Python 2.7, Python 3.1, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list

[issue9796] Add summary tables for unittest API

2011-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: I just read through the 3.2 unittest doc and found and will find the new tables very helpful. I hope you get them into the upcoming 3.1.3 and 2.7.2 releases, even if you think them not complete ;-). -- nosy: +terry.reedy versions: +Python 3.3 ___

[issue8269] Missing return values for PyUnicode C/API functions

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue7460] extended slicing not sufficiently covered in docs

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue6570] Tutorial clarity: section 4.7.2, parameters and arguments

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +terry.reedy versions: +Python 3.2, Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue6864] IDLE 2.6.1 locks up on Mac OS 10.6

2011-03-08 Thread Ned Deily
Ned Deily added the comment: Now that ActiveState has released a version of Tcl/Tk 8.5 (8.5.9.2) for Mac OS X that is also an Aqua Cocoa Tk (like the Apple-supplied Tk 8.5.7 in 10.6) and supports 64-bit, versions of Python linked with the new ActiveTcl 8.5.9 do not display the problem reporte

[issue4758] Python 3.x internet documentation needs work

2011-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: I believe 3.2 has many code and doc improvements with respect to bytes/string usage. So it is hard to know what is still needed. I think the way for anyone to advance this is to review just one of the modules listed and either report here that all is ok or op

[issue7769] SimpleXMLRPCServer.SimpleXMLRPCServer.register_function as decorator

2011-03-08 Thread Brian Curtin
Brian Curtin added the comment: Santoso - since this is a feature request it would need to be retargeted to 3.3 -- versions: +Python 3.3 -Python 2.7 ___ Python tracker ___ __

[issue10175] vs version for win32 compilation of extension modules is undocumented.

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue9998] find_library should search LD_LIBRARY_PATH on linux

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3 -Python 2.7, Python 3.1, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list ma

[issue4966] Improving Lib Doc Sequence Types Section

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue9254] __import__ docstring should recommend importlib.import_module()

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue11445] Something changed w.r.t. /pythonN.M/site-packages in the Hg switch

2011-03-08 Thread Ned Deily
Ned Deily added the comment: I can reproduce this. Chances are you'll see that the python.exe has been dynamically linked to the MacPorts Python instead of the just produced libpython2.7.dylib : $ otool -L ./python.exe ./python.exe: /opt/local/Library/Frameworks/Python.framework/Vers

[issue3565] array documentation, method names not 3.x-compliant

2011-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: In 3.2, a change *was* committed (by who?) but not recorded here: .from/.tostring were renamed .from/.tobytes and kept as deprecated aliases. Is there anything more to this issue other than removing the deprecated aliases in 3.3 (which could be done now if tha

[issue7769] SimpleXMLRPCServer.SimpleXMLRPCServer.register_function as decorator

2011-03-08 Thread Santoso Wijaya
Santoso Wijaya added the comment: I'm attaching a patch against 2.7 tip for an initial implementation of this decorator feature as well as sample usage in unittest, to get the ball rolling. The modified function should work as a decorator while preserving backward compatibility to be used in

[issue9205] Parent process hanging in multiprocessing if children terminate unexpectedly

2011-03-08 Thread Qiangning Hong
Changes by Qiangning Hong : -- nosy: +hongqn ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue1554133] PyOS_InputHook() and related API funcs. not documented

2011-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: A.B, I believe you have looked at other areas of missing C-API docs. What do you think of this one? Is it still missing? -- nosy: +belopolsky, terry.reedy versions: +Python 3.3 ___ Python tracker

[issue11448] docs for HTTPConnection.set_tunnel are ambiguous

2011-03-08 Thread Senthil Kumaran
Senthil Kumaran added the comment: I am not able to understand what you mean by 'endpoint'. Actually, when using tunnels people understand that they often 'tunnel through' the proxy server and here is an example code from the tests which is going to use the set_tunnel method. ph = urllib.req

[issue8722] Documentation for __getattr__

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue7798] Make generally useful pydoc functions public

2011-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: I have looked at the pydoc module. Everything except help() is intended to be private. The author says within the file that __all__, when present, defines public interface and uses that definition within help() to decide what to display. So I do not think an

[issue4965] Can doc index of html version be separately scrollable?

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue5784] raw deflate format and zlib module

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue9398] Unify sys.settrace and sys.setprofile tests

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue4832] idle filename extension

2011-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: The behavior (for Windows) I expect and would like is that the default extension would be .py, .txt, or nothing, depending on the selection in the 'save as type' box in the SaveAS dialog. (.pyw, being rare, would have to be explicitly typed.) Of course, doubl

[issue6109] IDLE rendering issue with oriental characters on OSX

2011-03-08 Thread Ned Deily
Ned Deily added the comment: For the record, as of Python 2.7 and 3.2, there *are* now two Python installers for OS X, one that continues to support Tk 8.4 on 10.3+ and one that supports 8.5 on 10.6+. Caveats and details here: http://www.python.org/download/mac/tcltk/ -- nosy: +ned

[issue4832] idle filename extension

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +terry.reedy versions: +Python 3.3 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-

[issue9307] Py_TPFLAGS_LONG_SUBCLASS is not documented

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue5594] IDLE startup configuration

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +terry.reedy versions: +Python 3.3 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-

[issue10617] Collections ABCs can’t be linked to

2011-03-08 Thread Éric Araujo
Éric Araujo added the comment: Doc moved: correct. Changing roles to directives: yes, that’s what I meant. -- ___ Python tracker ___ ___

[issue5420] Queue deprecation warning patch

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11448] docs for HTTPConnection.set_tunnel are ambiguous

2011-03-08 Thread Ryan Kelly
New submission from Ryan Kelly : The docs for HTTPConnection.set_tunnel(host,port) are ambiguous. They simply say "Set the host and the port for HTTP Connect Tunnelling". But should I specify the address of the server *through* which I want to tunnel, or the address of the *endpoint* of the

[issue2897] include structmember.h in Python.h

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6743] pprint.pprint should support no objects to print blank lines & allow args

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5880] Remove unneeded "context" pointer from getters and setters

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5714] CGIHTTPServer._url_collapse_path_split should live elsewhere

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue11445] Something changed w.r.t. /pythonN.M/site-packages in the Hg switch

2011-03-08 Thread Skip Montanaro
Skip Montanaro added the comment: Ned> Are you sure you're not really using the MacPorts python? What's Ned> the value of sys.executable? Yup, pretty sure. :-) Here it is run from my hg sandbox: % pwd /Users/skip/src/hgpython/2.7 % ./python.exe Python 2.7.1 (r271:86832, F

[issue11445] Something changed w.r.t. /pythonN.M/site-packages in the Hg switch

2011-03-08 Thread Ned Deily
Ned Deily added the comment: Are you sure you're not really using the MacPorts python? What's the value of sys.executable? -- nosy: +ned.deily ___ Python tracker ___ _

[issue11443] Zip password issue

2011-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: I meant 2.5/2.6 of course. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11406] There is no os.listdir() equivalent returning generator instead of list

2011-03-08 Thread Martin v . Löwis
Martin v. Löwis added the comment: > I thought then and still do that listdir should (have) change (d) like range, > map, and filter did, for same reasons. The reasons that applied to map and range don't apply to listdir(). The cost of materializing the list in the former cases may be signifi

[issue11406] There is no os.listdir() equivalent returning generator instead of list

2011-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: There has been discussion of this before, but it must have been on one of the lists, (possibly py3k list) as searching tracker for 'listdir generator' only returns this. I believe I pointed out then that Miscrosoft C (also) has (did once) a 'nextdir' functio

[issue11447] test_pydoc refleak

2011-03-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: (I wonder why it doesn't appear in my daily cronjob, though) -- ___ Python tracker ___ ___ Python-b

[issue11447] test_pydoc refleak

2011-03-08 Thread Antoine Pitrou
New submission from Antoine Pitrou : This appear to be caused by a5a3ae9be1fb ("Improve Pydoc interactive browsing (#2001). Patch by Ron Adam."). $ ./python -m test.regrtest -uall -R 3:3 test_pydoc [1/1] test_pydoc [46430 refs] [46431 refs] [46431 refs] [46430 refs] [46431 refs] [46426 refs] [

[issue6818] remove/delete method for zipfile/tarfile objects

2011-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: Please feel free to test, revise, and write. Though 'removed', the file is still accessible via the history list. (Click 'zipfile_remove.patch' and then 'download'.) -- nosy: +terry.reedy ___ Python tracker

[issue11437] IDLE crash on startup with typo in config-keys.cfg

2011-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: I presume 'silently' means when starting with an icon or shortcut, so that there is no window left to contain the traceback. The standard key customization is by clicking, which makes errors impossible. How did you get the error? By using the "Advanced Key Bi

[issue11441] compile() raises SystemError if called from except clause

2011-03-08 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Why is the exception normalized at the end? I suppose it's because when value is an exception instance, it's replaced by a tuple, but the original value has to be recreated at the end. So in some cases, the SyntaxError object is created twice... If PyE

[issue11446] Incorrect PEP link in Language Reference section 7.7

2011-03-08 Thread Terrence Cole
New submission from Terrence Cole : At the bottom of section 7.7 Class Definitions in the Python Language Reference: http://docs.python.org/py3k/reference/compound_stmts.html#class-definitions The text is: See also: PEP 3116 - Metaclasses in Python 3 PEP 3129 - Class Decorators This appears to

[issue11444] logging FileHandler.close should acquire its lock before closing stream

2011-03-08 Thread Vinay Sajip
Changes by Vinay Sajip : -- assignee: -> vinay.sajip resolution: -> fixed status: open -> closed versions: +Python 3.1, Python 3.2, Python 3.3 ___ Python tracker ___ __

[issue11444] logging FileHandler.close should acquire its lock before closing stream

2011-03-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset fc4d045e3170 by Vinay Sajip in branch '2.6': Issue #11444: Lock handlers while flushing/closing during shutdown. http://hg.python.org/cpython/rev/fc4d045e3170 New changeset c8b651b3a493 by Vinay Sajip in branch '2.7': Issue #11444: Merge fix from 2

[issue11440] fix_callable should be dropped from lib2to3 / changed

2011-03-08 Thread Benjamin Peterson
Benjamin Peterson added the comment: Someone should probably ask python-dev. callable, of course, doesn't work in 3.1. -- ___ Python tracker ___ ___

[issue11413] Idle doesn't start

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : Removed file: http://bugs.python.org/file21051/unnamed ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue11413] Idle doesn't start

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : Removed file: http://bugs.python.org/file21050/unnamed ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue11413] Idle doesn't start

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : Removed file: http://bugs.python.org/file21049/unnamed ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue11413] Idle doesn't start

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : Removed file: http://bugs.python.org/file21048/unnamed ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue11413] Idle doesn't start

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : Removed file: http://bugs.python.org/file21038/unnamed ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue11413] Idle doesn't start

2011-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: It also appears that you are submitting messages as HTML rather than plain text. Hence the junk 'unknown' files. Please do not do that. (Messages to a mailing list or newsgroup should also be plain text.) -- ___ Py

[issue11413] Idle doesn't start

2011-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: Chris: I appreciate you wanting use IDLE. I love it, hope to improve it, and am sorry that people occasionally have a problem starting it. However, this is not a bug report but a usage question that would better have been posted to our python-list email list

[issue11445] Something changed w.r.t. /pythonN.M/site-packages in the Hg switch

2011-03-08 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue11441] compile() raises SystemError if called from except clause

2011-03-08 Thread Daniel Urban
Daniel Urban added the comment: Okay, here is a new patch with the test in the correct place (I hope). -- Added file: http://bugs.python.org/file21055/issue11441_2.patch ___ Python tracker

[issue11445] Something changed w.r.t. /pythonN.M/site-packages in the Hg switch

2011-03-08 Thread Skip Montanaro
New submission from Skip Montanaro : I routinely configure Python like so on my Mac (10.5.8): ./configure --prefix=/Users/skip/local --enable-shared LDFLAGS=-L/opt/local/lib CPPFLAGS=-I/opt/local/include This has always worked for me. Now, after installing from my Mercurial sandbox I hav

[issue11441] compile() raises SystemError if called from except clause

2011-03-08 Thread Benjamin Peterson
Benjamin Peterson added the comment: You can put the test in test_compile. -- ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue11440] fix_callable should be dropped from lib2to3 / changed

2011-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: I suspect that this will not be the last time that a fix is version dependent. I think that the 2to3 distributed with 3.x should fix to 3.x. Otherwise, the fix would have to do an 'if version...' dance. (Perhaps the version distributed with 2.7 should do *tha

[issue11435] Links to source code should now point to hg repo

2011-03-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: > So, it's not possible to access http://svn.python.org/view/python > /branches/py3k/ at all now? Hmm, apparently no. Is it important? -- ___ Python tracker _

[issue11440] fix_callable should be dropped from lib2to3 / changed

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +benjamin.peterson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue11441] compile() raises SystemError if called from except clause

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +benjamin.peterson, brett.cannon, georg.brandl, ncoghlan ___ Python tracker ___ ___ Python-bugs-l

[issue11443] Zip password issue

2011-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: 2.6/2.7 only get security fixes. I do not think this qualifies -- components: +Library (Lib) nosy: +terry.reedy stage: -> test needed type: -> behavior versions: -Python 2.5, Python 2.6 ___ Python tracker

[issue11444] logging FileHandler.close should acquire its lock before closing stream

2011-03-08 Thread Ned Deily
Changes by Ned Deily : -- nosy: +vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue11009] urllib.splituser is not documented

2011-03-08 Thread Sandro Tosi
Changes by Sandro Tosi : -- nosy: +sandro.tosi versions: +Python 2.7, Python 3.2, Python 3.3 -Python 2.6 ___ Python tracker ___ ___ Py

[issue11441] compile() raises SystemError if called from except clause

2011-03-08 Thread Daniel Urban
Daniel Urban added the comment: Here is a patch. I wasn't sure, where to put the test, so I put it in test_ast. -- keywords: +patch Added file: http://bugs.python.org/file21054/issue11441.patch ___ Python tracker

[issue7689] Pickling of classes with a metaclass and copy_reg

2011-03-08 Thread François Bissey
Changes by François Bissey : -- nosy: +fbissey ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue11344] Add os.path.splitpath(path) function

2011-03-08 Thread blokeley
blokeley added the comment: I started writing the patch against py2.7 but realised that 2.7 could be the last in the 2.x series. I'll write the patch against default tip. -- title: Add height argument to os.path.dirname() -> Add os.path.splitpath(path) function __

[issue10617] Collections ABCs can’t be linked to

2011-03-08 Thread Sandro Tosi
Sandro Tosi added the comment: Hi Éric, after #11085, I think the part of the doc you're referring to has been moved to collections.abc.rst, is that correct? If so, can you please explain what you'd like to see? all those ":class:`Container`" converted into ".. class:: Container" in the table

[issue8594] Add a "source_address" option to ftplib

2011-03-08 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue2771] Test issue

2011-03-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset a25e4c9f7b3a by éléphant in branch 'default': Issue #2771: héhé http://hg.python.org/test/rev/a25e4c9f7b3a -- ___ Python tracker __

  1   2   >