[issue10439] PyCodec C API is not documented in reST

2010-11-20 Thread Georg Brandl
Georg Brandl added the comment: Please call it codec.rst. It is probably best placed under "utilities". -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.o

[issue10231] SimpleHTTPRequestHandler directory bugs

2010-11-20 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> orsenthil ___ Python tracker <http://bugs.python.org/issue10231> ___ ___ Python-bugs-list mailing list Unsubscri

[issue10465] gzip module calls getattr incorrectly

2010-11-20 Thread Georg Brandl
Georg Brandl added the comment: Thanks for the catch, fixed in r86555. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue10439] PyCodec C API is not documented in reST

2010-11-20 Thread Georg Brandl
Georg Brandl added the comment: Yes, apparently the parameter was (intended to be) called "error" at some point. Can you put the correction in your patch? -- ___ Python tracker <http://bugs.python.o

[issue10460] Misc/indent.pro does not reflect PEP 7

2010-11-20 Thread Georg Brandl
Georg Brandl added the comment: Done in r86561. Thanks for the report! -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue10349] Error in Module/python.c when building on OpenBSD 4.8

2010-11-20 Thread Georg Brandl
Georg Brandl added the comment: This is the old issue of casting the result of malloc() -- frowned upon in C, but required in C++. Looking at the Python sources, most uses of PyMem_Malloc seem to have the cast, so it doesn't seem wrong to add one here (where it actually can be configur

[issue10439] PyCodec C API is not documented in reST

2010-11-20 Thread Georg Brandl
Georg Brandl added the comment: Please also keep to 3-space indentation in directives. -- ___ Python tracker <http://bugs.python.org/issue10439> ___ ___ Pytho

[issue10461] Use with statement throughout the docs

2010-11-20 Thread Georg Brandl
Georg Brandl added the comment: FWIW, this doesn't belong in the style guide; it is obvious that the docs should exhibit "best practice" Python code, and using the with statement when opening resources is certainly such a best practice now. -- nosy

[issue10439] PyCodec C API is not documented in reST

2010-11-20 Thread Georg Brandl
Georg Brandl added the comment: Reviewed and applied in r86562. Thanks! -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue10468] Document UnicodeError access functions

2010-11-20 Thread Georg Brandl
New submission from Georg Brandl : There are a couple of functions for accessing UnicodeError subclass properties that are needed e.g. in codec error handlers. They should be documented in exceptions.rst. -- assignee: d...@python components: Documentation messages: 121641 nosy: d

[issue10460] Misc/indent.pro does not reflect PEP 7

2010-11-20 Thread Georg Brandl
Georg Brandl added the comment: ad 1: yes, that makes sense. ad 2: "cuddling" and "non-cuddling" else are actually pretty evenly mixed in the source. I didn't explicitly look at PEP 7 for this, but in that case it should get preference. Your suggested profile looke

[issue9724] help('nonlocal') missing

2010-11-20 Thread Georg Brandl
Georg Brandl added the comment: Applied in r86608. Thanks! -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue10471] include documentation in python docs and under python -h for other commandline options

2010-11-20 Thread Georg Brandl
Georg Brandl added the comment: -tt is documented on the page you link to. -b and -bb are only available in Python 3, and are documented there: <http://docs.python.org/py3k/using/cmdline>. -b and -bb also show up in python -h. In the contrary, -t and -tt have been removed in Python

[issue1859] textwrap doesn't linebreak on "\n"

2010-11-21 Thread Georg Brandl
Georg Brandl added the comment: +1 for applying the doc patch. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue1859> ___ ___ Python-bug

[issue9095] patchcheck should handle extraneous whitespace in .rst files

2010-11-22 Thread Georg Brandl
Georg Brandl added the comment: patchcheck.py is not so complicated; why don't you debug that hangup yourself? -- ___ Python tracker <http://bugs.python.org/i

[issue1859] textwrap doesn't linebreak on "\n"

2010-11-22 Thread Georg Brandl
Georg Brandl added the comment: Yes, please do apply. You don't need to run a doc build for every small change; of course it is nice if you do, but errors will be caught by the daily build routine anyway and mailed to me. As for the two blank lines: you'll see that the original

[issue10468] Document UnicodeError access functions

