[issue27181] Add geometric mean to `statistics` module

2016-10-04 Thread Ned Deily
Ned Deily added the comment: Thanks, Steven. Actually, we needed to remove geometric_mean from the 3.6 branch, not the default branch (which will become 3.7). I backported your removal patch to 3.6. Feel free to reapply geometric_mean to the default branch at your leisure. -- stage

[issue26293] Embedded zipfile fields dependent on absolute position

2016-10-04 Thread spoo
spoo added the comment: I confirmed this fixes the issue loading zips on an iPad. -- ___ Python tracker ___ ___ Python-bugs-list maili

[issue13829] exception error in _scproxy.so when called after fork

2016-10-04 Thread Ned Deily
Changes by Ned Deily : -- priority: low -> normal stage: -> needs patch versions: +Python 3.5, Python 3.6, Python 3.7 ___ Python tracker ___

[issue28342] OSX 10.12 crash in urllib.request getproxies_macosx_sysconf and proxy_bypass_macosx_sysconf

2016-10-04 Thread Ned Deily
Ned Deily added the comment: OK, I'm closing this a duplicate and I've updated #13829 to include currently 3.x versions. -- components: +Macintosh nosy: +ronaldoussoren stage: -> resolved status: open -> closed ___ Python tracker

[issue28361] BETA report: Python3.6 names pip pip3.6 (and why is the other name pip3)

2016-10-04 Thread Zachary Ware
Zachary Ware added the comment: Pip is a third party project, so if you'd like to pursue this please open an issue on the pip issue tracker at https://github.com/pypa/pip/issues. Anyway, pip installs links named the way it does so that you can be (more) sure that you're invoking the correct pi

[issue28341] cpython tip fails to build on Mac OS X 10.11.6 w/ XCode 8.0

2016-10-04 Thread Ned Deily
Ned Deily added the comment: It is a bit confusing but, in general these days, you should always install the current command line tools specific to the version of the Mac operating system you are running. That ensures that not only are the necessary build tools installed but also that the cor

[issue26439] ctypes.util.find_library fails when ldconfig/glibc not available (e.g., AIX)

2016-10-04 Thread Michael Felt
Michael Felt added the comment: I have spent the last two hours trying to run the test - however, it fails with: root@x064:[/data/prj/python/python-3.6.0.177/Lib/ctypes]../../python util.py Traceback (most recent call last): File "util.py", line 102, in import ctypes._aix as aix File "/

[issue10716] Modernize pydoc to use better HTML and separate CSS

2016-10-04 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks for the update, Berker. Would you be able to remove the 'easy' keyword from this ticket? I'll keep myself in the nosy list as I'm interested to learn about this anyway :) -- ___ Python tracker

[issue17188] Document 'from None' in raise statement doc.

2016-10-04 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- nosy: +Mariatta ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue27998] Remove support of bytes paths in os.scandir()

2016-10-04 Thread STINNER Victor
STINNER Victor added the comment: I suggest to modify posixmodule.c to support bytes on Windows at the C level. Since Windows uses utf8, there is no more real reason to drop bytes support only on Windows. -- ___ Python tracker

[issue26439] ctypes.util.find_library fails when ldconfig/glibc not available (e.g., AIX)

2016-10-04 Thread Michael Felt
Michael Felt added the comment: Curious. When in 32-bit mode changing line 15 of _aix.py to +14 import re, os, sys +15 # from . import util The Lib/ctypes/util.py works. In 64-bit mode it does not: instead: root@x064:[/data/prj/python/python-3.6.0.177/Lib/ctypes]../../python util.py

[issue26439] ctypes.util.find_library fails when ldconfig/glibc not available (e.g., AIX)

2016-10-04 Thread Michael Felt
Michael Felt added the comment: Have a way to have both 64-bit and 32-bit modes working. root@x064:[/data/prj/python/python-3.6.0.177/Lib/ctypes]../../python `pwd`/util.py m :: None c :: libc.a(shr_64.o) bz2 :: libbz2.a(libbz2.so.1) crypt :: libcrypt.a(shr_64.o) crypto :: c

