[issue7735] python creates IPv6 DNS requests even when built with --disable-ipv6

2012-10-11 Thread Ralf Schmitt
Ralf Schmitt added the comment: Why do you think I'm disabling IPv6 because I have a "system level problem"? I am not recompiling python to workaround system level problems. And I don't recompile any other program. The problem is in python, it can be fixed with a one line patch. but you prefer

[issue7735] python creates IPv6 DNS requests even when built with --disable-ipv6

2012-10-11 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Why do you think I'm disabling IPv6 because I have a "system level > problem"? So please explain the problem you're having. -- ___ Python tracker

[issue16199] 2to3 very minor doc change

2012-10-11 Thread Chris Jerdonek
Changes by Chris Jerdonek : -- assignee: docs@python -> chris.jerdonek nosy: +chris.jerdonek ___ Python tracker ___ ___ Python-bugs-li

[issue7735] python creates IPv6 DNS requests even when built with --disable-ipv6

2012-10-11 Thread Ralf Schmitt
Ralf Schmitt added the comment: The OPs description is pretty clear. There's no good reason to ask for IPv6 addresses if IPv6 is disabled. The create_connection will try them all, and if connections to IPv4 addresses fail, you'll end up with a TypeError. -- ___

[issue16202] sys.path[0] security issues

2012-10-11 Thread Robert Bradshaw
Robert Bradshaw added the comment: Alternatively, one could fix distutils.util.byte_compile() to execute the script in safe, empty temp directory. Running scripts in /tmp remains, as it has always been, a bad idea. Trying to determine if an import is "safe" can be arbitrarily complicated (e.g

[issue16204] PyBuffer_FillInfo returns 'B' buffer, whose behavior has changed w.r.t. 3.1/3.2

2012-10-11 Thread Daniele Varrazzo
New submission from Daniele Varrazzo: Definitely related to this change in Python 3.3: Accessing a memoryview element with format ‘B’ (unsigned bytes) now returns an integer (in accordance with the struct module syntax). For returning a bytes object the view must be cast to ‘c’ fir

[issue14621] Hash function is not randomized properly

2012-10-11 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: +christian.heimes ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue16199] 2to3 very minor doc change

2012-10-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset c7f11e450c31 by Chris Jerdonek in branch '3.2': Issue #16199: Fix typo in 2to3 docs. Thanks to Mark Lawrence for the report. http://hg.python.org/cpython/rev/c7f11e450c31 New changeset d83dfa6a381a by Chris Jerdonek in branch '3.3': Issue #16199: Me

[issue16199] 2to3 very minor doc change

2012-10-11 Thread Chris Jerdonek
Chris Jerdonek added the comment: Fixed. Thanks for the report, Mark! -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue16202] sys.path[0] security issues

2012-10-11 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue16204] PyBuffer_FillInfo returns 'B' buffer, whose behavior has changed w.r.t. 3.1/3.2

2012-10-11 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- keywords: +3.3regression nosy: +skrah versions: +Python 3.4 ___ Python tracker ___ ___ Python-bugs-list

[issue16205] update :class:`str` references to link to the str type section

2012-10-11 Thread Chris Jerdonek
New submission from Chris Jerdonek: 3.3 added a dedicated section to the docs for the str type. However, references to :class:`str` still link to the documentation of the built-in function str(). This issue is to update references to the str class to point to the new section on the str type.

[issue16205] update :class:`str` references to link to the str type section

2012-10-11 Thread Chris Jerdonek
Chris Jerdonek added the comment: I'm not sure if Sphinx would allow it, but it would be nice if references to the function str() could link to the built-in function documentation, and references to the class str could link to the section on the str type. -- __

[issue15853] IDLE crashes selecting Preferences menu with OS X ActiveState Tcl/Tk 8.5.12.1

2012-10-11 Thread Kevin Walzer
Kevin Walzer added the comment: The attached patch works around the crash for me on Python 2.7.3, Tk-Cocoa 8.5.12 (tip), on Lion. -- keywords: +patch nosy: +wordtech Added file: http://bugs.python.org/file27538/configDialog.diff ___ Python tracker

[issue13538] Improve doc for str(bytesobject)

2012-10-11 Thread Chris Jerdonek
Chris Jerdonek added the comment: This may have been addressed to some extent by issue 14783: http://hg.python.org/cpython/rev/3773c98d9da8 -- nosy: +chris.jerdonek ___ Python tracker _

[issue16205] update :class:`str` references to link to the str type section

2012-10-11 Thread Chris Jerdonek
Chris Jerdonek added the comment: The documentation seems to take a similar approach with dict: http://docs.python.org/dev/library/stdtypes.html#dict http://docs.python.org/dev/library/functions.html#func-dict -- ___ Python tracker

[issue15853] IDLE crashes selecting Preferences menu with OS X ActiveState Tcl/Tk 8.5.12.1

2012-10-11 Thread Kevin Walzer
Changes by Kevin Walzer : Removed file: http://bugs.python.org/file27538/configDialog.diff ___ Python tracker ___ ___ Python-bugs-list mailing

[issue15853] IDLE crashes selecting Preferences menu with OS X ActiveState Tcl/Tk 8.5.12.1

2012-10-11 Thread Kevin Walzer
Changes by Kevin Walzer : Added file: http://bugs.python.org/file27539/configDialog.diff ___ Python tracker ___ ___ Python-bugs-list mailing l

<    1   2