2010-11-22 Thread Georg Brandl
Georg Brandl added the comment: Thanks, reviewed and applied in r86705. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue10508] compiler warnings about formatting pid_t as an int

2010-11-23 Thread Georg Brandl
Georg Brandl added the comment: Well, I can't see a problem with it. Backported in r86706, r86707. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.

[issue10511] heapq docs clarification

2010-11-23 Thread Georg Brandl
New submission from Georg Brandl : On the python-docs mailing list, a user suggested to rewrite the first paragraph of the heapq docs like this. Are you okay with this change, Raymond? Heaps are trees for which every parent node has a value less than or equal to any of its children. This

[issue10511] heapq docs clarification

2010-11-23 Thread Georg Brandl
Georg Brandl added the comment: Great! Applied in r86708. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue1745035] DoS smtpd vulnerability

2010-11-23 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue1745035> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10538] PyArg_ParseTuple("s*") does not always incref object

2010-11-26 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> pitrou nosy: +pitrou ___ Python tracker <http://bugs.python.org/issue10538> ___ ___ Python-bugs-list mailing list Un

[issue10122] Documentation typo fix and a side question

2010-11-26 Thread Georg Brandl
Georg Brandl added the comment: I don't waste my time by merging every little typo fix to the maintenance branches immediately; I rather merge them all at once every now and then. You will certainly understand that nobody is harmed by a stray "d", even if it ha

[issue10299] Add index with links section for built-in functions

2010-11-26 Thread Georg Brandl
Georg Brandl added the comment: Dividing the table in sections makes sense to me; it provides the kind of grouping that is helpful sometimes, but cannot be kept when sorting alphabetically. So when the table is grouped, the actual docs can remain alphabetized

[issue10526] Minor typo in What's New in Python 2.7

2010-11-26 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r86794. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue9312] Fix usage of :option: markup in stdlib ReST docs

2010-11-26 Thread Georg Brandl
Georg Brandl added the comment: Yes, you're right; you could have linked to the correct -c option by using this form: :option:`unittest -c` -- ___ Python tracker <http://bugs.python.org/i

[issue10420] Document of Bdb.effective is wrong.

2010-11-26 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r86798. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue10172] code block has no syntax coloring

2010-11-26 Thread Georg Brandl
Georg Brandl added the comment: This is because the Python used to render doesn't recognize the new-style exception catching; this will be fine once the system is upgraded to 2.6. -- nosy: +georg.brandl resolution: -> later status: open -

[issue10539] Regular expression not checking 'range' element on 1st char in string.

2010-11-26 Thread Georg Brandl
Georg Brandl added the comment: I don't think so; closing as invalid. -- nosy: +georg.brandl resolution: -> invalid status: open -> closed ___ Python tracker <http://bugs.python.

[issue10516] Add list.clear() and list.copy()

2010-11-27 Thread Georg Brandl
Georg Brandl added the comment: Yes, list_clear should be called, but no, it cannot be used directly because a method needs a PyObject* return value. So a wrapper method is needed that looks like listappend() does for list.append(). list_copy() will just look like list_slice() with the

[issue10553] Add optimize argument to builtin compile() and byte-compilation modules

2010-11-27 Thread Georg Brandl
New submission from Georg Brandl : This patch adds an "optimize" parameter to compile(), as discussed in <http://mail.python.org/pipermail/python-ideas/2010-November/008784.html>. I also needed to introduce two new C APIs. Better naming suggestions are welcome. -

[issue10500] Palevo.DZ worm msix86 installer 3.x installer

2010-11-28 Thread Georg Brandl
Georg Brandl added the comment: At the very least we'd need to know what virus scanner, and what version of it, the OP used. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/is

[issue10500] Palevo.DZ worm msix86 installer 3.x installer

2010-11-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file19844/unnamed ___ Python tracker <http://bugs.python.org/issue10500> ___ ___ Python-bugs-list mailin

[issue10544] yield expression inside generator expression does nothing

2010-11-28 Thread Georg Brandl
Georg Brandl added the comment: While the behavior is confusing, I don't think yield inside comprehensions should be disallowed. Rather, the fact that comprehensions have their own scope should be stated clearer. -- nosy: +georg.brandl ___ P

[issue10507] Check well-formedness of reST markup within "make patchcheck"