[issue10716] Modernize pydoc to use better HTML and separate CSS

2016-10-04 Thread Andre Roberge
Andre Roberge added the comment: When rhettinger created this issue, the goal was "Pydoc currently generated 1990's style html which mixes content and presentation, making it very difficult for users to customize the appearance of the output. ... Please convert it to simple, validated HTML wi

[issue3119] pickle.py is limited by python's call stack

2016-10-04 Thread Aaron Gallagher
Changes by Aaron Gallagher <_...@habnab.it>: -- nosy: -habnabit ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3119] pickle.py is limited by python's call stack

2016-10-04 Thread Aaron Gallagher
Aaron Gallagher added the comment: Definitely not interested in pickle at all anymore. -- ___ Python tracker ___ ___ Python-bugs-list m

[issue10716] Modernize pydoc to use better HTML and separate CSS

2016-10-04 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Hi Andre, You can subscribe to the core mentorship mailing list here: https://mail.python.org/mailman/listinfo/core-mentorship Once you subscribed, you'll get access to the said discussion :) It is not required, but it's a great place to ask questions or ge

[issue28276] test_loading.py - false positive result for "def test_find" when find_library() is not functional or the (shared) library does not exist

2016-10-04 Thread Michael Felt
Michael Felt added the comment: On 01-Oct-16 05:57, Martin Panter wrote: > Martin Panter added the comment: > > Other tests in this file skip the test if libc_name is None. So I think it > would make more sense to skip the test rather than fail in test_find(). I.e. > > if not found: > self.

[issue26439] ctypes.util.find_library fails when ldconfig/glibc not available (e.g., AIX)

2016-10-04 Thread Michael Felt
Changes by Michael Felt : Added file: http://bugs.python.org/file44962/aix-modules.161004.patch ___ Python tracker ___ ___ Python-bugs-list ma

[issue26439] ctypes.util.find_library fails when ldconfig/glibc not available (e.g., AIX)

2016-10-04 Thread Michael Felt
Michael Felt added the comment: Besides correcting a small error, also my attempt to follow the guidelines to not import *, but to actually specify all bits that are to be imported. This is a patch compered to Python-3.6b1 -- hgrepos: +359 Added file: http://bugs.python.org/file44963/ai

[issue28315] incorrect "in ?" output in 'divide' example at "Defining Clean-up Actions" in tutorial

2016-10-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: Jaysinh, unless a patch for 3.5 does not cleanly apply to 3.6, or the patch must be different in 3.6*, no 3.6 patch is needed. Ditto for 3.7/default. Mariatta's patch merged forward without problem. *In this case, 'must be different' would be because there ar

[issue20491] textwrap: Non-breaking space not honored

2016-10-04 Thread R. David Murray
R. David Murray added the comment: It probably just got forgotten. If you want to help move it forward please do a review of the patch (see https://docs.python.org/devguide/tracker.html#reviewing-patches), including whether or not all outstanding review comments have been addressed, and post

[issue28264] Turtle.onclick events blocked by Turtle.stamp

2016-10-04 Thread George Fagin
George Fagin added the comment: Now you've got it. Clicking on the turtle results in an event message - at which point I spin the turtle and issue the message to make it clear that the message arrived. However, if you try doing that after a 'Turtle.stamp()' the message never comes. Issuing any

[issue20491] textwrap: Non-breaking space not honored

2016-10-04 Thread R. David Murray
Changes by R. David Murray : -- versions: +Python 3.6, Python 3.7 -Python 2.7, Python 3.4 ___ Python tracker ___ ___ Python-bugs-list

[issue28288] Expose environment variable for Py_Py3kWarningFlag

2016-10-04 Thread Roy Williams
Roy Williams added the comment: Thanks for the feedback Berker! This is my first CPython patch :D. Added in a note in pyporting. I actually did a much more detailed write up here https://gist.github.com/rowillia/c0feed97c1863b2d8e5a3ed73712df65, but it seems a bit verbose for this document.

[issue28361] BETA report: Python3.6 names pip pip3.6 (and why is the other name pip3)

2016-10-04 Thread R. David Murray
R. David Murray added the comment: There's really not much point in opening an issue in the pip tracker; this is working as designed, as Zach explained. On posix you "shouldn't" be using pip outside of a virtual environment anyway :) -- nosy: +r.david.murray _

[issue10716] Modernize pydoc to use better HTML and separate CSS

2016-10-04 Thread R. David Murray
Changes by R. David Murray : -- keywords: -easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue20491] textwrap: Non-breaking space not honored

