[issue34018] SQLite converters are documented to be sensitive to the case of type names, but they're not

2018-07-02 Thread Sergey Fedoseev
Change by Sergey Fedoseev : -- keywords: +patch pull_requests: +7651 stage: -> patch review ___ Python tracker ___ ___

[issue33978] logging.config.dictConfig with file handler leaks resources

2018-07-02 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset 087570af6d5d39b51bdd5e660a53903960e58678 by Vinay Sajip (Xtreak) in branch 'master': bpo-33978: Close existing handlers before logging (re-)configuration. (GH-8008) https://github.com/python/cpython/commit/087570af6d5d39b51bdd5e660a53903960e58678

[issue34008] Do we support calling Py_Main() after Py_Initialize()?

2018-07-02 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +7652 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33978] logging.config.dictConfig with file handler leaks resources

2018-07-02 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- pull_requests: +7654 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33986] asyncio: Typo in documentation: BaseSubprocessTransport -> SubprocessTransport

2018-07-02 Thread Bumsik Kim
Bumsik Kim added the comment: I also found that SubprocessTransport.close() does not reflect the changes done in #23347. -- ___ Python tracker ___

[issue33978] logging.config.dictConfig with file handler leaks resources

2018-07-02 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset b6c1989168efeb8b6320bec958e7e339270ac0ce by Vinay Sajip (Xtreak) in branch '3.6': [3.6] bpo-33978: Close existing handlers before logging (re-)configuration. (GH-8008). (GH-8045)

[issue33978] logging.config.dictConfig with file handler leaks resources

2018-07-02 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset 6f49afc3d983350f4f04d221a26573721f23c475 by Vinay Sajip (Miss Islington (bot)) in branch '3.7': bpo-33978: Close existing handlers before logging (re-)configuration. (GH-8008) (GH-8044)

[issue33978] logging.config.dictConfig with file handler leaks resources

2018-07-02 Thread Vinay Sajip
Change by Vinay Sajip : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.7, Python 3.8 ___ Python tracker ___

[issue34021] [2.7] test_regrtest: test_env_changed() fails on x86 Windows XP VS9.0 2.7

2018-07-02 Thread STINNER Victor
Change by STINNER Victor : -- title: test_regrtest: test_env_changed() fails on x86 Windows XP VS9.0 2.7 -> [2.7] test_regrtest: test_env_changed() fails on x86 Windows XP VS9.0 2.7 ___ Python tracker

[issue34020] Add '%(asctime)s' into default BASIC_FORMAT in logging module

2018-07-02 Thread Leon H.
New submission from Leon H. : Current BASIC_FORMAT: BASIC_FORMAT = "%(levelname)s:%(name)s:%(message)s" The first thing people do is set the format to '%(asctime)s:%(levelname)s:%(name)s:%(message)s' or like after importing logging module. Could we put the '%(asctime)s' into the default

[issue34021] [2.7] test_regrtest: test_env_changed() fails on x86 Windows XP VS9.0 2.7

2018-07-02 Thread STINNER Victor
Change by STINNER Victor : -- components: +Tests ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34021] test_regrtest: test_env_changed() fails on x86 Windows XP VS9.0 2.7

2018-07-02 Thread STINNER Victor
New submission from STINNER Victor : http://buildbot.python.org/all/#/builders/105/builds/182 d:\cygwin\home\db3l\buildarea\2.7.bolen-windowsvs9\build>"d:\cygwin\home\db3l\buildarea\2.7.bolen-windowsvs9\build\PC\VS9.0\\python_d" -Wd -3 -E -tt

[issue33961] Inconsistency in exceptions for dataclasses.dataclass documentation

2018-07-02 Thread Eric V. Smith
Eric V. Smith added the comment: New changeset 24d74bd8377d38528566437e70fcd72229695ac7 by Eric V. Smith (Chris Cogdon) in branch '3.7': bpo-33961: Adjusted dataclasses docs to correct exceptions raised. (GH-7917)

[issue34019] webbrowser: wrong arguments for Opera browser.