2010-11-28 Thread Georg Brandl
Georg Brandl added the comment: rst2html doesn't help, since it doesn't recognize Sphinx' and Python's own markup extensions. -- nosy: +georg.brandl ___ Python tracker <http://bug

[issue10560] Fixes for Windows sources

2010-11-28 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> loewis nosy: +loewis ___ Python tracker <http://bugs.python.org/issue10560> ___ ___ Python-bugs-list mailing list Un

[issue1710703] zipfile.ZipFile behavior inconsistent.

2010-11-28 Thread Georg Brandl
Georg Brandl added the comment: Not sure what you're referring to, all occurrences of BadZipfile (except for its definition and its documentation) have been removed in py3k. -- ___ Python tracker <http://bugs.python.org/issu

[issue10562] Change 'j' for imaginary unit into an 'i'

2010-11-28 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file19858/unnamed ___ Python tracker <http://bugs.python.org/issue10562> ___ ___ Python-bugs-list mailin

[issue10242] unittest's assertItemsEqual() method makes too many assumptions about its input

2010-11-29 Thread Georg Brandl
Georg Brandl added the comment: ISTM that the new name is worse than the old name. I hadn't followed this issue, heard assertCountEqual the first time today, and couldn't guess what it does. I'd have assumed that it checks only for equality of the number of items in a se

[issue10584] Bad links in doc of zipfile.open

2010-11-29 Thread Georg Brandl
Georg Brandl added the comment: Fixed in 86881. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue10589] I/O ABC docs should specify which methods have implementations

2010-11-30 Thread Georg Brandl
Georg Brandl added the comment: Not sure what "unsupported methods" means. E.g. "readinto" is listed as provided by RawIOBase in the doc text. -- ___ Python tracker <http://bug

[issue10594] Typo in PyList_New doc.

2010-12-01 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r86914. -- nosy: +georg.brandl resolution: accepted -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue10604] Allocating too much memory for pathes

2010-12-02 Thread Georg Brandl
Georg Brandl added the comment: Before the multiplication, "bufsz" is not aptly named: as your snippet shows it's counting the number of delimiters in the PYTHONPATH. -- nosy: +georg.brandl resolution: -> invalid status: open -> closed _

[issue9299] os.makedirs(): Add a keyword argument to suppress "File exists" exception

2010-12-02 Thread Georg Brandl
Georg Brandl added the comment: Well, you're not to blame since the patch merely extended the definition which was still using obsolete syntax anyway. -- ___ Python tracker <http://bugs.python.org/i

[issue10597] Py_SetPythonHome document shows same url twice.

2010-12-02 Thread Georg Brandl
Georg Brandl added the comment: You can give "two" homes; prefix and exec_prefix. r86933 now links to PYTHONHOME where this is already documented properly. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __

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

2010-12-02 Thread Georg Brandl
Georg Brandl added the comment: Codecs brought back and (un)transform implemented in r86934. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue10562] Change 'j' for imaginary unit into an 'i'

2010-12-02 Thread Georg Brandl
Georg Brandl added the comment: We also should consider a good roadmap to account for the eventual support of quaternions in the language syntax. Since the conventional mathematical symbols for the additional imaginary units of quaternions are j and k, confusion is bound to happen. My

[issue10562] Change 'j' for imaginary unit into an 'i'

2010-12-02 Thread Georg Brandl
Georg Brandl added the comment: I heard that MathWorks has a patent on METHOD AND APPARATUS FOR IMAGINATORIAL FREEDOM, so if that's true we might not be allowed to implement it. -- ___ Python tracker <http://bugs.python.org/is

[issue10299] Add index with links section for built-in functions

2010-12-02 Thread Georg Brandl
Georg Brandl added the comment: That's legacy from the good old latex days. -- ___ Python tracker <http://bugs.python.org/issue10299> ___ ___ Python-bugs-l

[issue10562] Change 'j' for imaginary unit into an 'i'

2010-12-02 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file19908/unnamed ___ Python tracker <http://bugs.python.org/issue10562> ___ ___ Python-bugs-list mailin

[issue10562] Change 'j' for imaginary unit into an 'i'

2010-12-02 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file19910/unnamed ___ Python tracker <http://bugs.python.org/issue10562> ___ ___ Python-bugs-list mailin

