[issue7735] socket.create_connection() creates IPv6 DNS requests even when built with --disable-ipv6

2012-12-30 Thread Daniel Shahaf
Changes by Daniel Shahaf pyt...@danielsh.fastmail.net: -- title: python creates IPv6 DNS requests even when built with --disable-ipv6 - socket.create_connection() creates IPv6 DNS requests even when built with --disable-ipv6 ___ Python tracker

[issue15803] Incorrect docstring on ConfigParser.items()

2012-12-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 850503a117a9 by Łukasz Langa in branch '3.2': Fixes issue #15803: incorrect `ConfigParser.items()` docstring http://hg.python.org/cpython/rev/850503a117a9 New changeset cc277b25eae7 by Łukasz Langa in branch '3.3': Merged fix for #15803 from 3.2

[issue15803] Incorrect docstring on ConfigParser.items()

2012-12-30 Thread Łukasz Langa
Łukasz Langa added the comment: Patch committed. Thanks for your report, Nathan. -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15803 ___

[issue15803] Incorrect docstring on ConfigParser.items()

2012-12-30 Thread Łukasz Langa
Changes by Łukasz Langa luk...@langa.pl: -- resolution: - fixed stage: patch review - committed/rejected ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15803 ___

[issue16320] Establish order in bytes/string dependencies

2012-12-30 Thread Meador Inge
Meador Inge added the comment: The cleanup of BYTESTR_DEPS and UNICODE_DEPS seems reasonable, but can you explain the rationale behind removing the additional dependencies on formatter_unicode.c? Why were those dependencies ever needed (I can't see the dependencies from reading

[issue16320] Establish order in bytes/string dependencies

2012-12-30 Thread Meador Inge
Meador Inge added the comment: Sorry, the BYTESTR_DEPS dependencies were already there pre-8beaa9a37387. I am still curious why they are needed. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16320

[issue12004] PyZipFile.writepy gives internal error on syntax errors

2012-12-30 Thread Ben Morgan
Ben Morgan added the comment: Okay, I've emailed a contributor agreement. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12004 ___ ___

[issue16820] configparser.ConfigParser.clean and .update bugs

2012-12-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset dc5adc08f1a8 by Łukasz Langa in branch '3.2': Fixes `parser.clean()` reported in issue #16820. http://hg.python.org/cpython/rev/dc5adc08f1a8 New changeset 4fc2fea807e6 by Łukasz Langa in branch '3.3': Merged `parser.clean()` fix (issue #16820) from

[issue16820] configparser.ConfigParser.clean and .update bugs

2012-12-30 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks for your report, Wolfgang. The `clean()` method is now fixed. The `update()` situation is more complicated, however. The mapping protocol defines that mapping.update({'a': 'b', 'c': 'd'}) and mapping.update(a='b', c='d') are equivalent to

[issue16823] Python crashes on running tkinter code with threads

2012-12-30 Thread Sarbjit singh
New submission from Sarbjit singh: I have written a python tkinter code using threads so as the tkinter wizard updates automatically by tkinter mainloop running in the main thread and background process running in separate thread. But I noticed, that python crashes after some time when

[issue7735] socket.create_connection() creates IPv6 DNS requests even when built with --disable-ipv6

2012-12-30 Thread Daniel Shahaf
Daniel Shahaf added the comment: Victor, thanks for the summary. I view things a little differently, so I'll offer my POV: 1. The OPs (Evan and Ralf) build with --disable-ipv6. 2. --disable-ipv6 disables support for IPv6 sockets. (as per Martin, and AFAIK as per the common meaning of that

[issue2405] Drop w9xpopen and all dependencies

2012-12-30 Thread Brian Curtin
Brian Curtin added the comment: This was fixed in #14470. -- nosy: +brian.curtin resolution: - duplicate stage: - committed/rejected status: open - closed superseder: - Remove using of w9xopen in subprocess module ___ Python tracker

[issue16659] Pure Python implementation of random

2012-12-30 Thread Raymond Hettinger
Raymond Hettinger added the comment: Brett, if all the other Python implementations already have a working implementation of random, what purpose is served by adding a pure python version of the Mersenne Twister than won't be run by anyone? -- ___

[issue16801] Preserve original representation for integers / floats in docstrings

2012-12-30 Thread Raymond Hettinger
Raymond Hettinger added the comment: 20+ years of Python success suggest this isn't a problem that needs solving. AFAICT, other languages haven't found a need to preserve number representation either. Likewise, Linux itself doesn't preserve the original form of a chmod call. I recommend

[issue15663] Investigate providing Tcl/Tk 8.5 with OS X installers

2012-12-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: The logical location for installing and embedded Tcl/Tk is either in {sys.prefix}/lib (for a unix install of Tk) or in Python.framework/Versions/X.Y/Frameworks (for a Tcl/Tk framework install). In either case Tcl/Tk would be installed *inside*

[issue16821] bundlebuilder broken in 2.7

2012-12-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: It would be nice to have a simple self-contained example, especially one that could be converted to a testcase later on. Using the pysvn workbench should be good enough to find the problem though (assuming it is open source). Is there a download URL for

[issue16821] bundlebuilder broken in 2.7

2012-12-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: BTW. bundlebuilder is deprecated and is no longer present in py3k. Also: IDLE.app for python 2.7 is build using bundlebuilder, and that app works just fine. -- ___ Python tracker rep...@bugs.python.org

[issue7320] Unable to load external modules on build slave with debug python

2012-12-30 Thread Brian Curtin
Changes by Brian Curtin br...@python.org: -- resolution: - out of date stage: - committed/rejected status: open - closed type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7320

[issue14516] test_tools assumes BUILDDIR=SRCDIR

2012-12-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: Test_tools passes for me with the tip of the default branch and BUILDDIR!=SRCDIR. I'm currently running a 2.7 test run, but AFAIK this issue is fixed. -- ___ Python tracker rep...@bugs.python.org

<    1   2