2018-07-02 Thread Bumsik Kim
Change by Bumsik Kim : -- versions: +Python 2.7, Python 3.4, Python 3.5, Python 3.6, Python 3.8 ___ Python tracker ___ ___

[issue34020] Add '%(asctime)s' into default BASIC_FORMAT in logging module

2018-07-02 Thread Eric V. Smith
Eric V. Smith added the comment: Unfortunately, I don't see how we can do this without breaking code that assumes the default log format doesn't have the timestamp in it. In particular, I'm thinking of external log file parsers. -- nosy: +eric.smith, vinay.sajip

[issue33955] Implement PyOS_CheckStack on macOS using pthread_get_stack*_np

2018-07-02 Thread Dong-hee Na
Dong-hee Na added the comment: @ronaldoussoren I wrote a first proto type PR and it works well on my MacBook Pro. As you commented, there is a issue with pthread_get_stacksize_np when pthread_main_np() == 1 on some old mac system. I will take a look more deeply at this issue. If you have

[issue34020] Add '%(asctime)s' into default BASIC_FORMAT in logging module

2018-07-02 Thread Vinay Sajip
Vinay Sajip added the comment: > The first thing people do is set the format to > '%(asctime)s:%(levelname)s:%(name)s:%(message)s' or like after importing > logging module. "People" - you don't claim to speak for *everyone*, right? basicConfig() takes a format= keyword argument that you

Re: PEP 526 - var annotations and the spirit of python

2018-07-02 Thread Steven D'Aprano
On Sun, 01 Jul 2018 20:51:42 -0700, Jim Lee wrote: > Back before the dot com boom, programmers (generally) knew at least 6, > 7, 8 languages. You obviously didn't know (m)any of the hundreds of thousands of COBOL programmers. (A language conspicuous by its absence from your impressively large

[issue34006] Windows HTML Help (chm) has fixed line length

2018-07-02 Thread Julien Palard
Julien Palard added the comment: > Maybe, all you we need to do is adding "-D > html_theme_options.body_max_width=none" option to sphinx-build when building > html for htmlhelp, in Doc/make.bat. As far as I can see, it's the right solution, but I have no windows machine to test it. I

[issue34009] Document Travis CI / Ubuntu 14.04 OpenSSL compatibility issues

2018-07-02 Thread Antoine Pitrou
Antoine Pitrou added the comment: Why should we mention Travis-CI at all? It's Travis-CI's job to document the binaries and runtimes they provide on each of their build environments. -- nosy: +pitrou ___ Python tracker

[issue34006] Windows HTML Help (chm) has fixed line length

2018-07-02 Thread gladman
gladman added the comment: I cannot build the Windows chm file but I am happy to test any versions that others can produce. -- ___ Python tracker ___

[issue33978] logging.config.dictConfig with file handler leaks resources

2018-07-02 Thread Géry
Géry added the comment: Thanks @xtreak and @vinay.sajip for the fix. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue33996] Crash in gen_send_ex(): _PyErr_GetTopmostException() returns freed memory

2018-07-02 Thread STINNER Victor
STINNER Victor added the comment: > I could only reproduce this intermittently with 3.7 build. Oh, I forgot to mention that I have to run the test many times to reproduce the crash. Between 1 and 10 times. I used the master branch compiled in debug mode to report this issue. --

[issue20304] Argument Clinic: char convertor should use default values of type bytes

2018-07-02 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34017] Tkinter CheckButton not working in EXE

2018-07-02 Thread elfantroussi
New submission from elfantroussi : I work with Tkinter on spyder python3.6. In my program I use Tkinter CheckButtons with a command. When I execute my program in Spyder, It works well. But when I generate the EXE using cx Freeze, I'm not able to check the checkbuttons on my interface, like

[issue34018] SQLite converters are documented to be sensitive to the case of type names, but they're not

2018-07-02 Thread Sergey Fedoseev
New submission from Sergey Fedoseev : SQLite converters are documented to be sensitive to the case of type names, but they're not. In [50]: import sqlite3 ...: ...: sqlite3.converters.clear() ...: sqlite3.register_converter('T', lambda x: 'UPPER') ...:

