[issue5256] rlcompleter adds builtins when custom dict is used

2010-07-10 Thread Mark Lawrence
Changes by Mark Lawrence : -- components: +Library (Lib) -None versions: +Python 2.7, Python 3.1, Python 3.2 -Python 3.0 ___ Python tracker ___ ___

[issue5286] urrlib2 digest authentication problems

2010-07-10 Thread Jean-Paul Calderone
Jean-Paul Calderone added the comment: Some unit tests which demonstrate the present non-working behavior and the correctness of the fix would help a lot. -- nosy: +exarkun ___ Python tracker _

[issue1172011] BaseCookie should call value_decode from __getitem__

2010-07-10 Thread Mark Lawrence
Mark Lawrence added the comment: Well should it or shouldn't it? -- nosy: +BreamoreBoy title: BaseCookie does not call value_decode -> BaseCookie should call value_decode from __getitem__ versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___

[issue5286] urrlib2 digest authentication problems

2010-07-10 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- assignee: -> orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue1158231] string.Template does not allow step-by-step replacements

2010-07-10 Thread Matthew Barnett
Matthew Barnett added the comment: Here's a patch for Python 3.1, if anyone's still interested after 5 years. :-) -- keywords: +patch nosy: +mrabarnett Added file: http://bugs.python.org/file17930/from_template.diff ___ Python tracker

[issue845560] imaplib: traceback from _checkquote with empty string

2010-07-10 Thread Mark Lawrence
Mark Lawrence added the comment: The patch adds two lines to imaplib.py, would applying it after all these years be more trouble than it's worth? -- nosy: +BreamoreBoy stage: unit test needed -> patch review versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___

[issue4493] urllib2 doesn't always supply / where URI path component is empty

2010-07-10 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 mai

[issue9216] FIPS support for hashlib

2010-07-10 Thread Gregory P. Smith
Gregory P. Smith added the comment: That sounds fine to me and I do like the usedforsecurity annotation on the API. I'll gladly review any patches. -- ___ Python tracker ___ __

[issue5978] cProfile and profile don't work with pygtk/pyqt and sys.exit(0)

2010-07-10 Thread Mark Lawrence
Mark Lawrence added the comment: I'm note sure if this is a library bug, doc bug, external library issue or what, anyone got any true idea? -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.5 ___ Python tracker

[issue6014] No shell prompt when a graphics window that was started from IDLE is closed

2010-07-10 Thread Mark Lawrence
Mark Lawrence added the comment: Surely a graphics program should be run from a command prompt, not from IDLE or anything similar? Hence can this be closed? -- nosy: +BreamoreBoy ___ Python tracker __

[issue7475] codecs missing: base64 bz2 hex zlib hex_codec ...

2010-07-10 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: Georg Brandl wrote: > > Georg Brandl added the comment: > > ... but don't wait to long to add them! I plan to work on that after EuroPython. Florent already provided the patch for the codecs, so what's left is adding the .transform()/ .untransform() meth

[issue7475] codecs missing: base64 bz2 hex zlib hex_codec ...

2010-07-10 Thread Marc-Andre Lemburg
Changes by Marc-Andre Lemburg : -- versions: -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue3070] Wrong size calculation in posix_execve

2010-07-10 Thread Mark Lawrence
Mark Lawrence added the comment: Any core C developers have any input on this one? -- nosy: +BreamoreBoy versions: +Python 3.2 ___ Python tracker ___

[issue9174] unittest assertEqual error output sub-optimal for single strings

2010-07-10 Thread Michael Foord
Michael Foord added the comment: I agree that mentioning contextmanager in the ContextDecorator docs is a good idea - plus adding something like Nick's example. I'll do that. -- ___ Python tracker

[issue9174] unittest assertEqual error output sub-optimal for single strings

2010-07-10 Thread Michael Foord
Changes by Michael Foord : -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/opt

[issue9110] contextlib.ContextDecorator

2010-07-10 Thread Michael Foord
Michael Foord added the comment: I agree that mentioning contextmanager in the ContextDecorator docs is a good idea - plus adding something like Nick's example. I'll do that. -- ___ Python tracker

[issue1441] Cycles through ob_type aren't freed

2010-07-10 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 mai

[issue2609] Tests fail if ./@test is not writeable

2010-07-10 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 2.7, Python 3.2 -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue8844] Condition.wait() doesn't raise KeyboardInterrupt

