[issue15184] Test failure in test_sysconfig_module

2012-07-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 31349bc40214 by Ned Deily in branch 'default': Issue #15184: Fix test__remove_unsupported_archs failures on 10.6 http://hg.python.org/cpython/rev/31349bc40214 -- status: pending -> open ___ Python tracke

[issue13922] argparse handling multiple "--" in args improperly

2012-07-21 Thread Warren Turkal
Warren Turkal added the comment: Thanks for fixing this issue. You guys are great! wt On Sat, Jul 21, 2012 at 8:00 PM, R. David Murray wrote: > > R. David Murray added the comment: > > Committed. Thanks, Jeff. By the way, although this patch isn't big > enough to require it, it would be gr

[issue13720] argparse print_help() fails if COLUMNS is set to a low value

2012-07-21 Thread Russell Sim
Russell Sim added the comment: Hi, I am having the same problem while running ipython in a batch mode emacs. Apparently you can't even start ipython if the columns are less than 27, since they use the argparse library for the magic method help printing and they preformat the strings at impo

[issue13922] argparse handling multiple "--" in args improperly

2012-07-21 Thread R. David Murray
R. David Murray added the comment: Committed. Thanks, Jeff. By the way, although this patch isn't big enough to require it, it would be great if you would submit a contributor agreement: http://www.python.org/psf/contrib. -- resolution: -> fixed stage: -> committed/rejected status

[issue13922] argparse handling multiple "--" in args improperly

2012-07-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 18b114be013e by R David Murray in branch '3.2': #13922: argparse no longer incorrectly strips '--' after the first one. http://hg.python.org/cpython/rev/18b114be013e New changeset bd2c167dfabc by R David Murray in branch '2.7': #13922: argparse no

[issue14489] repr() function link on the built-in function documentation is incorrect

2012-07-21 Thread H Xu
H Xu added the comment: I think this has been fixed. Where did you see the incorrect link? -- ___ Python tracker ___ ___ Python-bugs-

[issue12353] argparse cannot handle empty arguments

2012-07-21 Thread R. David Murray
R. David Murray added the comment: Done. -- resolution: -> fixed stage: test needed -> committed/rejected status: open -> closed ___ Python tracker ___

[issue12353] argparse cannot handle empty arguments

2012-07-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset ac53876d1cc8 by R David Murray in branch '3.2': #12353: argparse now correctly handles null argument values. http://hg.python.org/cpython/rev/ac53876d1cc8 New changeset c4ad8a6eb0df by R David Murray in branch 'default': Merge #12353: argparse now

[issue15250] document that filecmp.dircmp comparisons are "shallow"

2012-07-21 Thread Senthil Kumaran
Senthil Kumaran added the comment: If by attribution, if you mean, proper mention of credits/ acks, during the commit, I shall add it. Also, I agree that "shallow" should be documented. But there were few more places which were lacking, so I ended up with expanding docs after reading the code. I

[issue14578] importlib doesn't check Windows registry for paths

2012-07-21 Thread Brian Curtin
Brian Curtin added the comment: Can someone tell me where you want this changed? I guess Lib/imp.py in the find_module function, based on previous mention of imp.find_module? That's shown as deprecated so I'm hesitant to start there. I don't really know anything about importlib, especially no

[issue15417] Add support for csh and fish in venv activation scripts

2012-07-21 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +carljm, vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue15250] document that filecmp.dircmp comparisons are "shallow"

2012-07-21 Thread Chris Jerdonek
Chris Jerdonek added the comment: For attribution purposes and to keep the issue focused, shouldn't those other changes be added as part of a separate issue? The changes you added are much larger than mine, and address cosmetic issues and other issues unrelated to the original point about dir

[issue14392] type=bool doesn't raise error in argparse.Action

2012-07-21 Thread Toshihiro Kamishima
Toshihiro Kamishima added the comment: > - type -- The type which the command-line arguments should be converted > to, should be one of 'string', 'int', 'float', 'complex' or a > callable object that accepts a single string argument. If None, > 'string' is assumed. I

[issue15417] Add support for csh and fish in venv activation scripts