[issue34008] Do we support calling Py_Main() after Py_Initialize()?

2018-07-02 Thread STINNER Victor
STINNER Victor added the comment: My PR 8043 fix the Python 3.7 regression: allow again to call Py_Main() after Py_Initialize(). Nick: if you want to raise an error on that case, I would prefer to see a deprecation warning emitted in version N before raising an error in version N+1.

[issue33978] logging.config.dictConfig with file handler leaks resources

2018-07-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +7653 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

Re: File names with slashes [was Re: error in os.chdir]

2018-07-02 Thread Karsten Hilbert
Eryk, thanks for your to-the-point in-depth posts. Karsten -- GPG 40BE 5B0E C98E 1713 AFA6 5BC0 3BEA AC80 7D4F C89B -- https://mail.python.org/mailman/listinfo/python-list

[issue33978] logging.config.dictConfig with file handler leaks resources

2018-07-02 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Thanks much @maggyero for the original report and sample test case this was my first non-easy bug fix. Thanks @vinay.sajip for the guidance on logging module implementation. Thanks -- versions: -Python 3.7, Python 3.8

[issue34009] Document Travis CI / Ubuntu 14.04 OpenSSL compatibility issues

2018-07-02 Thread David MacIver
David MacIver added the comment: Anthony Sottile has pointed out to me that I'm wrong about the xenial thing, and that actually it does work it's just that you need to get multiple things right in order for it to do so. https://github.com/deadsnakes/travis-ci-python3.7-example is a good

[issue34019] webbrowser: wrong arguments for Opera browser.

2018-07-02 Thread Bumsik Kim
New submission from Bumsik Kim : webbrowser module currently opens Opera Browser using the following command: opera -remote "openURL(https://google.com,new-window)" While this follows Opera's documentation (https://www.opera.com/docs/switches/#remote), this is broken since Opera switched

[issue33955] Implement PyOS_CheckStack on macOS using pthread_get_stack*_np

2018-07-02 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +7655 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue34019] webbrowser: wrong arguments for Opera browser.

2018-07-02 Thread Bumsik Kim
Change by Bumsik Kim : -- keywords: +patch pull_requests: +7656 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue34022] Python 3.7: 6 tests failed on OpenSUSE

2018-07-02 Thread Matej Cepl
Matej Cepl added the comment: I would add that Debian doesn't seem to fare that much better ... https://buildd.debian.org/status/fetch.php?pkg=python3.7=amd64=3.7.0-1=1530136859=0 -- nosy: +mcepl ___ Python tracker

[issue20760] test_compileall test getting failed on 3.4 RC

2018-07-02 Thread STINNER Victor
STINNER Victor added the comment: This issue is 4 years old and has not been seen recently on Linux. Sadly, the issue doesn't contain enough information to fix the bug, so I close it. If you see again the bug on Linux, please open a new issue (and maybe add a reference to this old bug).

[issue34008] Do we support calling Py_Main() after Py_Initialize()?

2018-07-02 Thread Matej Cepl
Change by Matej Cepl : -- nosy: +mcepl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33955] Implement PyOS_CheckStack on macOS using pthread_get_stack*_np

2018-07-02 Thread Ronald Oussoren
Ronald Oussoren added the comment: W.r.t. benchmarks: The full benchmark suite that's often used to assess the performance impact on real world code is: http://pyperformance.readthedocs.io Running this takes some time, and the interesting bit is comparing the performance with and without

[issue30256] Adding a SyncManager Queue proxy to a SyncManager dict or Namespace proxy raises an exception

2018-07-02 Thread Xiang Zhang
Change by Xiang Zhang : -- nosy: +davin, pitrou, xiang.zhang ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33955] Implement PyOS_CheckStack on macOS using pthread_get_stack*_np

2018-07-02 Thread Ronald Oussoren
Ronald Oussoren added the comment: Have you looked at benchmark results for this patch? In particular, PyOS_CheckStack is called quite often and I wonder how those calls affect performance. If there is a clear performance impact it would be useful to store some information in the python

[issue34022] Python 3.7: 6 tests failed on OpenSUSE