2010-07-10 Thread Reid Kleckner
Reid Kleckner added the comment: Here is a new version of a patch that updates recursive locks to have the same behavior. The pure Python RLock implementaiton should be interruptible by virtue of the base lock acquire primitive being interruptible. I've also updated the relevant documentatio

[issue6246] Python debugger ignores exception if instructed to return from generator

2010-07-10 Thread Mark Lawrence
Mark Lawrence added the comment: I can reproduce this on Windows Vista. -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.5 ___ Python tracker ___ ___

[issue6302] email.header.decode_header data types are inconsistent and incorrectly documented

2010-07-10 Thread Mark Lawrence
Mark Lawrence added the comment: Anyone got any comments to make on this? Should 2.7 also be included? -- nosy: +BreamoreBoy ___ Python tracker ___ _

[issue5729] Allows tabs for indenting JSON output

2010-07-10 Thread Bob Ippolito
Bob Ippolito added the comment: Well this feature is already in simplejson 2.1.0, it would probably make more sense to simply merge the latest simplejson back with Python 3. -- ___ Python tracker _

[issue3070] Wrong size calculation in posix_execve

2010-07-10 Thread STINNER Victor
STINNER Victor added the comment: Yes, I fixed it in 3.1 (r80494) and 3.2 (r80421): see issue #8391. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue6322] Pdb breakpoints don't work on lines without bytecode

2010-07-10 Thread Mark Lawrence
Mark Lawrence added the comment: The OP has offered source code which fixes this issue, see msg89597. -- nosy: +BreamoreBoy stage: -> needs patch versions: +Python 3.2 -Python 2.5, Python 2.6 ___ Python tracker __

[issue7303] pkgutil lacks documentation for useful functions

2010-07-10 Thread Éric Araujo
Changes by Éric Araujo : -- keywords: +easy nosy: +merwok resolution: -> accepted stage: -> needs patch ___ Python tracker ___ ___ Py

[issue7475] codecs missing: base64 bz2 hex zlib hex_codec ...

2010-07-10 Thread Éric Araujo
Éric Araujo added the comment: I am confused by MvL’s reply. From the first paragraph documentation for binascii: “Normally, you will not use these functions directly but use wrapper modules like uu, base64, or binhex instead. The binascii module contains low-level functions written in C for

[issue7475] codecs missing: base64 bz2 hex zlib hex_codec ...

2010-07-10 Thread Martin v . Löwis
Martin v. Löwis added the comment: > I am confused by MvL’s reply. From the first paragraph documentation > for binascii: “Normally, you will not use these functions directly > but use wrapper modules like uu, base64, or binhex instead. The > binascii module contains low-level functions written

[issue9215] test_float crashes with assertion failure on Ubuntu buildbot.

2010-07-10 Thread Mark Dickinson
Mark Dickinson added the comment: I managed to reproduce this with Ubuntu 10.10 and the gcc-snapshot package. I've shrunk it to the following (no floating-point in sight!): /* file dtoa.c */ static char s0[12]; char *_Py_dg_dtoa() { char *s = s0; *s++ = '9'; *s++ = '9'; while(*--s

[issue7946] Convoy effect with I/O bound threads and New GIL

2010-07-10 Thread Hans Lellelid
Changes by Hans Lellelid : -- nosy: +hozn ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue2528] Change os.access to check ACLs under Windows

2010-07-10 Thread Tim Golden
Tim Golden added the comment: Although I'm the implementer of the patch (the concept was discussed way back on c.l.py after a naive poster's original request) I'm probably +0 myself. It's an attempt to replace os.access' next-to-useless behaviour on Windows with something which at least uses cur

[issue9215] test_float crashes with assertion failure on Ubuntu buildbot.

2010-07-10 Thread Matthias Klose
Matthias Klose added the comment: I updated the compiler on the buildbot to trunk 20100709, and your reduced testcase is fixed. will update the gcc-snapshot package in maverick later. -- resolution: -> fixed status: open -> closed ___ Python track

[issue8040] It would be nice if documentation pages linked to other versions of the same document

2010-07-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: All yours. Good luck. As usual, no guarantees on acceptance of any particular patch. I am marking this for 3.2 because that is where new *code* will go and that is also the doc set you should experiment with. That is not to say that new code, once approved,

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

2010-07-10 Thread Jesse Noller
Jesse Noller added the comment: Ugh. I'm going to have to think about the cleanest way of handling this case of functions vanishing from us since this is going to be more widespread inside the code. Suggestions welcome. -- ___ Python tracker