2012-07-21 Thread Andrew Svetlov
Andrew Svetlov added the comment: No idea if Doc/using/venv-create.inc should be updated to reflect support of new shells. virtualenv does nothing in own documentation btw. -- ___ Python tracker ___

[issue15417] Add support for csh and fish in venv activation scripts

2012-07-21 Thread Andrew Svetlov
New submission from Andrew Svetlov : I have added required shell files -- keywords: +needs review, patch Added file: http://bugs.python.org/file26474/issue15417.diff ___ Python tracker _

[issue15417] Add support for csh and fish in venv activation scripts

2012-07-21 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- components: Library (Lib) nosy: asvetlov priority: normal severity: normal status: open title: Add support for csh and fish in venv activation scripts versions: Python 3.3 ___ Python tracker

[issue15250] document that filecmp.dircmp comparisons are "shallow"

2012-07-21 Thread Senthil Kumaran
Senthil Kumaran added the comment: Thanks for this report. I saw that filecmp.rst could be improved a bit further too. I added some additional improvements to the docs in addition to the one you mentioned in the patch. -- assignee: docs@python -> orsenthil nosy: +orsenthil Added file:

[issue15415] Add temp_dir() and change_cwd() to test.support

2012-07-21 Thread Chris Jerdonek
Chris Jerdonek added the comment: Trying again to have the patch apply cleanly (for the review link). -- Added file: http://bugs.python.org/file26472/issue-15415-3.patch ___ Python tracker

[issue15269] Document dircmp.left and dircmp.right

2012-07-21 Thread Chris Jerdonek
Chris Jerdonek added the comment: > Given that we have self.left_list and self.left_only ( and self.right_list > and self.right_only), I am not sure how adding self.left/self.right is going > to add more meaning? It adds more meaning because you can't construct self.left and self.right from

[issue14856] argparse: creating an already defined subparsers does not raises an exception

2012-07-21 Thread Steven Bethard
Steven Bethard added the comment: Yeah, overwriting the existing parser is probably not typically what the user intended. However, I could see someone doing this if, say, they had a parser designed by another module writer, and they wanted to use it but just change one of the sub-parsers or

[issue9625] argparse: Problem with defaults for variable nargs when using choices

2012-07-21 Thread Steven Bethard
Steven Bethard added the comment: I agree that this looks like a bug. I think the fix is something like the attached patch, but it needs some tests to make sure that it fixes your problem. -- keywords: +patch Added file: http://bugs.python.org/file26471/issue9625.diff

[issue15416] 3 * [] gives a list of 3 cross-referenced lists, a[1]='blah' writes in to ALL three!

2012-07-21 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: The * operator does not create copies, it duplicates references to existing objects. Please read: http://docs.python.org/faq/programming.html#how-do-i-create-a-multidimensional-list -- nosy: +amaury.forgeotdarc resolution: -> invalid status: op

[issue15269] Document dircmp.left and dircmp.right

2012-07-21 Thread Senthil Kumaran
Senthil Kumaran added the comment: Given that we have self.left_list and self.left_only ( and self.right_list and self.right_only), I am not sure how adding self.left/self.right is going to add more meaning? It would simply point to the dir1 and dir2 arguments that are being passed. Also, i

[issue13818] argparse: -h listening required options under optional arguments

2012-07-21 Thread Steven Bethard
Changes by Steven Bethard : -- resolution: -> duplicate status: open -> closed superseder: -> argparse: Default Help Message Lists Required Args As Optional ___ Python tracker

[issue15415] Add temp_dir() and change_cwd() to test.support

2012-07-21 Thread Chris Jerdonek
Chris Jerdonek added the comment: Fixing patch so it will apply cleanly. -- Added file: http://bugs.python.org/file26470/issue-15415-2.patch ___ Python tracker ___ _

[issue11807] Documentation of add_subparsers lacks information about parametres

2012-07-21 Thread Steven Bethard
Steven Bethard added the comment: Looks good. There was one typo in "parametres" that I've fixed. Should be ready to apply. -- Added file: http://bugs.python.org/file26469/11807_3.patch ___ Python tracker ___

[issue15416] 3 * [] gives a list of 3 cross-referenced lists, a[1]='blah' writes in to ALL three!