2018-07-02 Thread STINNER Victor
New submission from STINNER Victor : https://build.opensuse.org/package/show/home:mcepl:work/python3 6 tests failed: test_cmd_line_script test_compileall test_importlib test_multiprocessing_main_handling test_py_compile test_runpy

[issue34022] Python 3.7: 6 tests failed on OpenSUSE

2018-07-02 Thread STINNER Victor
STINNER Victor added the comment: It seems like the same (or similar? I didn't check) tests fail on Debian: https://buildd.debian.org/status/fetch.php?pkg=python3.7=amd64=3.7.0-1=1530136859=0 -- ___ Python tracker

[issue33955] Implement PyOS_CheckStack on macOS using pthread_get_stack*_np

2018-07-02 Thread Dong-hee Na
Dong-hee Na added the comment: @ronaldoussoren 1. I will try to run a benchmark is there any good benchmark to try it? 2. As far as I know, OS X 10.9 Mavericks has an issue with pthread_get_stacksize_np, I added a new commit on PR with this issue. Thanks! --

[issue33700] [doc] Old version picker don't understand language tags in URL

2018-07-02 Thread Julien Palard
Change by Julien Palard : -- keywords: +patch pull_requests: +7657 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue29272] test_logging hangs if /etc/hosts only aliases "localhost" to ::1

2018-07-02 Thread STINNER Victor
STINNER Victor added the comment: I confirm the issue. test_logging hangs if the resolution of the hostname fails with a timeout. I worked again the issue by adding my hostname to /etc/hosts. -- nosy: +vstinner ___ Python tracker

[issue34006] Windows HTML Help (chm) has fixed line length

2018-07-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: Zach, I believe you helped write make.bat. I can run 'make htmlhelp', but I don't know how to modify make.bat to add option "-D html_theme_options.body_max_width=none" specifically when building htmlhelp. -- ___

Re: PEP 526 - var annotations and the spirit of python

2018-07-02 Thread Grant Edwards
On 2018-07-02, Steven D'Aprano wrote: > In the long run, why do we always fear people coming from other > languages? Tribalism and fear of outsiders was bred into H. sapiens (and ancestors) millions of years ago? -- Grant Edwards grant.b.edwardsYow! My Aunt MAUREEN was

[issue28874] test_logging fails and freezes

2018-07-02 Thread STINNER Victor
STINNER Victor added the comment: Extract of cpython-testlogging.log: 0:08:58 [198/404] test_logging --- Logging error --- Traceback (most recent call last): File "/mnt/d/Share/source/cpython-master/Lib/logging/handlers.py", line 634, in emit self.send(s) File

[issue34023] timedelta(seconds=x) strange results when type(x) == np.int32

2018-07-02 Thread Mark Dickinson
New submission from Mark Dickinson : On Python 2.x on Windows, creating a timedelta with an `np.int32` instance for the number of seconds can (somewhat) silently give wrong results. Enthought Deployment Manager -- https://www.enthought.com Python 2.7.13 |Enthought, Inc. (x86_64)| (default,

[issue34022] Python 3.7: 6 tests failed on OpenSUSE

2018-07-02 Thread STINNER Victor
STINNER Victor added the comment: I'm unable to reproduce the issue on Fedora using the same configure command: $ ./configure --host=x86_64-suse-linux-gnu --build=x86_64-suse-linux-gnu --program-prefix= --disable-dependency-tracking --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin

[issue34022] Python 3.7: 6 tests failed on OpenSUSE

2018-07-02 Thread Ned Deily
Change by Ned Deily : -- nosy: +doko ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

ANN: OpenOpt Suite v 0.5627

2018-07-02 Thread dmitrey15
hello, OpenOpt Suite v 0.5627 (OpenOpt, FuncDesigner, SpaceFuncs, DerApproximator) is available for downloading from the link https://app.box.com/s/yubipvy5q91x8w3eoglhi0tn5d9i854a (unfortunately, I still cannot update it in PYPI entries because of problems with incorrect password) It fixes

[issue34022] Python 3.7: 6 tests failed on OpenSUSE