[issue9217] 2to3 crashes with some doctests

2010-07-10 Thread Tiago Antao
New submission from Tiago Antao : 2to3 -d sometimes crashes. The problem seems to be in refactor_doctest. The problematic line is: if self.log.isEnabledFor(logging.DEBUG): self.log does not exist. The error, as expected: File "/usr/lib/python3.1/lib2to3/refactor.py", line 516, in refactor_doct

[issue4966] Improving Lib Doc Sequence Types Section

2010-07-10 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue9217] 2to3 crashes with some doctests

2010-07-10 Thread Tiago Antao
Changes by Tiago Antao : -- type: -> crash ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue9218] pop multiple elements of a list at once

2010-07-10 Thread Diego Jacobi
New submission from Diego Jacobi : I am currently working with buffer in an USB device and pyusb. So when i read from a buffer endpoint i get an array.Array() list. I handle this chunk of data with a thread to send a receive the information that i need. In this thread i load a list with all the

[issue2053] IDLE - standardize dialogs

2010-07-10 Thread Guilherme Polo
Guilherme Polo added the comment: > Tal Einat added the comment: > > ... > > The process of discussing this patch has taken far, far too long. I can't > stand such discussions spanning months (and years!). Please just accept this > patch or close it. I'm fed up with this. > If the patch were

[issue6643] joining a child that forks can deadlock in the forked child process

2010-07-10 Thread Reid Kleckner
Reid Kleckner added the comment: Here's an updated patch for py3k (3.2). The test still fails without the fix, and passes with the fix. Thinking more about this, I'll try summarizing the bug more coherently: When the main thread joins the child threads, it acquires some locks. If a fork in

[issue5150] IDLE to support reindent.py

2010-07-10 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +merwok resolution: accepted -> fixed stage: needs patch -> committed/rejected ___ Python tracker ___ ___

[issue1447633] "reindent.py" exposes bug in tokenize

2010-07-10 Thread Éric Araujo
Changes by Éric Araujo : -- stage: -> committed/rejected ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue8844] Condition.wait() doesn't raise KeyboardInterrupt

2010-07-10 Thread Antoine Pitrou
Antoine Pitrou added the comment: The RLock version gets different semantics in your patch: it doesn't retry acquiring when a signal is caught. Is there a reason for that? By the way, your patch works fine under Windows. -- ___ Python tracker

[issue9217] 2to3 crashes with some doctests

2010-07-10 Thread Benjamin Peterson
Benjamin Peterson added the comment: Fixed in r82779. I'm curious as to what it's failing on. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker

[issue9217] 2to3 crashes with some doctests

2010-07-10 Thread Tiago Antao
Tiago Antao added the comment: Benjamin, Thanks for the fast answer. I attach the problematic file. This file is from Biopython. We are trying to have a Python 3 version of it. We applied 2to3 (no -d) first (via distutils on setup.py build) and I was applying 2to3 -d manually after it. -

[issue9219] Make reindent-rst.py preserve ^L

2010-07-10 Thread Éric Araujo
New submission from Éric Araujo : Tools/scripts/reindent-rst.py strips trailing whitespace from reST files, including ^L. ISTM that this character is always used explicitly, not by oversight, e.g. by people wanting their editor to paginate files like plain text PEPs. I suggest that the regex a

[issue9218] pop multiple elements of a list at once