2016-10-04 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- nosy: +Mariatta ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue10716] Modernize pydoc to use better HTML and separate CSS

2016-10-04 Thread R. David Murray
R. David Murray added the comment: I've removed the easy tag. (Aside for those who can do the operation: to remove all tags from an issue one must select '-no selection-'; just ctrl-clicking the last tag to remove its highlight doesn't work...or at least that's what I remember, I didn't actua

[issue28329] Add support for customizing scheduler's timefunc and delayfunc using subclassing

2016-10-04 Thread Raymond Hettinger
Raymond Hettinger added the comment: Sorry, I'm going to decline this patch because 1) there is no evidence this is needed (i.e. hasn't ever been requested in the long life of this ancient module), 2) it adds API complexity (zen: there should be one-- and preferably only one --obvious way to

[issue26869] unittest longMessage docs

2016-10-04 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Hi, please review the updated documentation. Thanks. -- keywords: +patch Added file: http://bugs.python.org/file44965/issue26869.patch ___ Python tracker

[issue28201] dict: perturb shift should be done when first conflict

2016-10-04 Thread INADA Naoki
INADA Naoki added the comment: Fixed conflict with current 3.6 branch, and added NEWS entry. -- Added file: http://bugs.python.org/file44966/dict-perturb-shift2.patch ___ Python tracker

[issue28353] os.fwalk() unhandled exception when error occurs accessing symbolic link target

2016-10-04 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- nosy: +Mariatta ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue9850] obsolete macpath module dangerously broken and should be removed

2016-10-04 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: I'm just reading PEP-4 now for procedure of declaring a module deprecated. Should PEP-4 page be updated with the proposal / info for macpath deprecation? https://www.python.org/dev/peps/pep-0004/ Thanks. -- ___ Pyt

[issue28362] Deprecation warning doesn't stand out enough

2016-10-04 Thread Mariatta Wijaya
New submission from Mariatta Wijaya: In documentation for python 3.3, the deprecation warning is rendered in a red box which is more eye-catching. eg https://docs.python.org/3.3/library/imp.html?highlight=imp#module-imp But since python 3.4 onwards, seems like the red box disappears and the d

[issue28362] Deprecation warning doesn't stand out enough

2016-10-04 Thread INADA Naoki
INADA Naoki added the comment: default.css was changed? https://docs.python.org/3.3/_static/default.css https://docs.python.org/3.4/_static/default.css -- nosy: +inada.naoki ___ Python tracker _

[issue28362] Deprecation warning doesn't stand out enough

2016-10-04 Thread Berker Peksag
Berker Peksag added the comment: It was rendered in a red box, because we were using an old Sphinx CSS file (Doc/tools/static/basic.css) [1] We are using Sphinx defaults now and Python specific tweaks are located at Doc/tools/pydoctheme/static/pydoctheme.css. We usually prefer to use less disr

[issue28331] "CPython implementation detail:" is removed when contents is translated

2016-10-04 Thread Berker Peksag
Berker Peksag added the comment: Does Sphinx use a dummy HTML file like you did in the patch? -- nosy: +berker.peksag ___ Python tracker ___ _

[issue28331] "CPython implementation detail:" is removed when contents is translated

2016-10-04 Thread INADA Naoki
INADA Naoki added the comment: Yes. Actually speaking, this patch is almost copy from VersionChanged directive. See here: https://github.com/sphinx-doc/sphinx/blob/master/sphinx/directives/other.py#L216-L221 -- ___ Python tracker

<    1   2