[issue15285] test_timeout failure when system on IPv4 10.0.x.x subnet

2012-07-07 Thread Ned Deily
Ned Deily added the comment: Actually this is a real test case error. The problem is observed when the system under test is connected to subnet "10.0.x.x". The requested address (10.0.0.0) is then a broadcast address for the subnet. On OS X and (I believe) BSD networking systems, the conne

[issue15290] setAttribute() can fail

2012-07-07 Thread Antoine Pitrou
New submission from Antoine Pitrou : This is a regression from 3.2: Traceback (most recent call last): File "/home/antoine/3sted/twisted/lore/test/test_lore.py", line 542, in test_setTitle secondTitle.setAttribute('class', 'title') File "/home/antoine/opt/lib/python3.3/xml/dom/minidom.p

[issue5931] Python runtime name hardcoded in wsgiref.simple_server

2012-07-07 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed versions: +Python 3.3 -Python 3.4 ___ Python tracker ___ ___

[issue14826] urllib2.urlopen fails to load URL

2012-07-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset 01c8d800efd2 by Senthil Kumaran in branch '3.2': Fix issue14826 - make urllib.request.Request quoted url consistent with URLOpener open method. http://hg.python.org/cpython/rev/01c8d800efd2 New changeset e6bb919b2623 by Senthil Kumaran in branch '

[issue14791] setup.py only adds /prefix/lib, not /prefix/lib64

2012-07-07 Thread Matthias Klose
Matthias Klose added the comment: using sys.maxsize isn't safe for cross builds. it should at least guarded by 'if not cross_compiling'. I still think that the preferred way to get the library dirs is to ask the compiler (patch attached), however this will add "incompatible" library dirs as

[issue14826] urllib2.urlopen fails to load URL

2012-07-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset d931a3b64fd6 by Senthil Kumaran in branch '2.7': Fix issue14826 - make urllib.request.Request quoted url consistent with URLOpener open method. http://hg.python.org/cpython/rev/d931a3b64fd6 -- ___ Pytho

[issue14826] urllib2.urlopen fails to load URL

2012-07-07 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: +Python 2.7, Python 3.2 ___ Python tracker ___ __

[issue14826] urllib2.urlopen fails to load URL

2012-07-07 Thread Senthil Kumaran
Senthil Kumaran added the comment: Thanks for the patch, Stephen. -- nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mai

[issue15288] Clarify the pkgutil.walk_packages() note

2012-07-07 Thread Brett Cannon
Brett Cannon added the comment: Probably linking the term "importers" into the glossary should be enough. -- nosy: +brett.cannon ___ Python tracker ___ _

[issue15256] Typo in error message

2012-07-07 Thread Brett Cannon
Brett Cannon added the comment: Patch looks fine. Next time I have python-dev time I will commit it. -- assignee: -> brett.cannon stage: patch review -> commit review ___ Python tracker __

[issue15110] strange Tracebacks with importlib

2012-07-07 Thread Brett Cannon
Brett Cannon added the comment: Looks good to me. Go ahead and commit it. -- assignee: brett.cannon -> pitrou ___ Python tracker ___

[issue15110] strange Tracebacks with importlib

2012-07-07 Thread Brett Cannon
Changes by Brett Cannon : -- stage: patch review -> commit review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue15275] isinstance is called a more times that needed in ntpath

2012-07-07 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue15270] "Economy of Expression" section outdated

2012-07-07 Thread Raymond Hettinger
Raymond Hettinger added the comment: The point was that the docs shouldn't "write a book" where briefer explanations suffice. The mention of super() may not be the best example because many "experts" still don't get what it is all about regardless of how much or how little much is written.

[issue14590] ConfigParser doesn't strip inline comment when delimiter occurs earlier without preceding space.

2012-07-07 Thread Éric Araujo
Éric Araujo added the comment: If this is a bugfix, can you backport it to stable branches? If it’s a new, incompatible behavior change, then it was committed too late for 3.3 in theory. -- ___ Python tracker __

[issue15252] Delivery reports about your e-mail

2012-07-07 Thread Éric Araujo
Changes by Éric Araujo : Removed file: http://bugs.python.org/file26259/transcript.zip ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue15252] Delivery reports about your e-mail

2012-07-07 Thread Éric Araujo
Changes by Éric Araujo : Removed file: http://bugs.python.org/file26260/unnamed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue9788] atexit and execution order

2012-07-07 Thread Éric Araujo
Éric Araujo added the comment: Reopened as #15233. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue15233] atexit: guarantee order of execution of registered functions?

2012-07-07 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +benjamin.peterson, giampaolo.rodola, meador.inge, python-dev ___ Python tracker ___ ___ Python-bugs

[issue14791] setup.py only adds /prefix/lib, not /prefix/lib64

2012-07-07 Thread Ned Deily
Ned Deily added the comment: Also OS X universal builds have many of the characteristics of a cross-build. In particular, one executable (like the python interpreter) can contain both 32-bit and 64-bit architecture files. So tests for 32-bit vs 64-bit at build time using the running compile

[issue14826] urllib2.urlopen fails to load URL

2012-07-07 Thread Ross Lagerwall
Ross Lagerwall added the comment: It looks like this broke the build bots: http://buildbot.python.org/all/builders/AMD64%20Ubuntu%20LTS%202.7/builds/66/steps/test/logs/stdio -- assignee: -> orsenthil nosy: +rosslagerwall status: closed -> open ___ P

[issue7897] Support parametrized tests in unittest

2012-07-07 Thread Nick Coghlan
Nick Coghlan added the comment: As another in-the-standard-library uses case: my additions to the ipaddress test suite are really crying out for parameterised test support. My current solution is adequate for coverage and debugging purposes (a custom assert applied to multiple values in a tes

[issue15125] argparse: positional arguments containing - in name not handled well

2012-07-07 Thread Nicu Stiurca
Nicu Stiurca added the comment: Florent, there are several reasons I think this is a valid use case. First, for optional arguments, '-' gets automatically replaced with '_' as the destination. I don't see any reason why optional and positional arguments should be treated differently when deci

<    1   2   3