[issue10562] Change 'j' for imaginary unit into an 'i'

2010-12-02 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file19911/unnamed ___ Python tracker <http://bugs.python.org/issue10562> ___ ___ Python-bugs-list mailin

[issue10562] Change 'j' for imaginary unit into an 'i'

2010-12-02 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file19912/unnamed ___ Python tracker <http://bugs.python.org/issue10562> ___ ___ Python-bugs-list mailin

[issue10562] Change 'j' for imaginary unit into an 'i'

2010-12-02 Thread Georg Brandl
Georg Brandl added the comment: Sure. I have personally written software where i denotes, in effect, an electrical current. -- ___ Python tracker <http://bugs.python.org/issue10

[issue10528] argparse uses %s in gettext calls

2010-12-02 Thread Georg Brandl
Georg Brandl added the comment: That would be good. While you could argue it's a bug, the fix is also slightly incompatible. -- ___ Python tracker <http://bugs.python.org/is

[issue10562] Change 'j' for imaginary unit into an 'i'

2010-12-02 Thread Georg Brandl
Georg Brandl added the comment: That would be a good question for a numpy/scipy-related mailing list, I guess. -- ___ Python tracker <http://bugs.python.org/issue10

[issue10534] difflib.SequenceMatcher: expose junk sets, deprecate undocumented isb... functions.

2010-12-02 Thread Georg Brandl
Georg Brandl added the comment: Don't worry about doc additions too much; all doc changes can be considered bug fixes. In this patch, it appears that two of the three attributes are new? They should get a versionadded. -- ___ Python tr

[issue1745035] DoS smtpd vulnerability

2010-12-02 Thread Georg Brandl
Georg Brandl added the comment: Committed in r86955. Thanks! -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/iss

[issue940286] pydoc.Helper.help() ignores input/output init parameters

2010-12-02 Thread Georg Brandl
Georg Brandl added the comment: Looks good; committed in r86957. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/is

[issue10360] _weakrefset.WeakSet.__contains__ should not propagate TypeErrors

2010-12-02 Thread Georg Brandl
Georg Brandl added the comment: I agree; committed in r86960. If anyone wants to change this to raise TypeError for objects that are both unhashable and unrefable, please speak up. -- resolution: -> fixed status: open -> closed ___ Python t

[issue10562] Change 'j' for imaginary unit into an 'i'

2010-12-03 Thread Georg Brandl
Georg Brandl added the comment: An imaginary basis maybe? -- ___ Python tracker <http://bugs.python.org/issue10562> ___ ___ Python-bugs-list mailing list Unsub

[issue10549] help(cls1) breaks when cls1 has staticmethod(cls2) attribute

2010-12-03 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r86964. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue2001] Pydoc interactive browsing enhancement

2010-12-03 Thread Georg Brandl
Georg Brandl added the comment: The html_getfile() function is Unix-specific: it constructs paths like path = os.sep + path.replace('%20', ' ') Consequently, its test fails on Windows: http://www.python.org/dev/buildbot/all/builders/x86%20XP-4%203.x/builds/3703/s

[issue10360] _weakrefset.WeakSet.__contains__ should not propagate TypeErrors

2010-12-03 Thread Georg Brandl
Georg Brandl added the comment: Don't worry, it will be ported. -- status: open -> closed ___ Python tracker <http://bugs.python.org/issue10360> ___ _

[issue10562] Change 'j' for imaginary unit into an 'i'

2010-12-03 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: -georg.brandl ___ Python tracker <http://bugs.python.org/issue10562> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10562] Change 'j' for imaginary unit into an 'i'

2010-12-03 Thread Georg Brandl
Changes by Georg Brandl : Removed file: http://bugs.python.org/file19925/unnamed ___ Python tracker <http://bugs.python.org/issue10562> ___ ___ Python-bugs-list mailin

[issue2690] Precompute range length and enhance range subscript support

2010-12-03 Thread Georg Brandl
Georg Brandl added the comment: I'm fine with it: as with the other changes for .count and .index, consistency with the protocols/ABCs the types are members of is not exclusively a new feature. -- status: open -> closed ___ Python tracke

[issue10618] regression in subprocess.call() command quoting