2018-07-02 Thread STINNER Victor
STINNER Victor added the comment: Thread on python-dev: "[Python-Dev] Failing tests [Was: Re: Python 3.7.0 is now available! (and so is 3.6.6)]" https://mail.python.org/pipermail/python-dev/2018-July/154208.html My reply: https://mail.python.org/pipermail/python-dev/2018-July/154224.html

Re: File names with slashes [was Re: error in os.chdir]

2018-07-02 Thread Chris Angelico
On Tue, Jul 3, 2018 at 2:20 AM, Mikhail V wrote: > [Richard Damon] > >> The one major issue with backslashes is that they are a special >> character in string literals, so you either need to use raw literals a >> remember the few cases they still act as special characters, or remember >> to

Re: EXTERNAL: OSError: [Errno 48] Address already in use

2018-07-02 Thread Marko Rauhamaa
Gregory Ewing : > Dan Stromberg wrote: >> On Thu, Jun 28, 2018 at 10:30 PM, Marko Rauhamaa wrote: >> >>>Well, the same security issue can be demonstrated without >>>SO_REUSEADDR: >>> >>>The security issue can be real but is not directly related with >>>SO_REUSEADDR. >> >> Yes, it can. It just

[issue34025] SMTP EmailPolicy not using the correct line length for RCF 2045 encoded data (is 78, should be 76)

