- Feb 20, 2015
-
-
Yang Gao authored
-
Jan Tattermusch authored
Make GRPC C core compile & run on 32 bit Ubuntu systems
-
Nathaniel Manista authored
Clean up Python C API use in src/python/src/grpc/_adapter/*.c.
-
Thomas Wouters authored
- Use METH_O and METH_NOARGS where appropriate, modifying the C functions appropriately. METH_O is for functions that take a single PyObject, and it's passed directly instead of 'args'. METH_NOARGS is for functions that take no arguments, and they get called with just one argument ('self'.) - In PyArg_ParseTuple*() calls, specify the callable's name for more descriptive exception messages. - For tp_init functions (which always take keyword arguments) introduce keyword argument parsing (using the C local variables as keywords, although I don't know if they're the best names to use.) This is mostly as a way to show how keyword arguments are done in C. An alternative method is to use _PyArg_NoKeywords(kwds) (see https://hg.python.org/cpython/file/70a55b2dee71/Python/getargs.c#l1820, but unfortunately it's not part of the official API,) or check manually that the dict is empty. - Check the return value of Python API functions that can return an error indicator (NULL or -1.) PyFloat_AsDouble is also one of these, but we don't check the return type (we would have to compare the result to 1.0 with ==, which is not a thing you should do) so just call PyErr_Occurred unconditionally. - Change Py_BuildValue() calls with just "O" formats into PyTuple_Pack calls. It requires less runtime checking. - Replace Py_BuildValue()/PyObject_CallObject pairs with PyObject_CallFunctionObjArgs (since all of them have just PyObject* arguments.) If the Py_BuildValue formats had included other types, PyObject_CallFunction() would have been easier, but no need in these cases. - Replace Py_BuildValue("f", ...) with PyFloat_FromDouble(...). Less runtime checking and parsing necessary, and more obvious in what it does. - In the PyType structs, replace "PyObject_HEAD_INIT(NULL) 0" with "PyVarObject_HEAD_INIT(NULL, 0)". Anything with an ob_size struct member is a PyVarObject, although the distinction isn't all that import; it's just a more convenient macro. - Assign tp_new in the PyType structs directly, like all other struct members, rather than right before the PyType_Ready() call. - Remove PyErr_SetString() calls in places that already have a (meaningful) exception set. - Add a PyErr_Format() for an error return that wasn't setting an exception (PyObject_TypeCheck() doesn't set an exception.) - Remove NULL assignments to struct members in the error paths of the tp_init functions. PyObject structs are always zeroed after allocation, guaranteed. (If there's a way for them to already contain an object you'd use Py_CLEAR() to clear them, but that can't happen in these cases.) - Remove a few unnecessary parentheses.
-
Nicolas Noble authored
Revert "Adding a constant for a well known place where the SSL roots are...
-
Nicolas Noble authored
-
Nicolas Noble authored
Adding a constant for a well known place where the SSL roots are installed.
-
Craig Tiller authored
Some 32 bits platforms don't like buildint asm for openssl.
-
Nicolas "Pixel" Noble authored
-
Julien Boeuf authored
-
Craig Tiller authored
-
Craig Tiller authored
EXPECT_EQ sign issue...
-
Craig Tiller authored
Making the usage of gflags uniform across distributions.
-
Nicolas "Pixel" Noble authored
-
Eric Anderson authored
Fixing gflags' include path.
-
Nicolas "Pixel" Noble authored
-
Nathaniel Manista authored
-
Masood Malekghassemi authored
-
donnadionne authored
Explicitly use nodejs to run tests
-
vjpai authored
-
murgatroid99 authored
-
Jan Tattermusch authored
Running ldconfig shouldn't fail; so we can run fakeroot make install properly.
-
Tim Emiola authored
Added protoc plugin for Python GRPC.
-
donnadionne authored
Removed reference to non-existent header
-
murgatroid99 authored
-
Nicolas "Pixel" Noble authored
-
Masood Malekghassemi authored
-
Tim Emiola authored
Fix internal include path
-
Jorge Canizales authored
-
- Feb 19, 2015
-
-
Tim Emiola authored
Added lint to Node tests
-
murgatroid99 authored
-
Nicolas Noble authored
add missing header
-
murgatroid99 authored
-
Tim Emiola authored
Added files to the node package
-
David Klempner authored
Remove cpu.h which is no longer a thing
-
murgatroid99 authored
-
Yang Gao authored
-
Yang Gao authored
-
Mugur Marculescu authored
Jayantkolhe patch 2 - Many documentation updates.
-
Mugur Marculescu authored
-