[issue13691] pydoc help (or help('help')) should show the doc for help

2017-02-18 Thread Jaysinh shukla
Changes by Jaysinh shukla : -- nosy: +jaysinh.shukla ___ Python tracker ___ ___

[issue29533] urllib2 works slowly with proxy on windows

2017-02-18 Thread Julia Dolgova
Julia Dolgova added the comment: I compared the behavior of IE and urllib. I put different addresses to the ("Do not use proxy server for address beginning with" setting), made different requests through IE and urllib and watched if the proxy was bypassed. IE doesn't even make a forward dns

[issue29514] Add a test case that prevents magic number changes in minor releases

2017-02-18 Thread Nick Coghlan
Nick Coghlan added the comment: Serhiy posted a patch at http://bugs.python.org/issue29537 that addresses the original problem from http://bugs.python.org/issue27286 in a different way: it simply omits the function name in cases where the stack reference is ambiguous. So what I think we

[issue26128] Let the subprocess.STARTUPINFO constructor take arguments

2017-02-18 Thread Subhendu Ghosh
Changes by Subhendu Ghosh : -- nosy: +subho ___ Python tracker ___ ___ Python-bugs-list

[issue13691] pydoc help (or help('help')) should show the doc for help

2017-02-18 Thread Sanyam Khurana
Changes by Sanyam Khurana : -- pull_requests: +138 ___ Python tracker ___ ___

[issue29537] Alternative fix for BUILD_MAP_UNPACK_WITH_CALL opcode in 3.5

2017-02-18 Thread Nick Coghlan
Nick Coghlan added the comment: In putting together a PR for this, I think it *only* makes sense if we also push Petr's change upstream to accept the legacy bytecode files in 3.5.4+. The reason is that the patch actually causes a test case to fail due to "f()" change to "function" in an error

[issue26128] Let the subprocess.STARTUPINFO constructor take arguments

2017-02-18 Thread Subhendu Ghosh
Changes by Subhendu Ghosh : -- pull_requests: +137 ___ Python tracker ___ ___

[issue29520] Documentation uses deprecated "defindex.html" Sphinx template

2017-02-18 Thread Jaysinh shukla
Changes by Jaysinh shukla : -- nosy: +ncoghlan ___ Python tracker ___ ___

[issue29520] Documentation uses deprecated "defindex.html" Sphinx template

2017-02-18 Thread Jaysinh shukla
Changes by Jaysinh shukla : -- pull_requests: +136 ___ Python tracker ___ ___

[issue29537] Alternative fix for BUILD_MAP_UNPACK_WITH_CALL opcode in 3.5

2017-02-18 Thread Nick Coghlan
Changes by Nick Coghlan : -- pull_requests: +135 ___ Python tracker ___ ___

[issue27286] str object got multiple values for keyword argument

2017-02-18 Thread Nick Coghlan
Changes by Nick Coghlan : -- pull_requests: +134 ___ Python tracker ___ ___

[issue29520] Documentation uses deprecated "defindex.html" Sphinx template

2017-02-18 Thread Jim DeLaHunt
Jim DeLaHunt added the comment: Jaysinh, thank you for checking. From your log, I see you are using Sphinx version 1.3.6. I am seeing this problem with Sphinx version 1.5.2. I think you need Sphinx 1.5.2 or later to see the warning message. I notice my original bug description didn't

[issue29565] Still broken ctypes calling convention on MSVC / 64-bit Windows (large structs)

2017-02-18 Thread Vinay Sajip
Vinay Sajip added the comment: PR submitted. -- stage: needs patch -> patch review ___ Python tracker ___ ___

[issue29565] Still broken ctypes calling convention on MSVC / 64-bit Windows (large structs)

2017-02-18 Thread Vinay Sajip
Changes by Vinay Sajip : -- pull_requests: +133 ___ Python tracker ___ ___

[issue20160] broken ctypes calling convention on MSVC / 64-bit Windows (large structs)

2017-02-18 Thread Vinay Sajip
Changes by Vinay Sajip : -- pull_requests: +132 ___ Python tracker ___ ___

[issue16285] Update urllib quoting to RFC 3986

2017-02-18 Thread Nick Coghlan
Changes by Nick Coghlan : -- versions: +Python 3.7 -Python 3.5 ___ Python tracker ___ ___

[issue29592] abs_paths() in site.py is slow