2010-07-10 Thread Mark Dickinson
Mark Dickinson added the comment: The python-ideas mailing list might be a better place to discuss this. Note that it's too late for new features in the 2.x series, so I'm changing the version to 3.2 > pop self.recv_buffer[:size] I don't think this'll fly, even if you spell it pop(self.recv

[issue9220] Modules no longer usable as context managers

2010-07-10 Thread Jim Fulton
New submission from Jim Fulton : In python 2.7 a module can't be used as a context manager. For example, given the module, t.py: def __enter__(*args): print 'enter', args def __exit__(*args): print 'exit', args In Python 2.6: >>> import t >>> with t: pass

[issue9219] Make reindent-rst.py preserve ^L

2010-07-10 Thread Georg Brandl
Georg Brandl added the comment: This script is mainly meant to fix files according to our standards, and I don't want ^L in them. Thus, I'm rejecting this. -- nosy: +georg.brandl resolution: -> rejected status: open -> closed ___ Python tracker <

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

2010-07-10 Thread Greg Brockman
Greg Brockman added the comment: What about just catching the exception? See e.g. the attached patch. (Disclaimer: not heavily tested). -- Added file: http://bugs.python.org/file17934/shutdown.patch ___ Python tracker

[issue9219] Make reindent-rst.py preserve ^L

2010-07-10 Thread Éric Araujo
Éric Araujo added the comment: Thanks for the answer. Perhaps it would be useful to mention trailing whitespace and ^L in http://docs.python.org/documenting/style.html? As for PEPs, I guess it’s less important that they conform to these standards, since they’re more an internal documentation.

[issue9220] Modules no longer usable as context managers

2010-07-10 Thread Éric Araujo
Éric Araujo added the comment: IIUC, magic methods are looked up on the object’s class, not in the object’s __dict__. This behavior in 2.6 seems like a bug to me. I-tried-to-add-__call__-to-a-module-once-ly yours -- nosy: +merwok ___ Python tracker

[issue9217] 2to3 crashes with some doctests

2010-07-10 Thread Tiago Antao
Tiago Antao added the comment: BTW, this happens in 2.6 also -- versions: +Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mail

[issue6302] email.header.decode_header data types are inconsistent and incorrectly documented

2010-07-10 Thread R. David Murray
R. David Murray added the comment: No, this is a 3.x only problem. And my main comment is that decode_headers ought to go away as an API :) But I'll try to fix the inconsistent data types problem before 3.2. -- assignee: -> r.david.murray ___ Pyt

[issue9219] Make reindent-rst.py preserve ^L

2010-07-10 Thread Georg Brandl
Georg Brandl added the comment: > Thanks for the answer. Perhaps it would be useful to mention trailing > whitespace and ^L in http://docs.python.org/documenting/style.html? So far, I guess nobody has tried to check in a ^L, and nobody has complained about the commit hook that rejects trailing

[issue9220] Modules no longer usable as context managers

2010-07-10 Thread Éric Araujo
Éric Araujo added the comment: Confirmed: http://docs.python.org/reference/datamodel#specialnames Closing. Sorry! (BTW, using import hackery and a custom module type, you could achieve your goal.) -- resolution: -> invalid stage: -> committed/rejected status: open -> closed

[issue9221] 2to3 fails to parse a for construct

2010-07-10 Thread Tiago Antao
New submission from Tiago Antao : 2to3 crashes with a apparently simple for. An example is presented (the first line is actually enough) >>> for clade in tree.find_clades(branch_length=True, order='level'): >>> if (clade.branch_length < .5 and >>> not clade.is

[issue9219] Make reindent-rst.py preserve ^L

2010-07-10 Thread Éric Araujo
Éric Araujo added the comment: > [...] so I don't see a reason. Thanks for the additional info, agreed then. > [PEPs are] not covered by the commit hook anyway... Probably because it’s not as useful to enforce standards on them, since less people read and edit their source, so no problem. Tha

[issue9221] 2to3 fails to parse a for construct

2010-07-10 Thread Éric Araujo
Éric Araujo added the comment: You are supposed to use “...” on continuation lines, not “>>>”: http://docs.python.org/glossary#term-1 http://docs.python.org/dev/library/doctest#how-are-docstring-examples-recognized Please reopen it the problem persists after this change. Thank you! --

[issue8844] Condition.wait() doesn't raise KeyboardInterrupt

2010-07-10 Thread Reid Kleckner
Reid Kleckner added the comment: Oops, copy/paste oversight. =/ I wrote a test to verify that it handles signals, and then retries the lock acquire. -- Added file: http://bugs.python.org/file17935/lock-interrupt.diff ___ Python tracker

[issue6643] joining a child that forks can deadlock in the forked child process

2010-07-10 Thread Reid Kleckner
Reid Kleckner added the comment: I realized that in a later fix for unladen-swallow, we also cleared the condition variable waiters list, since it has radioactive synchronization primitives in it as well. Here's an updated patch that simplifies the fix by just using __init__() to completely

[issue9220] Modules no longer usable as context managers

2010-07-10 Thread Mark Dickinson
Mark Dickinson added the comment: Just for the record, this changed with the introduction of the SETUP_WITH opcode in r72912. Perhaps Benjamin can confirm that the behaviour change was deliberate? -- nosy: +benjamin.peterson, mark.dickinson ___ Py

[issue8844] Condition.wait() doesn't raise KeyboardInterrupt

2010-07-10 Thread Reid Kleckner
Reid Kleckner added the comment: Also, thanks for the quick reviews! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

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

2010-07-10 Thread Jesse Noller
Jesse Noller added the comment: A+ for creativity; I wouldn't have thought of that ;) -- ___ Python tracker ___ ___ Python-bugs-list m

[issue9193] Versioned .so files

2010-07-10 Thread Éric Araujo
Éric Araujo added the comment: In build_ext, your modifications to get_ext_filename do not update the docstring, although it contains a comment documenting the handling of ext.so_abi_tag. They also use str.rpartition, not available in 2.3, with which distutils has to remain compatible as per

[issue9214] Most Set methods of KeysView and ItemsView do not work right

2010-07-10 Thread Éric Araujo
Changes by Éric Araujo : -- resolution: -> accepted ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue9214] Most Set methods of KeysView and ItemsView do not work right