2012-07-21 Thread Martin Mokrejs
Changes by Martin Mokrejs : -- title: 3 * [] gives a list of 3 cross-referenced lists, a[1]='blash -> 3 * [] gives a list of 3 cross-referenced lists, a[1]='blah' writes in to ALL three! ___ Python tracker ___

[issue15416] 3 * [] gives a list of 3 cross-referenced lists, a[1]='blash

2012-07-21 Thread Martin Mokrejs
New submission from Martin Mokrejs : Hi, I thought that I can easily create a list of, say 3, nested lists: $ python Python 2.7.3 (default, May 17 2012, 21:10:41) [GCC 4.5.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> 3 * [[]] [[], [], []] >>> a=3 * [

[issue15415] Add temp_dir() and change_cwd() to test.support

2012-07-21 Thread Chris Jerdonek
Chris Jerdonek added the comment: Attaching a patch with tests. -- keywords: +patch stage: -> patch review Added file: http://bugs.python.org/file26468/issue-15415-1.patch ___ Python tracker _

[issue13966] Add disable_interspersed_args() to argparse.ArgumentParser

2012-07-21 Thread Steven Bethard
Steven Bethard added the comment: The argparse changes and tests look good. The new method needs to be documented. You can see some other things (e.g. Misc/NEWS) that also need to be updated by running "make patchcheck" as described here: http://docs.python.org/devguide/patch.html --

[issue12353] argparse cannot handle empty arguments

2012-07-21 Thread Steven Bethard
Steven Bethard added the comment: Yes, the original patch looks fine to me. I applied and tested it, and it works as expected. Please go ahead and apply. -- ___ Python tracker ___

[issue12014] str.format parses replacement field incorrectly

2012-07-21 Thread Ben Wolfson
Ben Wolfson added the comment: Ping! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue12776] argparse: type conversion function should be called only once

2012-07-21 Thread Steven Bethard
Steven Bethard added the comment: The patch looks good to me. I've updated it for trunk and to include Mike Meyer's additional test. All argparse tests pass. Anyone who's able to commit and backport, please do. (I should be able to commit myself, but it's now been too long and my SSH key see

[issue10652] test___all_ + test_tcl fails (Windows installed binary)

2012-07-21 Thread R. David Murray
R. David Murray added the comment: Yeah, we probably do not want to go there, even though technically I think those would be bugs. But bugs that it would only be "nice" to fix, not necessary to fix. -- ___ Python tracker

[issue10652] test___all_ + test_tcl fails (Windows installed binary)

2012-07-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: > I wonder if it would be sensible to have test___all__ restore the > state of sys.modules after it runs. Probably not. I don't think we want to debug the consequences of having duplicate modules lying around by way of old references registered here and there.

[issue10652] test___all_ + test_tcl fails (Windows installed binary)

2012-07-21 Thread R. David Murray
R. David Murray added the comment: I wonder if it would be sensible to have test___all__ restore the state of sys.modules after it runs. -- ___ Python tracker ___ _

[issue15392] Create a unittest framework for IDLE

2012-07-21 Thread R. David Murray
R. David Murray added the comment: The screen flickers a bunch, so something involving my display is certainly happening. As for runtktests...test suites that live in the package as opposed to the test directory require support files to gather the tests to be run. This can be done by the te

[issue15415] Add temp_dir() and change_cwd() to test.support

2012-07-21 Thread Chris Jerdonek
New submission from Chris Jerdonek : This issue is partly in service to issue 15376, which is to refactor test_runpy's walk_package support code into a common location. Currently, the temp_cwd() context manager in test.support does two things: it creates a temp directory, and it changes the cu

[issue14391] misc TYPO in argparse.Action docstring

2012-07-21 Thread R. David Murray
R. David Murray added the comment: I reworded it so that it is clear we are talking about types and not strings. -- nosy: +r.david.murray resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed type: enhancement -> behavior versions: +Python 3.2, Python 3.

[issue14391] misc TYPO in argparse.Action docstring

2012-07-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset e7f205ce080e by R David Murray in branch '3.2': #14391: clarify docstring discussion of Action's 'type' argument's value. http://hg.python.org/cpython/rev/e7f205ce080e New changeset 3d1ea33611c1 by R David Murray in branch 'default': Merge #14391:

[issue13824] argparse.FileType opens a file and never closes it

2012-07-21 Thread Steven Bethard
Steven Bethard added the comment: So I generally agree that FileType is not what you want for anything but quick scripts that can afford to either leave a file open or to close stdin and/or stdout. However, quick scripts are an important use case for argparse, so I don't think we should get r

[issue8893] file.{read,readlines} behaviour on Solaris

2012-07-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Is there a test for this we could add? You could certainly add a test to Lib/test/test_file2k.py. -- versions: -Python 2.6 ___ Python tracker __

[issue1669539] Improve Windows os.path.join (ntpath.join) "smart" joining

2012-07-21 Thread R. David Murray
R. David Murray added the comment: I've opened a issue 15414 for fixing the documentation for os.path.join on Windows, and possibly existing bugs. So I'm reclassifying this as a feature request, since that is most of what the discussion is about. -- dependencies: +os.path.join behavi

[issue15414] os.path.join behavior on Windows (ntpath.join) is unexpected and not well documented

2012-07-21 Thread R. David Murray
New submission from R. David Murray : In looking at another os.path.join documentation issue I tried the Windows join to see if it matched the docs, and found that it was very unclear. I searched the tracker and found Issue 1669539, which contains much relevant discussion but also much discu

[issue14504] Suggestion to improve argparse's help messages for "store_const"

2012-07-21 Thread Steven Bethard
Steven Bethard added the comment: Special casing the formatting of 'store_const' makes me nervous because formatting is already complicated and it doesn't know anything about action types. But feel free to propose a patch! In the meantime: - propagate the default to all the options You can

[issue14449] argparse optional arguments should follow getopt_long(3)

2012-07-21 Thread Steven Bethard
Steven Bethard added the comment: I don't think this is going to change. It's basically a consequence of having a unified handling of nargs='?', nargs='*', nargs='+', etc. These will all consume as many arguments as they can, and argparse doesn't distinguish between arguments that are concate

[issue14392] type=bool doesn't raise error in argparse.Action

2012-07-21 Thread Steven Bethard
Steven Bethard added the comment: I can't find anywhere in the documentation where type=bool, type=unicode or type=long are disallowed. They shouldn't be disallowed. If you want to pass type=bool, argparse should not stop you. And it currently doesn't: >>> parser = argparse.ArgumentParser() >

[issue10854] Output .pyd name in error message of ImportError when DLL load fails

2012-07-21 Thread Piotr Dobrogost
Changes by Piotr Dobrogost : -- nosy: +piotr.dobrogost ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue14391] misc TYPO in argparse.Action docstring