2018-07-02 Thread R. David Murray
R. David Murray added the comment: The default maximum line length is indeed supposed to be 78 (characters..and I can't now remember whether I implemented it in terms of characters or octets), that's per RFC 5322. What is wrong is that content encoded text is supposed to use a max line

Re: Getting posts to sort chronologically in tree view

2018-07-02 Thread Grant Edwards
On 2018-07-02, T Berger wrote: > Is there any way to set posts to appear chronologically in tree > view? http://slrn.sourceforge.net/docs/slrn-manual.html -- Grant Edwards grant.b.edwardsYow! Now we can become at

[issue34027] python 3.7 openpty/forkpty build failure on macOS

2018-07-02 Thread Ned Deily
Ned Deily added the comment: I don't see this build failure. Can you say where you find libutil.h installed on macOS and what version of macOS this is? It doesn't seem to be part of the standard Apple-supplied /usr/include header files installed by xcode-select --install for macOS 10.13

[issue34027] python 3.7 openpty/forkpty build failure on macOS

2018-07-02 Thread Daiderd Jordan
Daiderd Jordan added the comment: The headers end up in the build environment because of Libsystem which is part of our base environment. But yes, this is also the case with 3.6 and that builds just fine so I'm not sure why it's failing now. These are the logs from our build service for

[issue34027] python 3.7 openpty/forkpty build failure on macOS

2018-07-02 Thread Ned Deily
Ned Deily added the comment: It's failing in 3.7 because of the change introduced in Issue27659 to prohibit implicit C function declarations by adding the -Werror=implicit-function-declaration to compiles. -- ___ Python tracker

[issue34019] webbrowser: wrong arguments for Opera browser.

2018-07-02 Thread Bumsik Kim
Bumsik Kim added the comment: $opera --version 53.0.2907.68 $opera -remote "openURL(https://google.com,new-window)" would open a broken link: http://openurl%28https//google.com,new-window) I found that problem while answering a StackOverflow question:

[issue33649] asyncio docs overhaul

2018-07-02 Thread Jim DeLaHunt
Jim DeLaHunt added the comment: I'm a developer using Python in my application. I just spent the last couple of weeks learning about asyncio with the present documentation. I am very happy to see that work is underway for improved documentation. I would be glad to take on writing tasks or

[issue34019] webbrowser: wrong arguments for Opera browser.

2018-07-02 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: What error do you get and what opera version are you using? -- ___ Python tracker ___ ___

[issue34019] webbrowser: wrong arguments for Opera browser.

2018-07-02 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: I can use opera -remote "openURL(https://google.com,new-window)" without problems as per the opera documentation with the latest version: $opera --version 53.0.2907.110 -- nosy: +pablogsal ___ Python

Multi-threading with a simple timer?

2018-07-02 Thread David D
Is there a SIMPLE method that I can have a TIMER count down at a user input prompt - if the user doesn't enter information within a 15 second period, it times out. I am going to be using pycharm and not the shell. Thanks in advance. -- https://mail.python.org/mailman/listinfo/python-list

Re: Getting posts to sort chronologically in tree view

2018-07-02 Thread T Berger
On Monday, July 2, 2018 at 2:36:00 PM UTC-4, Dan Stromberg wrote: > On Mon, Jul 2, 2018 at 11:02 AM, T Berger wrote: > > > Is there any way to set posts to appear chronologically in tree view? And > > why is the tree view completely out of order? My last two posts in this > > view are from 6/27

[issue34027] python 3.7 openpty/forkpty build failure on macOS

2018-07-02 Thread Daiderd Jordan
New submission from Daiderd Jordan : I can't really figure out why, but the import in posixmodule.c seems to get skipped since python 3.7. The condition doesn't look entirely correct in case libutil.h is also available on macOS, however this has not changed since 3.6 and it worked fine

[issue34006] Windows HTML Help (chm) has fixed line length

2018-07-02 Thread miss-islington
miss-islington added the comment: New changeset 4d02ad856f123d68712f542d55e8ff3393f00a8f by Miss Islington (bot) in branch '3.7': bpo-34006: Revert line length limit for Windows help docs (GH-8051) https://github.com/python/cpython/commit/4d02ad856f123d68712f542d55e8ff3393f00a8f --

[issue34006] Windows HTML Help (chm) has fixed line length

2018-07-02 Thread miss-islington
miss-islington added the comment: New changeset 580c7db172a41d6311c0f3a7aec321597576e214 by Miss Islington (bot) in branch '3.6': bpo-34006: Revert line length limit for Windows help docs (GH-8051) https://github.com/python/cpython/commit/580c7db172a41d6311c0f3a7aec321597576e214 --

Re: Getting posts to sort chronologically in tree view

2018-07-02 Thread Grant Edwards
On 2018-07-02, Gene Heskett wrote: > On Monday 02 July 2018 17:17:21 Grant Edwards wrote: > >> On 2018-07-02, T Berger wrote: >> > Is there any way to set posts to appear chronologically in tree >> > view? >> >> http://slrn.sourceforge.net/docs/slrn-manual.html > > That s/b the default if

File names with slashes [was Re: error in os.chdir]

2018-07-02 Thread Mikhail V
[Chris A] > [Mikhail] > > So Imo default syntax should be something like: > > > > S = "A:{x41}B:{x42}" > > > > instead of backslashes and Co. > > So how do you represent brace characters in a string? \{ and \} just kidding :-D I would be ok with {L} and {R} - easy on eye and easy to

[issue34022] Python 3.7: 6 tests failed on OpenSUSE and Debian

2018-07-02 Thread Matej Cepl
Matej Cepl added the comment: It's somehow complicated, in the build chroot I can make tests run only with LD_LIBRARY_PATH set to $(readlink -f Python-3.7.0) and PYTHONPATH to Lib directory. However, then the set of failed tests changes. For example test_runpy runs without problems, but

[issue34022] Python 3.7: 6 tests failed on OpenSUSE and Debian

2018-07-02 Thread Matej Cepl
Matej Cepl added the comment: Yes, it must be something in the chroot, because when run in the plain command line, all tests as well on openSUSE Tumbleweed (with the latest updates). 393 tests OK. 1 test failed: test_epoll 21 tests skipped: test_ctypes test_devpoll test_idle

Re: Getting posts to sort chronologically in tree view

2018-07-02 Thread Ben Finney
T Berger writes: > Here is another question. I replied to this email in my inbox. But > it's not showing here. Please understand that the “here” you mention is subjective, for your particular view of this forum. This forum is distributed over many servers, and the participants here use various

[issue34019] webbrowser: wrong arguments for Opera browser.

2018-07-02 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Sorry, you are right! It seems that my Opera opened another tab with Google by default and I was confused by that. Thanks for the context. -- ___ Python tracker

[issue34019] webbrowser: wrong arguments for Opera browser.

2018-07-02 Thread Bumsik Kim
Bumsik Kim added the comment: No problem :) To add more, the Opera's documentation (https://www.opera.com/docs/switches) says: "This document was last updated for Opera 11.61" This is the reason I guessed Opera changed its CLI format to Chrome's and forget to document it --