2010-12-03 Thread Georg Brandl
Georg Brandl added the comment: The culprit seems to be r83957, which was done to fix #2304. Assigning to Tim, who committed that revision. -- assignee: -> tim.golden nosy: +georg.brandl, tim.golden ___ Python tracker <http://bugs.pyth

[issue10618] regression in subprocess.call() command quoting

2010-12-03 Thread Georg Brandl
Georg Brandl added the comment: In util.system(), Mercurial adds its own pair of quotes: if os.name == 'nt': cmd = '"%s"' % cmd That will result in one level of quoting too much. Now it seems unfortunate that this change was done in a minor versi

[issue6210] Exception Chaining missing method for suppressing context

2010-12-04 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> pitrou nosy: +pitrou ___ Python tracker <http://bugs.python.org/issue6210> ___ ___ Python-bugs-list mailing list Un

[issue6045] Add more dict methods to dbm interfaces

2010-12-04 Thread Georg Brandl
Georg Brandl added the comment: r87013 adds get() and setdefault() to dbm.gnu -- now gdbm and ndbm have the same set of dict methods available. For me, that is enough to demote this to feature request. There's another issue anyway for iteration protocol support. -- pri

[issue10516] Add list.clear() and list.copy()

2010-12-04 Thread Georg Brandl
Georg Brandl added the comment: Yes, list.copy was also approved IIRC. And it should be a shallow copy, like all other copy methods on builtins. -- ___ Python tracker <http://bugs.python.org/issue10

[issue10553] Add optimize argument to builtin compile() and byte-compilation modules

2010-12-04 Thread Georg Brandl
Georg Brandl added the comment: Added PyZipFile API, and fixed the "optimze". Committed in r87019. -- resolution: -> accepted status: open -> closed ___ Python tracker <http://bugs.py

[issue1513299] Clean up usage of map() in the stdlib

2010-12-04 Thread Georg Brandl
Georg Brandl added the comment: Committed what was left applicable of the patch in r87020. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/iss

[issue1772833] -q (quiet) option for python interpreter

2010-12-04 Thread Georg Brandl
Georg Brandl added the comment: Based on the +1's in #1728488, committed in r87021, with addition to the command-line docs. -- resolution: -> accepted status: open -> closed ___ Python tracker <http://bugs.python.or

[issue1569291] Speed-up in array_repeat()

2010-12-04 Thread Georg Brandl
Georg Brandl added the comment: I changed the patch to look more like unicode_repeat (which addresses Alex' point #2) and committed in r87022. -- resolution: -> accepted status: open -> closed ___ Python tracker <http://b

[issue7905] Shelf 'keyencoding' keyword argument is undocumented and does not work.

2010-12-04 Thread Georg Brandl
Georg Brandl added the comment: Patched up and committed in r87024. -- resolution: -> fixed status: open -> closed versions: -Python 3.1 ___ Python tracker <http://bugs.python.org/

[issue7245] better Ctrl-C support in pdb (program can be resumed) (issue216067)

2010-12-04 Thread Georg Brandl
Georg Brandl added the comment: Committed rest of patch in r87045. Will try to get test_pdb2 in shape and working on all platforms. -- resolution: -> accepted status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue10553] Add optimize argument to builtin compile() and byte-compilation modules

2010-12-04 Thread Georg Brandl
Georg Brandl added the comment: Yes, a doc update is probably a good idea. (But after the freeze :) -- ___ Python tracker <http://bugs.python.org/issue10

[issue10628] Typos in 3.2 what’s new

2010-12-05 Thread Georg Brandl
Georg Brandl added the comment: Applied rest in r87083. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue10626] test_concurrent_futures implicitly installs a logging handler on import

2010-12-05 Thread Georg Brandl
Georg Brandl added the comment: What a nice mess :) Raising priority so that this doesn't get overlooked. -- priority: normal -> deferred blocker ___ Python tracker <http://bugs.python.org

[issue10629] Arbitrary precision

2010-12-05 Thread Georg Brandl
Georg Brandl added the comment: Note that while Python's long type gives you unlimited-size integers, the float type doesn't make such promises: it is just a double-precision float. As such, math.factorial(1234) cannot be interpreted; it would simply be positive

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

