[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

[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 ___ _

[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

[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 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

[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

[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

[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

[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

[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

[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

[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
Changes by R. David Murray : -- keywords: -easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[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 _

[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.

[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
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

[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

[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

[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

[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.

[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

[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

[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:

[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

[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

[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

[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

[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

[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

[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 "/

[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

[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

[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

[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 ___

[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

[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

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

2016-10-04 Thread Guido van Rossum
Guido van Rossum added the comment: It went back and forth. The current feeling is to *keep* that support, especially since their deprecation on Windows has been *undone* in 3.6. Feel free to update the title (though the initial comments may be harder to understand without the context of the orig

[issue27181] Add geometric mean to `statistics` module

2016-10-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset de0fa478c22e by Steven D'Aprano in branch '3.6': Issue #27181 remove geometric_mean and defer for 3.7. https://hg.python.org/cpython/rev/de0fa478c22e -- ___ Python tracker

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

2016-10-04 Thread Michael Felt
New submission from Michael Felt: a) pip is embedded in Python for some time. b) pip is called pip3.5 (with link to pip3) c) in Python3.6 pip is now called pip3.6 and linked to pip3 pip is pip - not pip3* because python is now called python3* pip is pip - currently version 8.1.2 - what does tha

[issue25783] test_traceback.test_walk_stack() fails when run directly (without regrtest)

2016-10-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Ping. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue26491] Defer DECREFs until enum object is in a consistent state for re-entrancy

2016-10-04 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

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

2016-10-04 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- priority: normal -> low stage: patch review -> needs patch ___ Python tracker ___ ___ Python-bugs-list

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

2016-10-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: It would be nice to support unlimitedly nested structures. C stack is more hard limit than Python stack. But the code of the pickle module (especially C implementation) is complicated and hardly optimized. I think it would be not easy to implement stackless

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

2016-10-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I'm confused by the current title of this issue. Should the support of bytes paths in os.scandir() be removed or preserved? In latter case we can remove workaround code from os and glob. -- ___ Python tracker

[issue28222] test_distutils fails

2016-10-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset fa09ba71babb by Berker Peksag in branch '3.5': Issue #28222: Don't fail if pygments is not available https://hg.python.org/cpython/rev/fa09ba71babb New changeset d5eefcfa3458 by Berker Peksag in branch '3.6': Issue #28222: Merge from 3.5 https://hg.

[issue28222] test_distutils fails

2016-10-04 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue28255] TextCalendar.prweek/month/year outputs an extra whitespace character

2016-10-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: It looks to me that only prmonth() should be changed. prweek() and pryear() either match the behavior of PYthon 2 or are the good approximation of it. -- ___ Python tracker

[issue28348] Doc typo in asyncio.Task

2016-10-04 Thread Berker Peksag
Berker Peksag added the comment: Thanks! -- nosy: +berker.peksag resolution: -> fixed stage: -> resolved status: open -> closed type: -> behavior versions: +Python 3.6, Python 3.7 ___ Python tracker

[issue28348] Doc typo in asyncio.Task

2016-10-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8c8692da071a by Berker Peksag in branch '3.5': Issue #28348: Fix typo in asyncio.Task() documentation https://hg.python.org/cpython/rev/8c8692da071a New changeset 99c37fa72b66 by Berker Peksag in branch '3.6': Issue #28348: Merge from 3.5 https://hg

[issue28229] lzma does not support pathlib

2016-10-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset b512780c6589 by Berker Peksag in branch '3.6': Issue #28229: lzma module now supports pathlib https://hg.python.org/cpython/rev/b512780c6589 New changeset de398937653b by Berker Peksag in branch 'default': Issue #28229: Merge from 3.6 https://hg.pyt

[issue28229] lzma does not support pathlib

2016-10-04 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ 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: On 01-Oct-16 08:44, Martin Panter wrote: > Martin Panter added the comment: > > Hi Michael, I have done some cleanup and modifications to your patch. The > result is in aix-library.161001.patch, which has all the changes, i.e. it is > not based on another patch.

[issue28360] Spam

2016-10-04 Thread Berker Peksag
Changes by Berker Peksag : -- Removed message: http://bugs.python.org/msg278065 ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue28360] Spam

2016-10-04 Thread Berker Peksag
Changes by Berker Peksag : -- components: -Argument Clinic nosy: -goon369, larry resolution: -> not a bug status: open -> closed title: **<<<1^888`879~O163 Norton antivirus customer support phone number -> Spam versions: -Python 3.7 _

[issue28360] **<<<<<<<1^888`879~O163>>>>>>>> Norton antivirus customer support phone number

2016-10-04 Thread goon
New submission from goon: USA..1 888-879-0163++ Norton 360 support phone number om Norton tech support phone number Norton 360 Tech Support Number USA..1 888-879-0163++ Norton 360 support phone number om Norton tech support phone number Norton 360 Tech Support Number USAtralia USA-1 888-879

[issue28358] Spam

2016-10-04 Thread Zachary Ware
Changes by Zachary Ware : -- Removed message: http://bugs.python.org/msg278063 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue28359] Spam

2016-10-04 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> not a bug status: open -> closed title: Norton.Helpline +1-888-879-.0163 Norton Technical Support telePhone number Norton phone Number -> Spam ___ Python tracker _

[issue28359] Spam

2016-10-04 Thread Berker Peksag
Changes by Berker Peksag : -- Removed message: http://bugs.python.org/msg278064 ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue28358] Spam

2016-10-04 Thread Berker Peksag
Changes by Berker Peksag : -- components: -Argument Clinic nosy: -goon369, larry resolution: -> not a bug status: open -> closed title: cakekup...@gmail.com -> Spam type: behavior -> versions: -Python 3.7 ___ Python tracker

[issue28359] Norton.Helpline +1-888-879-.0163 Norton Technical Support telePhone number Norton phone Number

2016-10-04 Thread Berker Peksag
Changes by Berker Peksag : -- components: -asyncio nosy: -goon369, gvanrossum, yselivanov type: crash -> versions: -Python 3.7 ___ Python tracker ___

[issue28259] Ctypes bug windows

2016-10-04 Thread Aristotel
Aristotel added the comment: Unfortunately in my case "minimal" example is extremely long. Do you really need it& -- versions: +Python 3.5 ___ Python tracker ___ ___

[issue28359] Norton.Helpline +1-888-879-.0163 Norton Technical Support telePhone number Norton phone Number

2016-10-04 Thread goon
New submission from goon: - USAA-1-888-879-0163++ Norton 360 support phone number Norton tech support phone number Norton 360 Tech Support Number Norton antivirus~:((++179.01.63+))@Norton antivirus Phone@number@Norton antivirus@Dell@brother@Norton antivirus@Norton antivirus@@technical@su

[issue28321] Plistlib: Half of the double width characters are missing when writing binary plist

2016-10-04 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> commit review status: open -> closed ___ Python tracker ___

[issue28358] cakekup...@gmail.com

2016-10-04 Thread goon
New submission from goon: calli norton support 1-888-879-0163 phone number norton antivirus support customer dot support phone number usa calli norton support 1-888-879-0163 phone number norton antivirus support customer dot support phone number usa calli norton support 1-888-879-0163

[issue28321] Plistlib: Half of the double width characters are missing when writing binary plist

2016-10-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 381ef0f08f89 by Serhiy Storchaka in branch '3.5': Issue #28321: Fixed writing non-BMP characters with binary format in plistlib. https://hg.python.org/cpython/rev/381ef0f08f89 New changeset 3a7234d04fe9 by Serhiy Storchaka in branch '3.6': Issue #28

[issue28321] Plistlib: Half of the double width characters are missing when writing binary plist

2016-10-04 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka versions: -Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mai

[issue28190] Detect curses headers correctly for cross-compiling

2016-10-04 Thread Masayuki Yamamoto
Masayuki Yamamoto added the comment: test_curses has been skipped almost. the skip reason has been written "cygwin's curses mostly just hangs" in test case class. I removed the skip condition, and ran test. Tests was almost passed. The only, unget_wch was failed by edge case '\U0010', beca

[issue27761] Private _nth_root function loses accuracy

2016-10-04 Thread Steven D'Aprano
Changes by Steven D'Aprano : -- versions: +Python 3.7 -Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue28327] statistics.geometric_mean gives incorrect results for mixed int/float inputs

2016-10-04 Thread Steven D'Aprano
Changes by Steven D'Aprano : -- versions: -Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue28111] geometric_mean can raise OverflowError for large input length

2016-10-04 Thread Steven D'Aprano
Changes by Steven D'Aprano : -- versions: -Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue28328] statistics.geometric_mean has no tests. Defer to 3.7?

2016-10-04 Thread Steven D'Aprano
Changes by Steven D'Aprano : -- versions: -Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue28351] statistics.geometric_mean can enter infinite loop for Decimal inputs

2016-10-04 Thread Steven D'Aprano
Changes by Steven D'Aprano : -- versions: -Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue27181] Add geometric mean to `statistics` module

2016-10-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9dce0e41bedd by Steven D'Aprano in branch 'default': Issue #27181 remove geometric_mean and defer for 3.7. https://hg.python.org/cpython/rev/9dce0e41bedd -- ___ Python tracker

[issue5830] heapq item comparison problematic with sched's events

2016-10-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Needed tests for this feature. Otherwise sched.Event can be "enhanced" by removing ordering methods (issue28330). -- nosy: +serhiy.storchaka ___ Python tracker __

[issue13756] Python3.2.2 make fail on cygwin

2016-10-04 Thread Zachary Ware
Zachary Ware added the comment: No problem. Feel free to nosy me on any Cygwin issues that you feel have consensus on the solution and a commit-ready patch implementing it. I can't guarantee when I'll have time to look at them, but I have finally gotten around to installing Cygwin and will g

[issue27181] Add geometric mean to `statistics` module

2016-10-04 Thread Steven D'Aprano
Steven D'Aprano added the comment: I'm sorry to say that due to technical difficulties, geometric mean is not going to be in a fit state for beta 2 of 3.6, and so is going to be removed and delayed until 3.7. -- priority: release blocker -> versions: +Python 3.7 -Python 3.6 _

[issue28357] Spam

2016-10-04 Thread Zachary Ware
Changes by Zachary Ware : -- title: *1-800-790-9186* Dell printer helpdesk phone number usa. Dell printer issue support remotely by third party -> Spam ___ Python tracker ___ __

[issue28357] Spam

2016-10-04 Thread Zachary Ware
Changes by Zachary Ware : -- Removed message: http://bugs.python.org/msg278055 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue28357] Spam

2016-10-04 Thread Zachary Ware
Changes by Zachary Ware : -- components: -Build nosy: -grovarsunil resolution: -> not a bug stage: -> resolved status: open -> closed versions: -Python 3.5 ___ Python tracker __

[issue28357] *1-800-790-9186* Dell printer helpdesk phone number usa. Dell printer issue support remotely by third party

2016-10-04 Thread grovarsunil
New submission from grovarsunil: Are you looking online technical support for printer problems. Is your printer unable to print or scan. call us 1-800-790-9186 and get instant technical support remotely for Dell printer issues. DISCLAIMER: - WE are an independent organization working as online

[issue25720] Fix curses module compilation with ncurses6

2016-10-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Mark, do you have relation to this? -- nosy: +mark.dickinson ___ Python tracker ___ ___ Python-bug

[issue28190] Detect curses headers correctly for cross-compiling

2016-10-04 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: Hmm it's surprising for me that an irrelevant patch fixes issues on Cygwin. Does test_curses pass? -- ___ Python tracker ___ ___

[issue21131] test_faulthandler.test_register_chain fails on 64bit ppc/arm with kernel >= 3.10

2016-10-04 Thread Orion Poplawski
Orion Poplawski added the comment: We're running into this building python 3.4.3 on EL6 ppc64. The os kernel is 4.7.2-201.fc24.ppc64, but the EL6 chroot kernel-headers are 2.6.32-642.4.2.el6. Any progress here? -- nosy: +opoplawski ___ Python trac

[issue28190] Detect curses headers correctly for cross-compiling

2016-10-04 Thread Masayuki Yamamoto
Masayuki Yamamoto added the comment: Now, Cygwin platform is able to build core interpreter on default branch. But the curses module has been failed to build. Therefore I tried to build curses module on Cygwin (Vista x86) using this patch. And it has been succeeded. The patch effect at build ti

[issue25720] Fix curses module compilation with ncurses6

2016-10-04 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: is_pad is added in ncurses 5.7-20090906 [1]. At least Mac OS X still ships ancient ncurses 5.7-20081102 [2], so an check in configure.ac is necessary. I'm trying it out. [1] http://invisible-island.net/ncurses/NEWS.html#t20090906 [2] http://opensource.apple.com

[issue28356] Windows: os.rename different in python 2.7.12 and python 3.5.2

2016-10-04 Thread Eryk Sun
Eryk Sun added the comment: In scanning over issue 8828, I see no discussion of the consequences of not using MOVEFILE_COPY_ALLOWED in Antoine's patch, so it appears that this behavior change was unintentional. > For now I switched to shutil.move() but I suppose its not > as performant/optimal

[issue28350] Interning string constants with null character

2016-10-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Added tests and refactored all_name_chars(). -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker __

[issue28350] Interning string constants with null character

2016-10-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 522adc2e082a by Serhiy Storchaka in branch '2.7': Issue #28350: String constants with null character no longer interned. https://hg.python.org/cpython/rev/522adc2e082a New changeset d7ab3241aef2 by Serhiy Storchaka in branch '3.5': Issue #28350: Str

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

2016-10-04 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- status: closed -> open ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue13756] Python3.2.2 make fail on cygwin

2016-10-04 Thread Erik Bray
Erik Bray added the comment: Okay, that would explain it then. I was building from an older branch (pre-3.7) that still has the bundled libffi. FWIW with the fix from #2445, --with-system-ffi works (as does some trivial use of _ctypes though I haven't run all the tests). So if the bundled li

[issue14438] _cursesmodule build fails on cygwin

2016-10-04 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: My patch at issue28190 solves a different problem. IMO the correct way to go for this issue is issue25720. By the way, this problem affects more than Cygwin. (issue14598) -- nosy: +Chi Hsuan Yen ___ Python tracker <

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

2016-10-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Yes, there is a difference between os.walk() and os.fwalk() in some cases. I don't know whether it was introduced deliberately or by accident. os.fwalk() was added in issue13734, FileNotFoundError is used since issue14773. -- nosy: +hynek, loewis, ne

[issue28350] Interning string constants with null character

2016-10-04 Thread STINNER Victor
STINNER Victor added the comment: I have no opinion on interning non-ASCII strings. -- ___ Python tracker ___ ___ Python-bugs-list mai

[issue28350] Interning string constants with null character

2016-10-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thanks Victor. -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list maili

[issue28356] Windows: os.rename different in python 2.7.12 and python 3.5.2

2016-10-04 Thread stephan
stephan added the comment: Hi, I tryed os.replace() as replacement for os.rename() too, but as you said it does not work if the files are on different drives. For now I switched to shutil.move() but I suppose its not as performant/optimal as an "move" or "rename" directly supported by the OS.

[issue28356] Windows: os.rename different in python 2.7.12 and python 3.5.2

2016-10-04 Thread Eryk Sun
Eryk Sun added the comment: 3.3 added os.replace, which on Windows entailed a switch from calling MoveFile to MoveFileEx in order to specify the MOVEFILE_REPLACE_EXISTING flag. However, not passing the MOVEFILE_COPY_ALLOWED broke compatibility with os.rename on Windows for versions prior to 3.

[issue28356] Windows: os.rename different in python 2.7.12 and python 3.5.2

2016-10-04 Thread STINNER Victor
STINNER Victor added the comment: On Python 3 on Windows, os.rename() is implemented as MoveFileExW() with flags=0. The doc says: "When moving a file, the destination can be on a different file system or volume. If the destination is on another drive, you must set the MOVEFILE_COPY_ALLOWED fl

[issue13756] Python3.2.2 make fail on cygwin

2016-10-04 Thread Zachary Ware
Zachary Ware added the comment: Hmm, Cygwin64 is what I built on (successfully). _ctypes does not build, but that's due to not having any libffi available at all: the bundled copy is no longer included in 3.7, and I didn't install a system copy. I view ctypes support as a fairly low-priority

  1   2   >