Re: What is the correct interpreter

2020-03-04 Thread Miki Tebeka
Hi, > Where is the correct interpreter? > I have installed python several times > Pycharm all ways selects > > C:\ProgramFiles\JetBrains\PyCharm Community Edition 2019.3.3\bin\pycharm64.exe This is the PyCharm executable, not the Python one. See https://www.jetbrains.com/help/pycharm/configuring

Re: [Python-Dev] [RELEASE] Python 3.7.7rc1 is now available for testing

2020-03-04 Thread Ned Deily
On Mar 4, 2020, at 23:39, Jonathan Goble wrote: >> On Wed, Mar 4, 2020 at 10:05 PM Ned Deily wrote: >> On Mar 4, 2020, at 17:17, Jonathan Goble wrote: >> > On Wed, Mar 4, 2020 at 1:02 PM Ned Deily wrote: >> > Details here: >> >> https://discuss.python.org/t/python-3-7-7rc1-is-now-available-for-

Re: [Python-Dev] [RELEASE] Python 3.7.7rc1 is now available for testing

2020-03-04 Thread Jonathan Goble
On Wed, Mar 4, 2020 at 1:02 PM Ned Deily wrote: > Details here: > > > https://discuss.python.org/t/python-3-7-7rc1-is-now-available-for-testing/3638 "Assuming no critical problems are found prior to *2020-02-10*..." I would like to know how you expect people to travel back in time to report pr

Re: [Python-Dev] [RELEASE] Python 3.7.7rc1 is now available for testing

2020-03-04 Thread Ned Deily
On Mar 4, 2020, at 17:17, Jonathan Goble wrote: > On Wed, Mar 4, 2020 at 1:02 PM Ned Deily wrote: > Details here: > >> https://discuss.python.org/t/python-3-7-7rc1-is-now-available-for-testing/3638 >> >> "Assuming no critical problems are found prior to 2020-02-10..." > I would like to know ho

Re: Application setup like windows msi

2020-03-04 Thread Michael Torrie
On 3/4/20 4:51 PM, J A wrote: > I was wondering g if there was a way to distribute an application that took > advantage of user input like a windows .msi does. On linux of course. Several installer frameworks can make interactive installers for Linux. There's the NullSoft installer and InstallerVI

Application setup like windows msi

2020-03-04 Thread J A
I was wondering g if there was a way to distribute an application that took advantage of user input like a windows .msi does. On linux of course. -- https://mail.python.org/mailman/listinfo/python-list

What is the correct interpreter

2020-03-04 Thread Jim Ferraro
Where is the correct interpreter? I have installed python several times Pycharm all ways selects C:\ProgramFiles\JetBrains\PyCharm Community Edition 2019.3.3\bin\pycharm64.exe But when I run a simple code it objects to the interpreter??? Sent from Mail

How to solve a deadlock in an orthodox way

2020-03-04 Thread Pau Freixes
Hi folks, During the development of a Python library which uses under the hood a C++ library - using Cyhton - we found a deadlock issue between a lock maintained by the C++ library and the GIL lock. The problem started to appear at the moment that we tried to offload all IO operations into an iso

Re: Help building python application from source

2020-03-04 Thread Marco Sulla via Python-list
Mh. I hoped not, but unluckily I expected a response like this. People of Python List, I strongly discourage you to support this user. He is quite suspicious for the following reasons: 1. he go so far as he offers money for, IMHO, a trivial task 2. he does not trust binaries from pip. He is so ca

[RELEASE] Python 3.7.7rc1 is now available for testing

2020-03-04 Thread Ned Deily
Details here: https://discuss.python.org/t/python-3-7-7rc1-is-now-available-for-testing/3638 https://www.python.org/downloads/release/python-377rc1/ -- Ned Deily n...@python.org -- [] -- https://mail.python.org/mailman/listinfo/python-list

How does the super type present itself and do lookups?

2020-03-04 Thread Adam Preble
Months ago, I asked a bunch of stuff about super() and managed to fake it well enough to move on to other things for awhile. The day of reckoning came this week and I was forced to implement it better for my personal Python project. I have a hack in place that makes it work well-enough but I fou

Re: pyodbc slowness

2020-03-04 Thread Larry Martell
On Wed, Mar 4, 2020 at 3:20 PM Larry Martell wrote: > > I have some Python code that uses pyodbc to talk to a SQL Server database. In > that code I do an INSERT INTO SELECT * FROM > > That query takes around 3 times longer to run when invoked from Python with > pyodbc than when run wi

pyodbc slowness

2020-03-04 Thread Larry Martell
I have some Python code that uses pyodbc to talk to a SQL Server database. In that code I do an INSERT INTO SELECT * FROM That query takes around 3 times longer to run when invoked from Python with pyodbc than when run with direct SQL. On one system we have 1,667 rows and the timings a

`async def` breaks encapsulation?

2020-03-04 Thread Marco Sulla via Python-list
I worked a lot with `asyncio` many years ago, when `aiohttp` was first born. Now I'm working again with it, since a library that I need requires it. asyncio is much more simple to use now, but there's something that still make me doubtful: the require of the `async` keyword for coroutines. When I