2010-12-05 Thread Georg Brandl
Georg Brandl added the comment: I leave this to MAL, on whose behalf I finished this to be in time for beta. -- assignee: -> lemburg ___ Python tracker <http://bugs.python.org/iss

[issue10637] Calling CloseHandle twice (Modules/posixmodule.c)

2010-12-05 Thread Georg Brandl
Georg Brandl added the comment: What is the result of calling it twice? -- ___ Python tracker <http://bugs.python.org/issue10637> ___ ___ Python-bugs-list mailin

[issue10635] Calling subprocess.Popen with preexec_fn=signal.pause blocks forever

2010-12-05 Thread Georg Brandl
Georg Brandl added the comment: After forking, the parent waits for the child's exec call to determine if it succeeds. Otherwise, you wouldn't get an exception in the parent when you do Popen('/bin/ech') or somesuch. -- nosy: +georg.brandl resolution: -&g

[issue10637] Calling CloseHandle twice (Modules/posixmodule.c)

2010-12-05 Thread Georg Brandl
Georg Brandl added the comment: OK, I would say this is an acceptable bug in a beta release. Will fix it after the release is done. -- ___ Python tracker <http://bugs.python.org/issue10

[issue10638] PyArg_ParseTuple: refcount in nested tuples

2010-12-06 Thread Georg Brandl
Georg Brandl added the comment: Duplicate of #6083? -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue10638> ___ ___ Python-bugs-list mailin

[issue10516] Add list.clear() and list.copy()

2010-12-06 Thread Georg Brandl
Georg Brandl added the comment: No, he means mapp_methods. Why don't you simply look at the file? -- ___ Python tracker <http://bugs.python.org/is

[issue10544] yield expression inside generator expression does nothing

2010-12-08 Thread Georg Brandl
Georg Brandl added the comment: FWIW, the "endless loop possibility" is not of issue here, and is simply an artifact of the specific generator function the OP uses. -- ___ Python tracker <http://bugs.python.o

[issue10658] Link to source code is broken

2010-12-09 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r87143. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue10659] Hook scripts for immediate doc build system

2010-12-09 Thread Georg Brandl
Georg Brandl added the comment: The development docs are rebuilt twice a day; that should be enough. As for tracker integration with version control, that is already an issue for the meta tracker at http://psf.upfronthosting.co.za/roundup/meta/issue20 (which you should know, since you

[issue10662] Typo in concurrent.futures, "seperate"

2010-12-09 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r87146. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue10661] ElementTree QName has a very uninformative repr()

2010-12-09 Thread Georg Brandl
Georg Brandl added the comment: Added in r87147. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue10661] ElementTree QName has a very uninformative repr()

2010-12-09 Thread Georg Brandl
Georg Brandl added the comment: Granted. Since the rest of the file uses old-style format, I've kept to it, r87148. -- status: open -> closed ___ Python tracker <http://bugs.python.org

[issue10668] Array tests have nonsense in them

2010-12-10 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r87156. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/issue10668> ___ __

[issue10672] ["with"] new in version 2.6 instead of 2.5

2010-12-10 Thread Georg Brandl
Georg Brandl added the comment: It is in fact new in 2.5, but only available when using "from __future__ import with_statement", which the note near the end of the section details. -- nosy: +georg.brandl resolution: -> invalid status: o

[issue10676] Confusing note in Numeric Types

2010-12-11 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r87169. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue10677] "make altinstall" includes ABI codes in versioned executable name

2010-12-11 Thread Georg Brandl
Georg Brandl added the comment: Nice, definitely a blocker. (BTW, if you configured without any specific --prefix, you shouldn't clobber anything installed by the distribution...) -- ___ Python tracker <http://bugs.python.org/is

[issue10679] "make altinstall" may clobber OS provided scripts

2010-12-11 Thread Georg Brandl
Georg Brandl added the comment: Yes, this already irked me with previous versions. -- ___ Python tracker <http://bugs.python.org/issue10679> ___ ___ Python-bug

[issue10188] tempfile.TemporaryDirectory may throw errors at shutdown

2010-12-11 Thread Georg Brandl
Georg Brandl added the comment: Applied the fix from msg123808 in r87172. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue10188> ___ ___

<    5   6   7   8   9   10   11   12   13   14   >