2010-07-10 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +merwok ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue9213] range purports to implement the Sequence ABC, but is missing index and count methods

2010-07-10 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +merwok ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue9212] dict_keys purports to implement the Set ABC, but is missing the isdisjoint method

2010-07-10 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +merwok ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue3214] Suggest change to glossary explanation: "Duck Typing"

2010-07-10 Thread Éric Araujo
Changes by Éric Araujo : -- stage: -> committed/rejected ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue3214] Suggest change to glossary explanation: "Duck Typing"

2010-07-10 Thread Éric Araujo
Éric Araujo added the comment: Benjamin: Georg, you may also want to amend this entry for ABCs. Georg: ABCs are not duck-typing since they involve isinstance() anyway. Since ABCs provide virtual subclassing, using hasattr without requiring subclassing or registering, isn’t Benjamin right afte

[issue3214] Suggest change to glossary explanation: "Duck Typing"

2010-07-10 Thread Éric Araujo
Éric Araujo added the comment: Re-reading the glossary for both entries, they already link to each other, and the subtleties of ABCs can be learned later in their documentation. The glossary is good, sorry for the noise. -- ___ Python tracker

[issue9000] Provide parseable repr to datetime.timezone

2010-07-10 Thread Éric Araujo
Changes by Éric Araujo : -- resolution: accepted -> fixed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue5094] datetime lacks concrete tzinfo implementation for UTC

2010-07-10 Thread Éric Araujo
Changes by Éric Araujo : -- resolution: accepted -> fixed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue8564] Update documentation on doctest/unittest2 integration

2010-07-10 Thread Éric Araujo
Changes by Éric Araujo : -- stage: -> committed/rejected ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue3071] The ValueError raised by failing to unpack sequence should have more information.

2010-07-10 Thread Éric Araujo
Changes by Éric Araujo : -- resolution: accepted -> fixed stage: unit test needed -> committed/rejected ___ Python tracker ___ ___ Pyth

[issue3214] Suggest change to glossary explanation: "Duck Typing"

2010-07-10 Thread Éric Araujo
Éric Araujo added the comment: To make one useful comment today: I noticed one missing :term: construct to link ABCs from duck typing. Attaching patch. -- keywords: +patch Added file: http://bugs.python.org/file17937/add-ref.diff ___ Python tracker

[issue9212] dict_keys purports to implement the Set ABC, but is missing the isdisjoint method

2010-07-10 Thread Raymond Hettinger
Raymond Hettinger added the comment: Concrete classes are allowed to have more features than the corresponding ABC. The ABCs are not intended to be full-featured; instead, they specify the part of the API that will be guaranteed. For example, the union() method for built-in sets allows two

[issue1326113] Letting "build_ext --libraries" take more than one lib

2010-07-10 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.6, Python 2.7, Python 3.0, Python 3.1 ___ Python tracker ___ ___ Pyth

[issue4711] Wide literals in the table of contents overflow in documentation

2010-07-10 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

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

2010-07-10 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5116] expose _CrtSetReportMode via the msvcrt module

2010-07-10 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> out of date status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue2053] IDLE - standardize dialogs

2010-07-10 Thread Tal Einat
Tal Einat added the comment: At this point I would prefer that this patch just be rejected rather than continue discussing it. I can understand IDLE being a low priority, but someone could have just stated that to begin with and I wouldn't have bothered working for hours to work up a patch a

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

