Re: [Python-Dev] My thinking about the development process

2015-01-07 Thread Nick Coghlan
On 6 December 2014 at 06:04, Brett Cannon bcan...@gmail.com wrote: # Next steps I'm thinking first draft PEPs by February 1 to know who's all-in (8 weeks away), all details worked out in final PEPs and whatever is required to prove to me it will work by the PyCon language summit (4 months

Re: [Python-Dev] Cpython code and ...

2015-01-07 Thread Ethan Furman
On 01/07/2015 11:10 AM, Demian Brecht wrote: On 2015-01-07 11:07 AM, Ethan Furman wrote: I found this: PyObject * PyBytes_FromFormat(const char *format, ...) { Can someone enlighten me on what the '...' means? It denotes a variadic function:

[Python-Dev] Cpython code and ...

2015-01-07 Thread Ethan Furman
I found this: PyObject * PyBytes_FromFormat(const char *format, ...) { Can someone enlighten me on what the '...' means? -- ~Ethan~ signature.asc Description: OpenPGP digital signature ___ Python-Dev mailing list Python-Dev@python.org

Re: [Python-Dev] Cpython code and ...

2015-01-07 Thread Demian Brecht
It denotes a variadic function: http://www.gnu.org/software/libc/manual/html_node/Variadic-Functions.html. On 2015-01-07 11:07 AM, Ethan Furman wrote: I found this: PyObject * PyBytes_FromFormat(const char *format, ...) { Can someone enlighten me on what the '...' means? --