[Python-Dev] Re: Awareness creation of a new IDE

2019-10-21 Thread Terry Reedy
On 10/21/2019 7:34 PM, Kyle Stanley wrote: On a somewhat related note to the licensing page, I just noticed that the link to Zope's website (http://www.zope.com) is no longer valid. They currently use a .org TLD instead of .com (https://www.zope.org). Mind if I open a PR to fix/update the

[Python-Dev] Re: Fun with Python 3.8 and Qt

2019-10-21 Thread Benjamin Peterson
It's known: https://bugs.python.org/issue38007 On Mon, Oct 21, 2019, at 20:11, Kacvinsky, Tom wrote: > Today I discovered the this struct > > typedef struct{ > const char* name; > int basicsize; > int itemsize; > unsigned int flags; > PyType_Slot *slots; /* terminated by

[Python-Dev] Fun with Python 3.8 and Qt

2019-10-21 Thread Kacvinsky, Tom
Today I discovered the this struct typedef struct{ const char* name; int basicsize; int itemsize; unsigned int flags; PyType_Slot *slots; /* terminated by slot==0. */ } PyType_Spec; with "PyTypeSlot *slots" being on line 190 of object.h causes a problem when compiled with

[Python-Dev] Re: Awareness creation of a new IDE

2019-10-21 Thread Kyle Stanley
> You don't need permission to support Python in a commercial IDE. It's open source. Adding to this, see https://docs.python.org/3/license.html#terms-and-conditions-for-accessing-or-otherwise-using-python for the complete licensing information on Python. On a somewhat related note to the

[Python-Dev] Re: Awareness creation of a new IDE

2019-10-21 Thread Brett Cannon
If you want to use a modified version of the logo you will need to clear it with the PSF trademark WG: https://www.python.org/psf/committees/#trademarks-work-group. ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to

[Python-Dev] Re: Awareness creation of a new IDE

2019-10-21 Thread Guido van Rossum
Hi Lasan, You don't need permission to support Python in a commercial IDE. It's open source. If you use the Python logo, make sure it refers to Python and that you don't claim to be endorsed by the PSF, that's all we ask. Good luck! --Guido On Mon, Oct 21, 2019 at 9:41 AM Contact - Google

[Python-Dev] Awareness creation of a new IDE

2019-10-21 Thread Contact - Google
Dear Sir / Madam , I'm Lasan Nishshanka, CEO and the Founder of Clenontec. We are creating an IDE. It's name is Bacend Studio. We're creating this for the Windows Operating System. This IDE is designed to perform special functions such as App Development, Software Development, Games

[Python-Dev] Re: Need help to fix test_asyncio issues

2019-10-21 Thread Kyle Stanley
> Recently, I started to experiment "./python -m test [options] -F -j100" to attempt to reproduce some tricky race conditions: -j100 spawns 100 worker processes in parallel and -F stands for --forever (run tests in loop and stop at the first failure). Interesting, even as someone who has recently

[Python-Dev] Re: Getting function arguments of PyCFunctionObject

2019-10-21 Thread Petr Viktorin
On 2019-10-19 00:31, Sümer Cip wrote: Hi everyone, I have been working on some feature of a deterministic profiler(github.com/sumerc/yappi ). The feature is about getting arguments for a given set of function names. For example: you can define something like

[Python-Dev] Need help to fix test_asyncio issues

2019-10-21 Thread Victor Stinner
Hi, Right now, there are 14 open issues with "test_asyncio" in the title. Many test_asyncio tests have race conditions. I'm trying to fix them one by one, but it takes time, and then new tests are added with new race condition :-( For example, the following new test is failing randomly on

[Python-Dev] Should we allow IPv6 scope in urllib: http://[IPv6%scope]/path?

2019-10-21 Thread Victor Stinner
Hi, I wrote a PR to fix the following urllib security vulnerability: "urlparse of urllib returns wrong hostname" https://bugs.python.org/issue36338 https://github.com/python/cpython/pull/16780 While writing my fix, I found another issue about "[" and "]" characters in the user:password section