[issue34001] LibreSSL does not tolerate setting minimum_version greater than maximum_version

2018-07-02 Thread Alan Huang
Change by Alan Huang : -- keywords: +patch pull_requests: +7663 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue34027] python 3.7 openpty/forkpty build failure on macOS

2018-07-02 Thread Ned Deily
Change by Ned Deily : -- components: +macOS nosy: +ned.deily, ronaldoussoren ___ Python tracker ___ ___ Python-bugs-list mailing

[issue34027] python 3.7 openpty/forkpty build failure on macOS

2018-07-02 Thread Daiderd Jordan
Change by Daiderd Jordan : -- keywords: +patch pull_requests: +7664 stage: -> patch review ___ Python tracker ___ ___

Re: Getting posts to sort chronologically in tree view

2018-07-02 Thread Gene Heskett
On Monday 02 July 2018 17:17:21 Grant Edwards wrote: > On 2018-07-02, T Berger wrote: > > Is there any way to set posts to appear chronologically in tree > > view? > > http://slrn.sourceforge.net/docs/slrn-manual.html That s/b the default if threading is turned off. It is in T-bird and kmail.

[issue34027] python 3.7 openpty/forkpty build failure on macOS

2018-07-02 Thread Daiderd Jordan
Daiderd Jordan added the comment: This is a build using the nix package manager, we use all of the opensource components provided by apple instead of relying on xcode. The libutil.h that's found in this case is the one from the 10.11.6 sources.

[issue34006] Windows HTML Help (chm) has fixed line length

2018-07-02 Thread Terry J. Reedy
Change by Terry J. Reedy : -- assignee: -> terry.reedy resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue34027] python 3.7 openpty/forkpty build failure on macOS

2018-07-02 Thread Ned Deily
Ned Deily added the comment: Even on macOS 10.11.6, libutil.h is not installed and posixmodule.c builds just fine. So I don't think that the presence of something in opensource.apple.com necessarily means it was installed in place in a standard system. I'm not saying yet that we shouldn't

Re: Python 3.7 Windows Help Behaviour

2018-07-02 Thread Roel Schroeven
BlindAnagram schreef op 30/06/2018 15:50: On 30/06/2018 10:43, Steven D'Aprano wrote: On Fri, 29 Jun 2018 12:53:15 -0400, Terry Reedy wrote: On 6/29/2018 6:14 AM, BlindAnagram wrote: In Python 3.7.0 on Windows the help file (python370.chm) displays with a fixed line length and does not

[issue34027] python 3.7 openpty/forkpty build failure on macOS

2018-07-02 Thread Daiderd Jordan
Daiderd Jordan added the comment: Oh interesting, so it only used to worked by accident. I should have looked at the 3.6 log more closely. -- ___ Python tracker ___

Re: Getting posts to sort chronologically in tree view

2018-07-02 Thread Ben Finney
T Berger writes: > Is there any way to set posts to appear chronologically in tree view? Yes, depending on what software you use to interact with this forum. See the documentation for that software. In the case of Gnus, that ordering is the default when viewing the group summary. -- \

Re: PEP 526 - var annotations and the spirit of python

2018-07-02 Thread Gregory Ewing
Ian Kelly wrote: Just because somebody knows a dozen languages doesn't mean that they can come up with the correct algorithm, That doesn't mean there's no correlation. Someone who is familiar with a variety of languages is also very likely to be self-motivated and have enough passion and

Re: Getting posts to sort chronologically in tree view

2018-07-02 Thread MRAB
On 2018-07-02 19:02, T Berger wrote: Is there any way to set posts to appear chronologically in tree view? And why is the tree view completely out of order? My last two posts in this view are from 6/27 and 6/28. You haven't said what software you're using to view this list. Judging by your

[issue34006] Windows HTML Help (chm) has fixed line length

