Re: What's the public API alternative to _PyObject_GC_IS_TRACKED()?

2021-12-27 Thread Marco Sulla
Hi, Inada Senpai. So I do not need PyObject_GC_Track on cloning or merging, or MAINTAIN_TRACKING on insert? On Tue, 28 Dec 2021 at 07:58, Inada Naoki wrote: > > On Tue, Dec 28, 2021 at 3:31 AM Marco Sulla > wrote: > > > > I need it since I'm developing an immutable dict. And in dict that > > fun

Re: What's the public API alternative to _PyObject_GC_IS_TRACKED()?

2021-12-27 Thread Inada Naoki
On Tue, Dec 28, 2021 at 3:31 AM Marco Sulla wrote: > > I need it since I'm developing an immutable dict. And in dict that > function is used. > > I do not understand why there's no public API for that function. It > seems very useful. > I think it is useful only for optimization based on *current

Re: PIP Certificate problem

2021-12-27 Thread Chris Angelico
On Tue, Dec 28, 2021 at 8:00 AM Aniket wrote: > >I have reinstalled python, and repaired but no help at all. My version of >Python is 3.10.1 > What does "pip --version" tell you? ChrisA -- https://mail.python.org/mailman/listinfo/python-list

PIP Certificate problem

2021-12-27 Thread Aniket
Hi there, System Specs: Edition Windows 11 Home Single Language Version 21H2 OS build22000.376 Experience Windows Feature Experience Pack 1000.22000.376.0 Processor Intel(R) Core(TM) i5-8250U CPU @ 1.60GHz 1.80 GHz Installed

Re: What's the public API alternative to _PyObject_GC_IS_TRACKED()?

2021-12-27 Thread Marco Sulla
I need it since I'm developing an immutable dict. And in dict that function is used. I do not understand why there's no public API for that function. It seems very useful. On Sun, 26 Dec 2021 at 17:28, Barry Scott wrote: > > > > > On 26 Dec 2021, at 13:48, Marco Sulla wrote: > > > > I have to u