2010-07-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: I and others completely disagree with "Technically the correct answer is 'pass by value',". This confuses the C implementation with the abstract semantics of Python. The correct answer is neither. Nothing is 'passed'. A better form of the question would be "D

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

2010-07-10 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: georg.brandl -> d...@python nosy: +d...@python ___ Python tracker ___ ___ Python-bugs-list mai

[issue7918] distutils always ignores compile errors

2010-07-10 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6325] robotparser doesn't handle URL's with query strings

2010-07-10 Thread Mark Lawrence
Changes by Mark Lawrence : -- assignee: -> orsenthil nosy: +orsenthil versions: +Python 3.1, Python 3.2 -Python 2.4, Python 2.5, Python 2.6 ___ Python tracker ___ ___

[issue902061] pydoc insists upon producing file: URLs

2010-07-10 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue6359] pyexpat.c calls trace function incorrectly for exceptions

2010-07-10 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: +loewis stage: -> unit test needed versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.5, Python 2.6 ___ Python tracker ___ __

[issue6386] importing yields unexpected results when initial script is a symbolic link

2010-07-10 Thread Mark Lawrence
Changes by Mark Lawrence : -- stage: -> unit test needed versions: +Python 3.2 -Python 2.4, Python 2.5, Python 2.6, Python 3.0 ___ Python tracker ___

[issue9212] dict_keys purports to implement the Set ABC, but is missing the isdisjoint method

2010-07-10 Thread Daniel Stutzbach
Daniel Stutzbach added the comment: In this case, the concrete class is the one missing a method. Concrete classes are allowed to provide more features than the corresponding ABC, but the converse is not true to the best of my knowledge. dict_keys .register()s as supporting the Set ABC, so

[issue1657] epoll and kqueue wrappers for the select module

2010-07-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: "Is the problem that the kqueue section says things like 'filter-specific data' with no explanation?" The phase is not in the (newer) 3.1.2 docs. Given the absence of a specific doc issue, closing. -- keywords: -patch nosy: +tjreedy resolution: acce

[issue3077] h2py char literal doesn't work

2010-07-10 Thread Mark Lawrence
Mark Lawrence added the comment: Both patch files are two liners, could someone please take a look and decide if one of them can be accepted? -- nosy: +BreamoreBoy stage: -> patch review title: h2py char literal doesn work -> h2py char literal doesn't work versions: +Python 3.1, Pytho

[issue6478] time.tzset does not reset _strptime's locale time cache

2010-07-10 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: +belopolsky stage: -> needs patch versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.4, Python 2.6 ___ Python tracker ___ ___

[issue6529] get{pw,gr}{nam,[ug]id}() calls are not re-entrant

2010-07-10 Thread Mark Lawrence
Mark Lawrence added the comment: Is this an issue that should be addressed? -- nosy: +BreamoreBoy stage: -> unit test needed versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker ___

[issue8145] Documentation about sqlite3 isolation_level

2010-07-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: If the content of the patch is correct, it looks ready to apply, with only a touch of editing. Do we have a resident expert of sqlite3? Or Laszlo, do you have a reference for the statements made? -- assignee: georg.brandl -> d...@python nosy: +d...@py

[issue7944] Use the 'with' statement in conjunction with 'open' throughout test modules

2010-07-10 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.6, Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue6639] turtle: _tkinter.TclError: invalid command name ".10170160"

2010-07-10 Thread Mark Lawrence
Mark Lawrence added the comment: Anyone with turtle/Tkinter knowledge who can shed some light on this? -- nosy: +BreamoreBoy stage: -> needs patch versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker

[issue9220] Modules no longer usable as context managers

2010-07-10 Thread Benjamin Peterson
Benjamin Peterson added the comment: Yes, definitely. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue9222] IDLE: Fix open/saveas 'Files of type' choices

2010-07-10 Thread Terry J. Reedy
New submission from Terry J. Reedy : In the open and save-as dialog boxes, the choices for the 'Files of type' field are governed by the filetypes list in Lib\idlelib\IOBinding.py, about line 225 (found by a friend). filetypes = [ ("Python and text files", "*.py *.pyw *.txt", "TEXT

[issue9212] dict_keys purports to implement the Set ABC, but is missing the isdisjoint method

2010-07-10 Thread Raymond Hettinger
Raymond Hettinger added the comment: I had misread you original post. Thought you we saying that the Set ABC was missing disjoint. Disregard my last post. -- ___ Python tracker _

<    1   2   3   >