2018-07-02 Thread Joseph L. Casale
Change by Joseph L. Casale : -- nosy: -jcasale ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33968] os.makedirs and empty string

2018-07-02 Thread Emily Morehouse
Change by Emily Morehouse : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___ ___

Re: PEP 526 - var annotations and the spirit of python

2018-07-02 Thread Tim Daneliuk
On 07/01/2018 12:17 PM, MRAB wrote: > On 2018-07-01 18:06, Abdur-Rahmaan Janhangeer wrote: >> was viewing pep526, so, finally, python cannot do without hinting the type >> as other languages? >> will python finally move to >> int x = 3 where int is a pre annotation? >> >> i am not arguing it's

Re: EXTERNAL: OSError: [Errno 48] Address already in use

2018-07-02 Thread T Berger
On Monday, July 2, 2018 at 1:22:59 PM UTC-4, T Berger wrote: > On Saturday, June 30, 2018 at 6:02:06 PM UTC-4, T Berger wrote: > > On Friday, June 29, 2018 at 7:00:15 PM UTC-4, Cameron Simpson wrote: > > > > > The key point here from Jim is "simultaneously". Are you properly > > > shutting down

[issue34006] Windows HTML Help (chm) has fixed line length

2018-07-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: The patch now works for me and can be tested. The blurb is added and can be reviewed. I expect to merge within a day. -- ___ Python tracker

[issue33955] Implement PyOS_CheckStack on macOS using pthread_get_stack*_np

2018-07-02 Thread Dong-hee Na
Dong-hee Na added the comment: @ronaldoussoren I updated the PR and we need some discussion. I benchmarked new patch with Fibonacci codes. baseline(master): 21.330535484 without call sysctlbyname(PR 8046): 22.857963209 secs with call sysctlbyname(PR 8046): 37.125129114 secs So my choice is

Re: I lost nearly all my modules installing 3.7

2018-07-02 Thread Elliott Roper
On 2 Jul 2018, Michael Torrie wrote (in article): > On 06/30/2018 11:10 AM, Elliott Roper wrote: > > I should have mentioned that none of this went wrong in 3.6. All I'm after > > are packages I can install with pip3. I really don't need to go down all the > > twisty passages installing Fortran >

[issue33700] [doc] Old version picker don't understand language tags in URL

2018-07-02 Thread Larry Hastings
Larry Hastings added the comment: New changeset 1b141b9553424971639bde281feb1d4e4e586dbe by larryhastings (Julien Palard) in branch '3.5': Doc: Backport language switcher (bpo-33700, bpo-31045) (#8048) https://github.com/python/cpython/commit/1b141b9553424971639bde281feb1d4e4e586dbe

[issue31045] Add a language switch to the Python documentation

2018-07-02 Thread Larry Hastings
Larry Hastings added the comment: New changeset 1b141b9553424971639bde281feb1d4e4e586dbe by larryhastings (Julien Palard) in branch '3.5': Doc: Backport language switcher (bpo-33700, bpo-31045) (#8048) https://github.com/python/cpython/commit/1b141b9553424971639bde281feb1d4e4e586dbe

Re: PEP 526 - var annotations and the spirit of python

2018-07-02 Thread Jim Lee
On 07/02/18 04:01, Steven D'Aprano wrote: On Sun, 01 Jul 2018 20:51:42 -0700, Jim Lee wrote: Back before the dot com boom, programmers (generally) knew at least 6, 7, 8 languages. You obviously didn't know (m)any of the hundreds of thousands of COBOL programmers.   I did know a handful,

[issue34026] Request for 2 Windows installation changes.

2018-07-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: 1. I saw "Python 3.7 Module Docs (64 bit)" twice. But this seems to be a local issue. When I clicked on each, the second worked, the first brought up something like 'The python.exe this shortcut points to had been deleted [or moved?]. Delete shortcut?'.

[issue23850] Missing documentation for Py_TPFLAGS_HAVE_NEWBUFFER

2018-07-02 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Documentation fixes to 2.7 is still accepted. Please create a PR on GitHub. -- nosy: +Mariatta ___ Python tracker ___

  1   2   >