2012-07-21 Thread Steven Bethard
Steven Bethard added the comment: The patch supplied was in reverse, but the bug report was correct. You can't pass "type=string" since there's no string callable, only a str callable. The docstring is confusing because the quotes make it looks like we mean the string 'str', when we actually

[issue14489] repr() function link on the built-in function documentation is incorrect

2012-07-21 Thread Piotr Dobrogost
Piotr Dobrogost added the comment: As of today the link is still not fixed although I guess it should have been due to the patch mentioned in http://bugs.python.org/issue14489#msg157543 -- nosy: +piotr.dobrogost ___ Python tracker

[issue14365] argparse: subparsers, argument abbreviations and ambiguous option

2012-07-21 Thread Steven Bethard
Steven Bethard added the comment: I think the real fix needs to search recursively though all subparsers. Here's a first draft of a patch that does this. I believe your sample code works after this patch. I don't have the time to turn your bug report into proper test (and add a test for the

[issue10652] test___all_ + test_tcl fails (Windows installed binary)

2012-07-21 Thread Georg Brandl
Georg Brandl added the comment: It would be much better to have an actual patch to review. Then, we need someone who can test it on Windows. -- ___ Python tracker ___

[issue10652] test___all_ + test_tcl fails (Windows installed binary)

2012-07-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: I would like to see my patch (cut and paste from message above) or something like it in the next beta. It fixes the problem (since forever?) of tcl/tk/ttk tests not running properly (at least on windows) as part of the test suite. (I presume the buildbots hav

[issue15295] Document PEP 420 namespace packages

2012-07-21 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: On Jul 21, 2012, at 02:23 PM, Georg Brandl wrote: >Ping. Barry? (It's not strictly necessary to have the docs for b2, but could >you give me a rough estimate when you'll do this?) Unfortunately, I lost a bunch of work with a disk crash, but I might have salva

[issue10091] ast.literal_eval does not handled new set literals

2012-07-21 Thread Piotr Dobrogost
Piotr Dobrogost added the comment: I totally agree with Eric's statement that "Set literals, a new feature indeed, have been backported to 2.7 and 3.1. The lack of support in ast.literal_eval is arguably a bug." I came here from "set literal syntax support in Python 2.7" question at Stackove

[issue13922] argparse handling multiple "--" in args improperly

2012-07-21 Thread Steven Bethard
Steven Bethard added the comment: This patch looks like the right fix to me. The tests look good too. -- ___ Python tracker ___ ___ P

[issue15342] os.path.join behavior

2012-07-21 Thread R. David Murray
R. David Murray added the comment: I've added the sentence to the docstring, as you suggested. Thanks for the suggestion. -- versions: +Python 3.2, Python 3.3 ___ Python tracker _

[issue15342] os.path.join behavior

2012-07-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 61d0e3526a51 by R David Murray in branch '3.2': #15342: Add clarifying sentence to posixpath.join docstring. http://hg.python.org/cpython/rev/61d0e3526a51 New changeset 30d4d1528b58 by R David Murray in branch 'default': Merge #15342: Add clarifyin

[issue15184] Test failure in test_sysconfig_module

2012-07-21 Thread Ned Deily
Ned Deily added the comment: I believe I've fixed the buildbot failure but the buildbot is not very stable and test runs aren't always completing. I'll check back on it later. -- resolution: -> fixed status: open -> pending ___ Python tracker

[issue15188] test_ldshared_value failure on OS X using python.org Pythons

2012-07-21 Thread Ned Deily
Ned Deily added the comment: Pending the final resolution of Issue15298, this changes ensures that the temporary build paths do not leak into the installed interpreter. At the moment, the test is still failing because the CFLAGS values returned by the two sysconfigs differ in whitespace. --

[issue15188] test_ldshared_value failure on OS X using python.org Pythons

2012-07-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset cd883160ad97 by Ned Deily in branch 'default': Issue #15188: Modify the OS X build_installer script to remove temporary http://hg.python.org/cpython/rev/cd883160ad97 -- nosy: +python-dev ___ Python track

[issue7214] TreeBuilder.end(tag) differs between cElementTree and ElementTree

2012-07-21 Thread Eli Bendersky
Eli Bendersky added the comment: Even if this is a problem at all, it's certainly not something that must be fixed by 3.3 -- versions: +Python 3.4 -Python 3.3 ___ Python tracker ___

[issue15184] Test failure in test_sysconfig_module

2012-07-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 295b715b6875 by Ned Deily in branch 'default': Issue #15184: Ensure configuration-related environment variables http://hg.python.org/cpython/rev/295b715b6875 -- ___ Python tracker

[issue8893] file.{read,readlines} behaviour on Solaris

2012-07-21 Thread koobs
koobs added the comment: uname -rs: FreeBSD 9.0-RELEASE-p3 (AMD64) python -V: Python 2.7.3 `python readline.py: read : ['oink', 'oink'] readlines: ['oink\n', 'oink\n'] readline : Without the patch: read : [] readlines: [] readline : Is there a test for this we could add? FreeBSD

[issue15413] os.times() disappeared under Windows

2012-07-21 Thread Antoine Pitrou
New submission from Antoine Pitrou : This is from issue #15118. Python 3.3.0b1 (v3.3.0b1:e15c554cd43e+, Jun 26 2012, 20:41:17) [MSC v.1600 64 bi t (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import os >>> os.times() Traceback (most recent call las

[issue14578] importlib doesn't check Windows registry for paths

2012-07-21 Thread Brian Curtin
Brian Curtin added the comment: Sorry, I've been too busy to get caught up with this. I'm away most of today but I can try to take a look tonight. -- ___ Python tracker ___ ___

[issue15381] Optimize BytesIO to so less reallocations when written, similarly to StringIO

2012-07-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > It's under 64-bit Linux, Intel Core i5 CPU. Are you sure you're testing > in non-debug mode? I use 32-bit Linux. > That said, the numbers under Windows suggest me that Eli's original idea > (append and then join at the end) would be more robust. I agree,

[issue13612] xml.etree.ElementTree says unknown encoding of a regular encoding

2012-07-21 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +eli.bendersky ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue9708] cElementTree iterparse does not support "parser" argument

2012-07-21 Thread Florent Xicluna
Florent Xicluna added the comment: Either the documentation or the implementation should be fixed in 3.3, because they do not match. -- nosy: +eli.bendersky versions: +Python 3.3 ___ Python tracker ___

[issue15184] Test failure in test_sysconfig_module

2012-07-21 Thread Ned Deily
Ned Deily added the comment: The new buildbot failure is due to that buildbot using env variables for some of the config variables during execution. The new tests need to isolate themselves from that. Should have a fix shortly. -- ___ Python trac

[issue15184] Test failure in test_sysconfig_module

2012-07-21 Thread koobs
koobs added the comment: FYI, Added two FreeBSD based buildslaves to the cluster not long ago, one is dedicated to python+CLANG http://buildbot.python.org/all/buildslaves/koobs-freebsd-clang -- nosy: +koobs ___ Python tracker

[issue15184] Test failure in test_sysconfig_module

2012-07-21 Thread Georg Brandl
Georg Brandl added the comment: OK, test passes here now with clang installed. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue4221] inconsistent exception from int is confusing

2012-07-21 Thread Florent Xicluna
Florent Xicluna added the comment: Proposed as won't fix for the 2.x series. -- resolution: -> wont fix stage: -> committed/rejected status: open -> closed ___ Python tracker _

[issue7710] Inconsistent Exception for int() conversion

2012-07-21 Thread Florent Xicluna
Florent Xicluna added the comment: The behavior seems acceptable in 2.7 too. >>> int('\0') Traceback (most recent call last): File "", line 1, in ValueError: invalid literal for int() with base 10: '' >>> int('\01') Traceback (most recent call last): File "", line 1, in ValueError: invali

[issue9773] test_tarfile fails because of inaccurate mtime on AMD64 debian parallel buildbot

2012-07-21 Thread Florent Xicluna
Florent Xicluna added the comment: Yet another issue with the filesystem on the same buildbot: see issue 9772. -- resolution: -> works for me stage: needs patch -> status: open -> closed superseder: -> test_pep277 failure on AMD64 debian parallel buildbot ___

[issue15184] Test failure in test_sysconfig_module

2012-07-21 Thread Ned Deily
Ned Deily added the comment: The problem isn't with clang. The problem was that the test appeared to be taking an OS X only code path apparently because a clang was installed on a Gentoo machine. -- ___ Python tracker

[issue15184] Test failure in test_sysconfig_module

2012-07-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Buildbot test failure: > http://buildbot.python.org/all/builders/AMD64%20Snow%20Leopard%203.x/builds/66 These failures are not new, and the buildbot is an unstable one. As for clang, the Lion buildbot uses it and is green. Its configure line is "./configure

[issue15151] Documentation for Signature, Parameter and signature in inspect module

2012-07-21 Thread Georg Brandl
Georg Brandl added the comment: Docs issues won't block b2. -- priority: release blocker -> deferred blocker ___ Python tracker ___ _

[issue14814] Implement PEP 3144 (the ipaddress module)

2012-07-21 Thread Georg Brandl
Georg Brandl added the comment: IIUC only docs are missing now? That's not a b2 blocker then. -- priority: release blocker -> deferred blocker ___ Python tracker ___ __

[issue15298] _sysconfigdata is generated in srcdir, not builddir

2012-07-21 Thread Georg Brandl
Georg Brandl added the comment: The bug certainly is a valid annoyance, but I won't hold up beta2 for it. -- priority: release blocker -> deferred blocker ___ Python tracker ___

[issue15184] Test failure in test_sysconfig_module

2012-07-21 Thread Georg Brandl
Georg Brandl added the comment: Damn, I don't have clang on this machine. Will install and test. -- ___ Python tracker ___ ___ Pytho

[issue15184] Test failure in test_sysconfig_module

2012-07-21 Thread Ned Deily
Ned Deily added the comment: Buildbot test failure: http://buildbot.python.org/all/builders/AMD64%20Snow%20Leopard%203.x/builds/66 -- resolution: fixed -> status: pending -> open ___ Python tracker __

[issue15295] Document PEP 420 namespace packages

2012-07-21 Thread Georg Brandl
Georg Brandl added the comment: Ping. Barry? (It's not strictly necessary to have the docs for b2, but could you give me a rough estimate when you'll do this?) -- nosy: +georg.brandl ___ Python tracker __

[issue15037] curses.unget_wch and test_curses fail when linked with ncurses 5.7 and earlier

2012-07-21 Thread Georg Brandl
Georg Brandl added the comment: Documentation issue, can be resolved after b2. -- priority: release blocker -> deferred blocker ___ Python tracker ___ __

[issue14578] importlib doesn't check Windows registry for paths

2012-07-21 Thread Georg Brandl
Georg Brandl added the comment: Ping. Brian? I'd rather have some testing period for this, so I'm reluctant to release b2 without it. -- ___ Python tracker ___ ___

[issue15147] Remove packaging from the stdlib

2012-07-21 Thread Georg Brandl
Georg Brandl added the comment: Eric, ping? When can this be closed? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue12411] cgi.parse_multipart is broken on 3.x

2012-07-21 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue1573931] WSGI, cgi.FieldStorage incompatibility

2012-07-21 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +orsenthil versions: +Python 3.3 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list maili

[issue12321] documentation of ElementTree.find

2012-07-21 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +eli.bendersky ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue12322] ElementPath 1.3 expressions documentation

2012-07-21 Thread Florent Xicluna
Changes by Florent Xicluna : -- keywords: +easy nosy: +eli.bendersky versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-list

[issue12323] ElementPath 1.3 expressions

2012-07-21 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +eli.bendersky versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue8583] Hardcoded namespace_separator in the cElementTree.XMLParser

2012-07-21 Thread Florent Xicluna
Florent Xicluna added the comment: See also issue 13378 which proposes custom namespace maps for serializing. -- components: +XML nosy: +eli.bendersky versions: +Python 3.4 -Python 3.2 ___ Python tracker __

[issue6625] UnicodeEncodeError on pydoc's CLI

2012-07-21 Thread Florent Xicluna
Changes by Florent Xicluna : -- stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue7990] xml.etree.cElementTree lacks full dir() on Element

2012-07-21 Thread Florent Xicluna
Changes by Florent Xicluna : -- assignee: effbot -> nosy: +eli.bendersky stage: needs patch -> patch review ___ Python tracker ___ ___

[issue5166] ElementTree and minidom don't prevent creation of not well-formed XML

2012-07-21 Thread Florent Xicluna
Changes by Florent Xicluna : -- assignee: effbot -> components: +XML versions: +Python 3.4 -Python 2.7, Python 3.2 ___ Python tracker ___

[issue1610654] cgi.py multipart/form-data

2012-07-21 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue3783] dbm.sqlite proof of concept

2012-07-21 Thread Florent Xicluna
Changes by Florent Xicluna : -- versions: +Python 3.4 -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9692] UnicodeDecodeError in ElementTree.tostring()

2012-07-21 Thread Florent Xicluna
Florent Xicluna added the comment: I propose to close this as won't fix. The upgrade to ElementTree 1.3 brought some consistency when dealing with Unicode and encodings. The reported behavior was only seen in Python 2.7, when using bytes improperly. -- nosy: +eli.bendersky resolution

[issue9771] add an optional "default" argument to tokenize.detect_encoding

2012-07-21 Thread Florent Xicluna
Changes by Florent Xicluna : -- versions: +Python 3.4 -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15195] test_distutils fails when ARCHFLAGS is set on a Mac

2012-07-21 Thread Ned Deily
Ned Deily added the comment: This problem has been fixed in changeset d76b83803e7e for Issue15184 which, among other things, tries to make the handling of ARCHFLAGS more consistent. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed superseder: -> Test failu

  1   2   >