2017-02-18 Thread Nick Coghlan
Nick Coghlan added the comment: Aye, I agree it should be redundant now - import system should always be making __file__ and __cached__ absolutely at import time these days. So +1 for dropping this from 3.7 and getting a bit of startup time back. --

[issue29592] abs_paths() in site.py is slow

2017-02-18 Thread INADA Naoki
Changes by INADA Naoki : -- pull_requests: +131 ___ Python tracker ___ ___

[issue13691] pydoc help (or help('help')) should show the doc for help

2017-02-18 Thread Nick Coghlan
Nick Coghlan added the comment: Recapping the situations that need test cases before this can be merged: * behaviour when "help" is entered at the interactive help prompt (as the current behaviour is correct and should *not* change) * behaviour when calling "help(help)" * behaviour when

[issue29526] Documenting format() function

2017-02-18 Thread Amit Kumar
Changes by Amit Kumar : -- pull_requests: +130 ___ Python tracker ___ ___

[issue29565] Still broken ctypes calling convention on MSVC / 64-bit Windows (large structs)

2017-02-18 Thread Vinay Sajip
Vinay Sajip added the comment: When adding the fix for #20160 I had added a test involving passing a struct by value to a Python callback. I modified that test to update the struct in the callback, and check that the passed-in struct hadn't changed. def test_callback_large_struct(self):

[issue28909] Adding LTTng-UST tracing support

2017-02-18 Thread Peter McCormick
Peter McCormick added the comment: A few suggestions: * Disallow `--with-lttngust` on anything other than Linux (on macOS `configure` dies due to differences in acceptable `mktemp` arguments if you even attempt it) * Rename `cpython_inst.h` to `pytrace.h` and rename `pylttngust_probes.h` to

[issue13691] pydoc help (or help('help')) should show the doc for help

2017-02-18 Thread Sanyam Khurana
Sanyam Khurana added the comment: Hi, I'm working on fixing this issue. -- nosy: +CuriousLearner ___ Python tracker ___

[issue23890] assertRaises increases reference counter

2017-02-18 Thread Nick Coghlan
Nick Coghlan added the comment: I've been looking into this further, and a reproducer that's independent of assertRaises() is to just bind the function to a local variable name in an outer function: def outer(): callable_obj = f try: callable_obj()

[issue29521] Minor warning messages when compiling documentation

