[Python-ideas] Add a PyObject_VaCallFunction to C API??

2020-01-05 Thread hrfudan
The C API has a function PyObject_CallFunction( PyObject*, const char* fmt, ... ). It is a variadic function hence I couldn't pass a va_list to it to invoke the call. My question is, is it technically possible to provide a companion PyObject_VaCallFunction which takes a va_list, just like

[Python-ideas] Re: Python, Be Bold!

2020-01-05 Thread Andrew Barnert via Python-ideas
On Jan 5, 2020, at 00:17, James Lu wrote: > >  > I use macOS, and using Python is very confusing. > > - Apple's bundled Python 2.7. Apple has made a mess of things, but they’ve actually fixed that mess in 10.15—they now give you 3.7 and 2.7, and neither one is broken or weird. That being

[Python-ideas] Re: Python, Be Bold!

2020-01-05 Thread Chris Angelico
On Sun, Jan 5, 2020 at 7:19 PM James Lu wrote: > > I use macOS, and using Python is very confusing. > > - Apple's bundled Python 2.7. > - Anaconda (Python scientific stack package manager) Python and conda. > - Homebrew (3rd party package manager for macOS) Python and pip. > I also believe that

[Python-ideas] Re: Python, Be Bold!

2020-01-05 Thread James Lu
I use macOS, and using Python is very confusing. - Apple's bundled Python 2.7. - Anaconda (Python scientific stack package manager) Python and conda. - Homebrew (3rd party package manager for macOS) Python and pip. I also believe that there is a PSF Python installer, but I am not sure. Python,