2017-02-18 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset 24bfe15e83c24bf2c2e2654050da809553789002 by Nick Coghlan in branch '3.5': [backport to 3.5] bpo-29529: Add .travis.yml to 3.5 branch (#26) https://github.com/python/cpython/commit/24bfe15e83c24bf2c2e2654050da809553789002 --

[issue29529] Backport Travis configuration

2017-02-18 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset 24bfe15e83c24bf2c2e2654050da809553789002 by Nick Coghlan in branch '3.5': [backport to 3.5] bpo-29529: Add .travis.yml to 3.5 branch (#26) https://github.com/python/cpython/commit/24bfe15e83c24bf2c2e2654050da809553789002 --

[issue29529] Backport Travis configuration

2017-02-18 Thread INADA Naoki
Changes by INADA Naoki : -- pull_requests: +129 ___ Python tracker ___ ___

[issue29529] Backport Travis configuration

2017-02-18 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset 3337d33a4518f7ab8a7ab6c9a75b8b92ba348b27 by Nick Coghlan in branch '3.6': [backport to 3.6] bpo-29529: Add .travis.yml to 3.6 branch (#25) https://github.com/python/cpython/commit/3337d33a4518f7ab8a7ab6c9a75b8b92ba348b27 -- nosy:

[issue29521] Minor warning messages when compiling documentation

2017-02-18 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset 3337d33a4518f7ab8a7ab6c9a75b8b92ba348b27 by Nick Coghlan in branch '3.6': [backport to 3.6] bpo-29529: Add .travis.yml to 3.6 branch (#25) https://github.com/python/cpython/commit/3337d33a4518f7ab8a7ab6c9a75b8b92ba348b27 --

[issue28909] Adding LTTng-UST tracing support

2017-02-18 Thread Peter McCormick
Peter McCormick added the comment: Fork at with Francis' original patch, plus a revert for the DTrace provider name change. Here are instructions I used to try this out: ## LTTng installation Full installation

[issue29571] test_re is failing when local is set for `en_IN`

2017-02-18 Thread Nick Coghlan
Changes by Nick Coghlan : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue29571] test_re is failing when local is set for `en_IN`

2017-02-18 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset 760f596b6a4b5514afe35e521621f484aef35413 by GitHub in branch '3.5': [3.5] bpo-29571: Use correct locale encoding in test_re (#149) (#154) https://github.com/python/cpython/commit/760f596b6a4b5514afe35e521621f484aef35413 --

[issue29571] test_re is failing when local is set for `en_IN`

2017-02-18 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset 0683d6889bd4430599d22e12e201b8e9c45be5a2 by GitHub in branch '3.6': [3.6] bpo-29571: Use correct locale encoding in test_re (#149) (#153) https://github.com/python/cpython/commit/0683d6889bd4430599d22e12e201b8e9c45be5a2 --

[issue29520] Documentation uses deprecated "defindex.html" Sphinx template

2017-02-18 Thread INADA Naoki
INADA Naoki added the comment: Could docs.python.org use new Sphinx, after fix this issue? Travis checks doc with Sphinx 1.5.2, but docs.python.org seems using 1.3.3. It's too old. -- ___ Python tracker

[issue29520] Documentation uses deprecated "defindex.html" Sphinx template

2017-02-18 Thread INADA Naoki
Changes by INADA Naoki : -- pull_requests: +128 ___ Python tracker ___ ___

[issue29520] Documentation uses deprecated "defindex.html" Sphinx template

2017-02-18 Thread INADA Naoki
INADA Naoki added the comment: ref: https://github.com/sphinx-doc/sphinx/issues/2986 -- ___ Python tracker ___

[issue29453] Remove reference to undefined dictionary ordering in Tutorial

2017-02-18 Thread Raymond Hettinger
Raymond Hettinger added the comment: Thanks for the revision. Assigning to Mariatta so that she can apply the PR. -- assignee: serhiy.storchaka -> Mariatta nosy: +Mariatta ___ Python tracker

[issue29579] Windows Python 3.7 installer broken by README.txt renamed to README.rst

2017-02-18 Thread Steve Dower
Changes by Steve Dower : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___

[issue29520] Documentation uses deprecated "defindex.html" Sphinx template

2017-02-18 Thread INADA Naoki
INADA Naoki added the comment: I can reproduce it with Sphinx 1.5.2. Additonally, "None" is shown at top. -- nosy: +inada.naoki Added file: http://bugs.python.org/file46648/sphinx-1.5-pydoc.png ___ Python tracker

[issue29520] Documentation uses deprecated "defindex.html" Sphinx template

2017-02-18 Thread Jaysinh shukla
Jaysinh shukla added the comment: Hello Jim, I tried to run `make html` on `/Doc` directory at latest master. I was not able to reproduce this warning message. I am attaching console output I got while building the documentation with this issue. I request you to check that once. Will you

[issue29579] Windows Python 3.7 installer broken by README.txt renamed to README.rst

2017-02-18 Thread Steve Dower
Steve Dower added the comment: New changeset d372cda5cd46712c4e59262ec1ab981773b20bff by GitHub in branch '3.6': bpo-29579: Removes readme.txt from the installer. (#161) https://github.com/python/cpython/commit/d372cda5cd46712c4e59262ec1ab981773b20bff --

[issue29579] Windows Python 3.7 installer broken by README.txt renamed to README.rst

2017-02-18 Thread Steve Dower
Steve Dower added the comment: New changeset 52a7e92e3d38d3d003552db6795de75db2e4 by GitHub in branch 'master': bpo-29579: Removes readme.txt from the installer. (#160) https://github.com/python/cpython/commit/52a7e92e3d38d3d003552db6795de75db2e4 --

[issue29110] [patch] Fix file object leak in `aifc.open` when given invalid AIFF file.

2017-02-18 Thread Anthony Zhang
Changes by Anthony Zhang : -- pull_requests: +127 ___ Python tracker ___ ___

[issue29595] Expose max_queue_size in ThreadPoolExecutor

2017-02-18 Thread Jim Fasarakis-Hilliard
Changes by Jim Fasarakis-Hilliard : -- nosy: +Jim Fasarakis-Hilliard ___ Python tracker ___

[issue28624] Make the `cwd` argument to `subprocess.Popen` accept a `PathLike`

2017-02-18 Thread Berker Peksag
Changes by Berker Peksag : -- components: +Library (Lib) -Tests stage: needs patch -> patch review versions: +Python 3.6 ___ Python tracker

[issue28624] Make the `cwd` argument to `subprocess.Popen` accept a `PathLike`

2017-02-18 Thread Jim Fasarakis-Hilliard
Changes by Jim Fasarakis-Hilliard : -- components: +Tests -Library (Lib) ___ Python tracker ___

[issue11924] Pickle and copyreg modules don't document the interface

2017-02-18 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___

[issue29579] Windows Python 3.7 installer broken by README.txt renamed to README.rst

2017-02-18 Thread Steve Dower
Steve Dower added the comment: Pull request is at https://github.com/python/cpython/pull/160 and backport at https://github.com/python/cpython/pull/161 -- ___ Python tracker

[issue29579] Windows Python 3.7 installer broken by README.txt renamed to README.rst

2017-02-18 Thread Steve Dower
Changes by Steve Dower : -- pull_requests: +126 ___ Python tracker ___ ___

[issue29579] Windows Python 3.7 installer broken by README.txt renamed to README.rst

2017-02-18 Thread Steve Dower
Changes by Steve Dower : -- pull_requests: +125 ___ Python tracker ___ ___

[issue11924] Pickle and copyreg modules don't document the interface

2017-02-18 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- versions: +Python 3.6, Python 3.7 -Python 3.4 ___ Python tracker ___

[issue20823] Clarify copyreg.pickle() documentation

2017-02-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The phrase "*function* should return either a string or a tuple containing two or three elements." de-facto is outdated too. Since Python 2.3 a tuple returned by the function must have two to five elements. copyreg.constructor() no longer does anything

[issue29503] Make embedded-Python detectable

2017-02-18 Thread Steve Dower
Changes by Steve Dower : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___

[issue29525] Python 2.7.13 for Windows broken (from prompt)

2017-02-18 Thread Steve Dower
Steve Dower added the comment: You should be able to update whatever package installed that module. Unfortunately, we can't guess what that would be, but it's probably worthwhile updating all the packages you have installed. -- resolution: -> not a bug stage: -> resolved status:

[issue29579] Windows Python 3.7 installer broken by README.txt renamed to README.rst

2017-02-18 Thread Steve Dower
Changes by Steve Dower : -- assignee: -> steve.dower ___ Python tracker ___ ___

[issue27635] pickle documentation says that unpickling may not call __new__

2017-02-18 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +alexandre.vassalotti, serhiy.storchaka stage: -> needs patch type: -> behavior versions: +Python 3.7 -Python 3.4 ___ Python tracker

[issue29597] __new__ / __init__ calls during unpickling not documented correctly

2017-02-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This is a duplicate of issue27635. -- nosy: +serhiy.storchaka resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> pickle documentation says that unpickling may not call __new__ ___

[issue22807] uuid.uuid1() should use uuid_generate_time_safe() if available

2017-02-18 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: New changeset 8c130d7f8114158f5b94749032ec0c17dba96f83 by GitHub in branch 'master': bpo-22807: Expose platform UUID generation safety information. (#138) https://github.com/python/cpython/commit/8c130d7f8114158f5b94749032ec0c17dba96f83 --

[issue29597] __new__ / __init__ calls during unpickling not documented correctly

2017-02-18 Thread Max
New submission from Max: According to the [docs](https://docs.python.org/3/library/pickle.html#pickling-class-instances): > Note: At unpickling time, some methods like `__getattr__()`, > `__getattribute__()`, or `__setattr__()` may be called upon the instance. In > case those methods rely on

[issue29237] Create enum for pstats sorting options

2017-02-18 Thread Ratnadeep Debnath
Ratnadeep Debnath added the comment: I am taking up to create a patch/pull request for this to get it reviewed. -- nosy: +rtnpro ___ Python tracker ___

[issue16285] Update urllib quoting to RFC 3986

2017-02-18 Thread Ratnadeep Debnath
Ratnadeep Debnath added the comment: I have started to work on this issue and get it merge ready. -- nosy: +rtnpro ___ Python tracker ___

[issue29436] Compilation failure against Android NDK r14 beta 2

2017-02-18 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: > Any reason why you do omit mentioning these important facts in the issue ? Both in the title of this issue and that PR, I mention "NDK r14 beta 2". I'm not sure what you're referring to. On IRC, irker states the title first and then the comment content. I

[issue18423] Document limitations on -m

2017-02-18 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___

[issue10938] Provide links to system specific strftime/ptime docs

2017-02-18 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___

[issue29436] Compilation failure against Android NDK r14 beta 2

2017-02-18 Thread Xavier de Gaye
Xavier de Gaye added the comment: Closing this issue as 'later'. Chi Hsuan Yen, I am still interested by your answers to my questions. -- resolution: -> later stage: -> resolved status: open -> closed ___ Python tracker

[issue29436] Compilation failure against Android NDK r14 beta 2

2017-02-18 Thread Xavier de Gaye
Xavier de Gaye added the comment: > I've improved the patch and submitted it as PR 159. Now on Android: This is confusing. Android NDK r14 has not been released yet. We do not develop CPython for platform beta releases. Unified headers, the reason for your proposed change, are only introduced

[issue29436] Compilation failure against Android NDK r14 beta 2

2017-02-18 Thread STINNER Victor
STINNER Victor added the comment: Previously, we asked to not include generated files in patches, like configure. With the new dev process (github, travis), you must now include generated files. -- ___ Python tracker

[issue29453] Remove reference to undefined dictionary ordering in Tutorial

2017-02-18 Thread Jim Fasarakis-Hilliard
Jim Fasarakis-Hilliard added the comment: Added the following short sentence to the PR, which I believe makes the point clear: Note that the order in which the keyword arguments are printed is guaranteed to match the order in which they were provided in the function call. --

[issue29436] Compilation failure against Android NDK r14 beta 2

2017-02-18 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: Well, I have to commit changes to configure and pyconfig.h, otherwise Travis tests fail. Maybe .travis.yml should call autoreconf first. -- ___ Python tracker

[issue29436] Compilation failure against Android NDK r14 beta 2

2017-02-18 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: I've improved the patch and submitted it as PR 159. Now on Android: 1. _locale is built 2. _locale has several symbols, including CODESET 3. _locale doesn't have nl_langinfo() Basically _locale maps what langinfo.h does. On Android langinfo.h has several

[issue29436] Compilation failure against Android NDK r14 beta 2

2017-02-18 Thread Chi Hsuan Yen
Changes by Chi Hsuan Yen : -- pull_requests: +124 ___ Python tracker ___ ___

[issue24241] webbrowser default browser detection and/or public API for _trylist.

2017-02-18 Thread David Steele
David Steele added the comment: Jaysinh, Thanks for the feedback. I'm adding the documentation now. As I noted in github, I'm not sure what the preferred exception handling would be for xdg-settings. -- ___ Python tracker

[issue24241] webbrowser default browser detection and/or public API for _trylist.

2017-02-18 Thread Jaysinh shukla
Jaysinh shukla added the comment: Hello David, I hope you are still working on https://github.com/python/cpython/pull/85 I tried to add few suggestions. Please write back on any confusions. Thanks! -- nosy: +jaysinh.shukla ___ Python tracker

[issue24241] webbrowser default browser detection and/or public API for _trylist.

2017-02-18 Thread David Steele
Changes by David Steele : -- pull_requests: +123 ___ Python tracker ___ ___

[issue23384] urllib.proxy_bypass_registry slow down under Windows if website has no reverse DNS and Fiddler is runing

2017-02-18 Thread Julia Dolgova
Changes by Julia Dolgova : -- nosy: +juliadolgova ___ Python tracker ___ ___ Python-bugs-list

[issue23890] assertRaises increases reference counter

2017-02-18 Thread Nick Coghlan
Nick Coghlan added the comment: As Robert noted, this is a straight up error, where the clear_frames() call and deleting the exception traceback from the saved object aren't enough to drop all references to `callable_obj`. The trick is that the cleanup code isn't accounting for __cause__ and

[issue25452] Add __bool__() method to subprocess.CompletedProcess

2017-02-18 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- versions: +Python 3.7 -Python 3.6 ___ Python tracker ___

[issue23890] assertRaises increases reference counter

2017-02-18 Thread Subhendu Ghosh
Changes by Subhendu Ghosh : -- nosy: +subho ___ Python tracker ___ ___ Python-bugs-list

[issue29595] Expose max_queue_size in ThreadPoolExecutor

2017-02-18 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- components: +Library (Lib) versions: +Python 3.7 ___ Python tracker ___

[issue25452] Add __bool__() method to subprocess.CompletedProcess

2017-02-18 Thread Sayan Chowdhury
Sayan Chowdhury added the comment: I am taking over to do the rest part required for this ticket. -- nosy: +sayanchowdhury ___ Python tracker ___

[issue18422] is_package missing so can't use -m

2017-02-18 Thread Nick Coghlan
Changes by Nick Coghlan : -- stage: -> resolved ___ Python tracker ___ ___

[issue28624] Make the `cwd` argument to `subprocess.Popen` accept a `PathLike`

2017-02-18 Thread Sayan Chowdhury
New submission from Sayan Chowdhury: I tested and found that the code already works with PathLike. I have created a PR which updates the test and documentation. I think the issue can be in Windows. -- nosy: +sayanchowdhury ___ Python tracker

[issue10938] Provide links to system specific strftime/ptime docs

2017-02-18 Thread Nick Coghlan
Changes by Nick Coghlan : -- nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list

[issue29506] Incorrect documentation for the copy module

2017-02-18 Thread Nick Coghlan
Changes by Nick Coghlan : -- nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list

[issue29549] Improve docstring for str.index

2017-02-18 Thread Nick Coghlan
Changes by Nick Coghlan : -- nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list

[issue28624] Make the `cwd` argument to `subprocess.Popen` accept a `PathLike`

2017-02-18 Thread Nick Coghlan
Changes by Nick Coghlan : -- nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list

[issue18423] Document limitations on -m

2017-02-18 Thread Sanyam Khurana
Changes by Sanyam Khurana : -- pull_requests: +122 ___ Python tracker ___ ___

[issue28624] Make the `cwd` argument to `subprocess.Popen` accept a `PathLike`

2017-02-18 Thread Roundup Robot
Changes by Roundup Robot : -- pull_requests: +121 ___ Python tracker ___

[issue22702] to improve documentation for join() (str method)

2017-02-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Current documentation looks good to me and not needing changes (except fixing the doubled "iterable"). Proposed change looks incorrect to me. No parameter named "str" is provided in this method. See also the docstring of str.join. -- nosy:

[issue22702] to improve documentation for join() (str method)

2017-02-18 Thread Sanyam Khurana
Changes by Sanyam Khurana : -- pull_requests: +120 ___ Python tracker ___ ___

[issue10938] Provide links to system specific strftime/ptime docs

2017-02-18 Thread Chandan kumar
Changes by Chandan kumar : -- pull_requests: +119 ___ Python tracker ___ ___

[issue29571] test_re is failing when local is set for `en_IN`

2017-02-18 Thread Nick Coghlan
Changes by Nick Coghlan : -- pull_requests: +118 ___ Python tracker ___ ___

[issue29571] test_re is failing when local is set for `en_IN`

2017-02-18 Thread Nick Coghlan
Changes by Nick Coghlan : -- pull_requests: +117 ___ Python tracker ___ ___

[issue28866] Type cache is not correctly invalidated on a class defining mro()

2017-02-18 Thread Julien Palard
Julien Palard added the comment: Hi, Tried again, this time getting some stats with MCACHE_STATS 1, to check if my patch is defeating the cache: Without my patch: $ time ./python performance/benchmarks/bm_chaos.py --worker -l1 -w0 -n1 --filename chaos.ppm --width=512 --height=512

[issue29533] urllib2 works slowly with proxy on windows

2017-02-18 Thread Julia Dolgova
Julia Dolgova added the comment: The issue applies to 3.6 as well. I agree that the replacement of gethostbyaddr with gethostbyname_ex is not a solution. But is there a way to check whether a hostname is in the that doesn't bring to the reverse lookup? I suppose that IE doesn't make a

[issue16011] "in" should be consistent with return value of __contains__

2017-02-18 Thread Amit Kumar
Changes by Amit Kumar : -- pull_requests: +116 ___ Python tracker ___ ___

[issue28087] macOS 12 poll syscall returns prematurely

2017-02-18 Thread Nick Coghlan
Nick Coghlan added the comment: Sorry, I meant test_poll and test_asyncore as described in http://bugs.python.org/issue28456 (I misremembered due to the test_poll failure mentioning EINTR) -- ___ Python tracker

[issue29506] Incorrect documentation for the copy module

2017-02-18 Thread Sanyam Khurana
Changes by Sanyam Khurana : -- pull_requests: +114 ___ Python tracker ___ ___

[issue27470] -3 commandline option documented differently via man

2017-02-18 Thread Subhendu Ghosh
Changes by Subhendu Ghosh : -- pull_requests: +113 ___ Python tracker ___ ___

[issue29571] test_re is failing when local is set for `en_IN`

2017-02-18 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset ace5c0fdd9b962e6e886c29dbcea72c53f051dc4 by GitHub in branch 'master': bpo-29571: Use correct locale encoding in test_re (#149) https://github.com/python/cpython/commit/ace5c0fdd9b962e6e886c29dbcea72c53f051dc4 --

  1   2   >